mirror of https://github.com/apache/archiva.git
add unit test
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1447168 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28acc7ec3a
commit
e807e6d869
|
@ -400,4 +400,9 @@ public class TestRBACManager implements RBACManager
|
|||
{
|
||||
//To change body of implemented methods use File | Settings | File Templates.
|
||||
}
|
||||
|
||||
public boolean isReadOnly()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ public class AbstractImplementationInformation
|
|||
{
|
||||
return true;
|
||||
}
|
||||
if ( !( o instanceof UserManagerImplementationInformation ) )
|
||||
if ( !( o instanceof AbstractImplementationInformation ) )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -216,13 +216,13 @@ public class DefaultRedbackRuntimeConfigurationService
|
|||
|
||||
for ( Map.Entry<String, RBACManager> entry : beans.entrySet() )
|
||||
{
|
||||
UserManager userManager = applicationContext.getBean( entry.getKey(), UserManager.class );
|
||||
if ( userManager.isFinalImplementation() )
|
||||
RBACManager rbacManager = applicationContext.getBean( entry.getKey(), RBACManager.class );
|
||||
if ( rbacManager.isFinalImplementation() )
|
||||
{
|
||||
RBACManagerImplementationInformation information = new RBACManagerImplementationInformation();
|
||||
information.setBeanId( StringUtils.substringAfter( entry.getKey(), "#" ) );
|
||||
information.setDescriptionKey( userManager.getDescriptionKey() );
|
||||
information.setReadOnly( userManager.isReadOnly() );
|
||||
information.setDescriptionKey( rbacManager.getDescriptionKey() );
|
||||
information.setReadOnly( rbacManager.isReadOnly() );
|
||||
informations.add( information );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@ package org.apache.archiva.rest.services;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.admin.model.beans.RedbackRuntimeConfiguration;
|
||||
import org.apache.archiva.rest.api.model.RBACManagerImplementationInformation;
|
||||
import org.apache.archiva.rest.api.model.UserManagerImplementationInformation;
|
||||
import org.apache.archiva.rest.api.services.RedbackRuntimeConfigurationService;
|
||||
import org.fest.assertions.api.Assertions;
|
||||
|
@ -71,4 +72,15 @@ public class ArchivaRuntimeConfigurationServiceTest
|
|||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void rbacmanagersinformations()
|
||||
throws Exception
|
||||
{
|
||||
RedbackRuntimeConfigurationService service = getArchivaRuntimeConfigurationService();
|
||||
List<RBACManagerImplementationInformation> infos = service.getRbacManagerImplementationInformations();
|
||||
Assertions.assertThat( infos ).isNotNull().isNotEmpty().contains(
|
||||
new RBACManagerImplementationInformation( "jdo", null, false ) );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue