blob: 952dd386b582674969010c795516e9a70cd3e4d0 [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 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.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 missing {@link ESProjectAdminPrivileges#ChangeUserPassword} privilege of a
* {@link org.eclipse.emf.emfstore.internal.server.model.accesscontrol.roles.ProjectAdminRole ProjectAdminRole}.
*
* @author emueller
*
*/
public class CreateUserWithPasswordMissingPrivilegTests 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(expected = AccessControlException.class)
public void createUserWithPassword() throws ESException {
makeUserPA();
final ACOrgUnitId createUser = ServerUtil.createUser(getUsersession(), getNewUsername());
ServerUtil.changePassword(getUsersession(), createUser, getNewUsername(), "foo"); //$NON-NLS-1$
}
}