/*! * Copyright 2010 - 2015 Pentaho Corporation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package org.pentaho.di.repository.pur; import org.junit.Before; import org.junit.Test; import org.mockito.ArgumentCaptor; import org.pentaho.di.core.exception.KettleException; import org.pentaho.di.repository.IUser; import org.pentaho.di.repository.UserInfo; import org.pentaho.di.repository.pur.model.EERoleInfo; import org.pentaho.di.repository.pur.model.IRole; import static org.junit.Assert.*; import static org.mockito.Matchers.any; import static org.mockito.Mockito.doCallRealMethod; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; /** * @author Andrey Khayrutdinov */ public class PurRepositorySecurityManagerTest { private PurRepositorySecurityManager manager; private UserRoleDelegate roleDelegate; @Before public void setUp() throws Exception { manager = mock( PurRepositorySecurityManager.class ); doCallRealMethod().when( manager ).saveUserInfo( any( IUser.class ) ); doCallRealMethod().when( manager ).validateUserInfo( any( IUser.class ) ); doCallRealMethod().when( manager ).normalizeUserInfo( any( IUser.class ) ); doCallRealMethod().when( manager ).createRole( any( IRole.class ) ); doCallRealMethod().when( manager ).validateRoleInfo( any( IRole.class ) ); doCallRealMethod().when( manager ).normalizeRoleInfo( any( IRole.class ) ); roleDelegate = mock( UserRoleDelegate.class ); doCallRealMethod().when( manager ).setUserRoleDelegate( any( UserRoleDelegate.class ) ); manager.setUserRoleDelegate( roleDelegate ); } @Test public void createRole_NormalizesInfo_PassesIfNoViolations() throws Exception { IRole info = new EERoleInfo( "role ", "" ); ArgumentCaptor<IRole> captor = ArgumentCaptor.forClass( IRole.class ); manager.createRole( info ); verify( roleDelegate ).createRole( captor.capture() ); info = captor.getValue(); assertEquals( "Spaces should be trimmed", "role", info.getName() ); } @Test( expected = KettleException.class ) public void createRole_NormalizesInfo_FailsIfStillBreaches() throws Exception { IRole info = new EERoleInfo( " ", "" ); manager.createRole( info ); } @Test public void saveUserInfo_NormalizesInfo_PassesIfNoViolations() throws Exception { IUser info = new UserInfo( "login " ); ArgumentCaptor<IUser> captor = ArgumentCaptor.forClass( IUser.class ); manager.saveUserInfo( info ); verify( roleDelegate ).createUser( captor.capture() ); info = captor.getValue(); assertEquals( "Spaces should be trimmed", "login", info.getLogin() ); } @Test( expected = KettleException.class ) public void saveUserInfo_NormalizesInfo_FailsIfStillBreaches() throws Exception { UserInfo info = new UserInfo( " " ); manager.saveUserInfo( info ); } }