mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5081 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
109 lines
4.9 KiB
Java
109 lines
4.9 KiB
Java
/*
|
|
* Copyright (C) 2007 Alfresco, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
package org.alfresco.repo.admin.registry;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
import org.alfresco.repo.security.authentication.AuthenticationComponent;
|
|
import org.alfresco.util.ApplicationContextHelper;
|
|
import org.springframework.context.ApplicationContext;
|
|
|
|
/**
|
|
* @see org.alfresco.repo.admin.registry.RegistryService
|
|
*
|
|
* @author Derek Hulley
|
|
*/
|
|
public class RegistryServiceImplTest extends TestCase
|
|
{
|
|
private static ApplicationContext ctx = ApplicationContextHelper.getApplicationContext();
|
|
|
|
private AuthenticationComponent authenticationComponent;
|
|
private RegistryService registryService;
|
|
|
|
@Override
|
|
protected void setUp() throws Exception
|
|
{
|
|
authenticationComponent = (AuthenticationComponent) ctx.getBean("AuthenticationComponent");
|
|
registryService = (RegistryService) ctx.getBean("RegistryService");
|
|
|
|
// Run as system user
|
|
authenticationComponent.setSystemUserAsCurrentUser();
|
|
}
|
|
|
|
@Override
|
|
protected void tearDown() throws Exception
|
|
{
|
|
// Clear authentication
|
|
try
|
|
{
|
|
authenticationComponent.clearCurrentSecurityContext();
|
|
}
|
|
catch (Throwable e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void testSetup() throws Exception
|
|
{
|
|
}
|
|
|
|
private static final Long VALUE_ONE = 1L;
|
|
private static final Long VALUE_TWO = 2L;
|
|
private static final Long VALUE_THREE = 3L;
|
|
private static final RegistryKey KEY_A_B_C_0 = new RegistryKey(null, "a", "b", "c", "0");
|
|
private static final RegistryKey KEY_A_B_C_1 = new RegistryKey(null, "a", "b", "c", "1");
|
|
private static final RegistryKey KEY_A_B_C_2 = new RegistryKey(null, "a", "b", "c", "2");
|
|
private static final RegistryKey KEY_A_B_C_3 = new RegistryKey(null, "a", "b", "c", "3");
|
|
private static final RegistryKey KEY_A_B_C_D_0 = new RegistryKey(null, "a", "b", "c", "d", "0");
|
|
private static final RegistryKey KEY_A_B_C_D_1 = new RegistryKey(null, "a", "b", "c", "d", "1");
|
|
private static final RegistryKey KEY_A_B_C_D_2 = new RegistryKey(null, "a", "b", "c", "d", "2");
|
|
private static final RegistryKey KEY_A_B_C_D_3 = new RegistryKey(null, "a", "b", "c", "d", "3");
|
|
private static final RegistryKey KEY_X_Y_Z_0 = new RegistryKey(null, "x", "y", "z", "0");
|
|
private static final RegistryKey KEY_SPECIAL = new RegistryKey(null, "me & you", "whatever");
|
|
/**
|
|
* General writing and reading back.
|
|
*/
|
|
public void testProperUsage() throws Exception
|
|
{
|
|
registryService.addValue(KEY_A_B_C_1, VALUE_ONE);
|
|
registryService.addValue(KEY_A_B_C_2, VALUE_TWO);
|
|
registryService.addValue(KEY_A_B_C_3, VALUE_THREE);
|
|
registryService.addValue(KEY_A_B_C_D_1, VALUE_ONE);
|
|
registryService.addValue(KEY_A_B_C_D_2, VALUE_TWO);
|
|
registryService.addValue(KEY_A_B_C_D_3, VALUE_THREE);
|
|
|
|
assertEquals("Incorrect value from service registry", VALUE_ONE, registryService.getValue(KEY_A_B_C_1));
|
|
assertEquals("Incorrect value from service registry", VALUE_TWO, registryService.getValue(KEY_A_B_C_2));
|
|
assertEquals("Incorrect value from service registry", VALUE_THREE, registryService.getValue(KEY_A_B_C_3));
|
|
assertEquals("Incorrect value from service registry", VALUE_ONE, registryService.getValue(KEY_A_B_C_D_1));
|
|
assertEquals("Incorrect value from service registry", VALUE_TWO, registryService.getValue(KEY_A_B_C_D_2));
|
|
assertEquals("Incorrect value from service registry", VALUE_THREE, registryService.getValue(KEY_A_B_C_D_3));
|
|
|
|
assertNull("Missing key should return null value", registryService.getValue(KEY_A_B_C_0));
|
|
assertNull("Missing key should return null value", registryService.getValue(KEY_A_B_C_D_0));
|
|
assertNull("Missing key should return null value", registryService.getValue(KEY_X_Y_Z_0));
|
|
}
|
|
|
|
public void testSpecialCharacters()
|
|
{
|
|
registryService.addValue(KEY_SPECIAL, VALUE_THREE);
|
|
assertEquals("Incorrect value for special key", VALUE_THREE, registryService.getValue(KEY_SPECIAL));
|
|
}
|
|
}
|