blob: b819f6cbff07074687d42b5a57c28fddb71a3bb4 [file] [log] [blame]
/*
* Copyright (c) 2012, Paul Merlin. 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.apache.zest.library.shiro;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.authc.credential.PasswordService;
import org.apache.shiro.subject.Subject;
import org.junit.Before;
import org.junit.Test;
import org.apache.zest.api.common.Visibility;
import org.apache.zest.api.entity.EntityBuilder;
import org.apache.zest.api.injection.scope.Service;
import org.apache.zest.api.injection.scope.Structure;
import org.apache.zest.api.mixin.Mixins;
import org.apache.zest.api.structure.Module;
import org.apache.zest.api.unitofwork.UnitOfWork;
import org.apache.zest.api.unitofwork.UnitOfWorkCompletionException;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.apache.zest.index.rdf.assembly.RdfMemoryStoreAssembler;
import org.apache.zest.library.shiro.assembly.PasswordDomainAssembler;
import org.apache.zest.library.shiro.assembly.PermissionsDomainAssembler;
import org.apache.zest.library.shiro.assembly.StandaloneShiroAssembler;
import org.apache.zest.library.shiro.domain.passwords.PasswordSecurable;
import org.apache.zest.library.shiro.domain.permissions.Role;
import org.apache.zest.library.shiro.domain.permissions.RoleAssignee;
import org.apache.zest.library.shiro.domain.permissions.RoleFactory;
import org.apache.zest.library.shiro.ini.ShiroIniConfiguration;
import org.apache.zest.test.AbstractQi4jTest;
import org.apache.zest.test.EntityTestAssembler;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.fail;
public class PermissionsDomainTest
extends AbstractQi4jTest
{
// START SNIPPET: domain
public interface User
extends PasswordSecurable, RoleAssignee
{
}
// END SNIPPET: domain
@Mixins( UserFactoryMixin.class )
public interface UserFactory
{
User createNewUser( String username, String password );
}
public static class UserFactoryMixin
implements UserFactory
{
@Structure
private Module module;
@Service
private PasswordService passwordService;
@Override
public User createNewUser( String username, String password )
{
EntityBuilder<User> userBuilder = module.currentUnitOfWork().newEntityBuilder( User.class );
User user = userBuilder.instance();
user.subjectIdentifier().set( username );
user.password().set( passwordService.encryptPassword( password ) );
return userBuilder.newInstance();
}
}
@Override
public void assemble( ModuleAssembly module )
throws AssemblyException
{
new EntityTestAssembler().assemble( module );
new RdfMemoryStoreAssembler().assemble( module );
ModuleAssembly configModule = module;
// START SNIPPET: assembly
new StandaloneShiroAssembler().
withConfig( configModule, Visibility.layer ).
assemble( module );
new PasswordDomainAssembler().
withConfig( configModule, Visibility.layer ).
assemble( module );
new PermissionsDomainAssembler().
assemble( module );
module.entities( User.class );
module.services( UserFactory.class );
// END SNIPPET: assembly
configModule.forMixin( ShiroIniConfiguration.class ).
declareDefaults().
iniResourcePath().set( "classpath:standalone-shiro.ini" );
}
private UserFactory userFactory;
private RoleFactory roleFactory;
@Before
public void before_PermissionsDomainTest()
{
userFactory = module.findService( UserFactory.class ).get();
roleFactory = module.findService( RoleFactory.class ).get();
}
@Test
public void test()
throws UnitOfWorkCompletionException
{
// START SNIPPET: usage
UnitOfWork uow = module.newUnitOfWork();
User user = userFactory.createNewUser( "foo", "bar" );
Role role = roleFactory.create( "role-one", "permission-one", "permission-two" );
role.assignTo( user );
uow.complete();
// END SNIPPET: usage
// START SNIPPET: usage
uow = module.newUnitOfWork();
Subject currentUser = SecurityUtils.getSubject();
currentUser.login( new UsernamePasswordToken( "foo", "bar" ) );
if ( !currentUser.hasRole( "role-one" ) ) {
fail( "User 'foo' must have 'role-one' role." );
}
if ( !currentUser.isPermitted( "permission-one" ) ) {
fail( "User 'foo' must have 'permission-one' permission." );
}
// END SNIPPET: usage
assertThat( currentUser.hasRole( "role-one" ), is( true ) );
assertThat( currentUser.hasRole( "role-two" ), is( false ) );
assertThat( currentUser.isPermitted( "permission-one" ), is( true ) );
assertThat( currentUser.isPermitted( "permission-two" ), is( true ) );
assertThat( currentUser.isPermitted( "permission-three" ), is( false ) );
// START SNIPPET: usage
uow.discard();
// END SNIPPET: usage
}
}