📄 registeredservicevalidatortests.java
字号:
/* * Copyright 2007 The JA-SIG Collaborative. All rights reserved. See license * distributed with this file and available online at * http://www.uportal.org/license.html */package org.jasig.cas.services.web.support;import java.util.ArrayList;import java.util.Collection;import org.jasig.cas.authentication.principal.Service;import org.jasig.cas.services.RegisteredService;import org.jasig.cas.services.RegisteredServiceImpl;import org.jasig.cas.services.ServicesManager;import org.springframework.validation.BindException;import junit.framework.TestCase;/** * * @author Scott Battaglia * @version $Revision: 1.1 $ $Date: 2005/08/19 18:27:17 $ * @since 3.1 * */public class RegisteredServiceValidatorTests extends TestCase { private RegisteredServiceValidator validator; protected void setUp() throws Exception { this.validator = new RegisteredServiceValidator(); this.validator.setMaxDescriptionLength(1); } public void testIdExists() { checkId(true, 1, "test"); } public void testIdDoesNotExist() { checkId(false, 0, "test"); } public void testIdDoesNotExist2() { checkId(true, 0, "test2"); } public void testIdDoesNotExist3() { checkId(true, 0, null); } public void testSupports() { assertTrue(this.validator.supports(RegisteredServiceImpl.class)); assertFalse(this.validator.supports(Object.class)); } public void testMaxLength() { this.validator.setServicesManager(new TestServicesManager(false)); final RegisteredServiceImpl impl = new RegisteredServiceImpl(); impl.setServiceId("test"); impl.setDescription("fasdfdsafsafsafdsa"); final BindException exception = new BindException(impl, "registeredService"); this.validator.validate(impl, exception); assertEquals(1, exception.getErrorCount()); } protected void checkId(final boolean exists, final int expectedErrors, final String name) { this.validator.setServicesManager(new TestServicesManager(exists)); final RegisteredServiceImpl impl = new RegisteredServiceImpl(); impl.setServiceId(name); final BindException exception = new BindException(impl, "registeredService"); this.validator.validate(impl, exception); assertEquals(expectedErrors, exception.getErrorCount()); } protected class TestServicesManager implements ServicesManager { private final boolean returnValue; protected TestServicesManager(final boolean returnValue) { this.returnValue = returnValue; } public RegisteredService delete(long id) { return null; } public RegisteredService findServiceBy(long id) { return null; } public RegisteredService findServiceBy(Service service) { return null; } public Collection<RegisteredService> getAllServices() { if (!this.returnValue) { return new ArrayList<RegisteredService>(); } final RegisteredServiceImpl r = new RegisteredServiceImpl(); r.setServiceId("test"); r.setId(1000); final ArrayList<RegisteredService> list = new ArrayList<RegisteredService>(); list.add(r); return list; } public boolean matchesExistingService(final Service service) { return this.returnValue; } public void save(final RegisteredService registeredService) { // nothing to do } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -