blob: 0e9b3e604ee8c41b5957bd07d6ca275b4c436455 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Edgar Mueller - initial API and implementation
******************************************************************************/
package org.eclipse.emf.emfstore.server.accesscontrol.test;
import static org.junit.Assert.assertNotNull;
import org.eclipse.emf.emfstore.client.test.common.util.ServerUtil;
import org.eclipse.emf.emfstore.internal.server.exceptions.AccessControlException;
import org.eclipse.emf.emfstore.internal.server.exceptions.InvalidInputException;
import org.eclipse.emf.emfstore.internal.server.model.accesscontrol.ACOrgUnitId;
import org.eclipse.emf.emfstore.server.auth.ESProjectAdminPrivileges;
import org.eclipse.emf.emfstore.server.exceptions.ESException;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* Test the {@link ESProjectAdminPrivileges#CreateUser} privilege of a
* {@link org.eclipse.emf.emfstore.internal.server.model.accesscontrol.roles.ProjectAdminRole ProjectAdminRole}.
*
* @author emueller
*
*/
public class CreateUserTests extends ProjectAdminTest {
@BeforeClass
public static void beforeClass() {
startEMFStoreWithPAProperties(ESProjectAdminPrivileges.CreateUser);
}
public static void afterClass() {
stopEMFStore();
}
@Override
@After
public void after() {
super.after();
}
@Override
@Before
public void before() {
super.before();
}
@Test
public void createUser() throws ESException {
makeUserPA();
final ACOrgUnitId newUser = ServerUtil.createUser(getUsersession(), getNewUsername());
assertNotNull(getAdminBroker().getOrgUnit(newUser));
}
@Test(expected = InvalidInputException.class)
public void createUserTwice() throws ESException {
makeUserPA();
ServerUtil.createUser(getUsersession(), getNewUsername());
ServerUtil.createUser(getUsersession(), getNewUsername());
}
@Test(expected = AccessControlException.class)
public void createUserNotPA() throws ESException {
ServerUtil.createUser(getUsersession(), getNewUsername());
}
}