⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getallcontactstests.java

📁 acegi构造安全的java系统
💻 JAVA
字号:
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited * * 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 sample.contact;import org.acegisecurity.Authentication;import org.acegisecurity.acls.domain.BasePermission;import org.acegisecurity.acls.sid.PrincipalSid;import org.acegisecurity.context.SecurityContextHolder;import org.acegisecurity.providers.UsernamePasswordAuthenticationToken;import org.springframework.beans.factory.config.AutowireCapableBeanFactory;import org.springframework.test.AbstractTransactionalSpringContextTests;import java.util.Iterator;import java.util.List;/** * Tests {@link ContactManager}. * * @author David Leal * @author Ben Alex */public class GetAllContactsTests extends AbstractTransactionalSpringContextTests {    //~ Instance fields ================================================================================================    protected ContactManager contactManager;    //~ Methods ========================================================================================================    protected void assertContainsContact(String id, List contacts) {        Iterator iter = contacts.iterator();        System.out.println(contacts);        while (iter.hasNext()) {            Contact contact = (Contact) iter.next();            if (contact.getId().toString().equals(id)) {                return;            }        }        fail("List of contacts should have contained: " + id);    }    protected void assertNotContainsContact(String id, List contacts) {        Iterator iter = contacts.iterator();        while (iter.hasNext()) {            Contact domain = (Contact) iter.next();            if (domain.getId().toString().equals(id)) {                fail("List of contact should NOT (but did) contain: " + id);            }        }    }    private static void destroySecureContext() {        SecurityContextHolder.clearContext();    }    protected String[] getConfigLocations() {        setAutowireMode(AutowireCapableBeanFactory.AUTOWIRE_BY_NAME);        return new String[] {            "applicationContext-common-authorization.xml", "applicationContext-common-business.xml",            "applicationContext-contacts-test.xml"        };    }    /**     * Locates the first <code>Contact</code> of the exact name specified.<p>Uses the {@link     * ContactManager#getAll()} method.</p>     *     * @param id Identify of the contact to locate (must be an exact match)     *     * @return the domain or <code>null</code> if not found     */    protected Contact getContact(String id) {        List contacts = contactManager.getAll();        Iterator iter = contacts.iterator();        while (iter.hasNext()) {            Contact contact = (Contact) iter.next();            if (contact.getId().equals(id)) {                return contact;            }        }        return null;    }    protected void makeActiveUser(String username) {        String password = "";        if ("marissa".equals(username)) {            password = "koala";        } else if ("dianne".equals(username)) {            password = "emu";        } else if ("scott".equals(username)) {            password = "wombat";        } else if ("peter".equals(username)) {            password = "opal";        }        Authentication authRequest = new UsernamePasswordAuthenticationToken(username, password);        SecurityContextHolder.getContext().setAuthentication(authRequest);    }    protected void onTearDownInTransaction() {        destroySecureContext();    }    public void setContactManager(ContactManager contactManager) {        this.contactManager = contactManager;    }    public void testDianne() {        makeActiveUser("dianne"); // has ROLE_USER        List contacts = contactManager.getAll();        assertEquals(4, contacts.size());        assertContainsContact(Long.toString(4), contacts);        assertContainsContact(Long.toString(5), contacts);        assertContainsContact(Long.toString(6), contacts);        assertContainsContact(Long.toString(8), contacts);        assertNotContainsContact(Long.toString(1), contacts);        assertNotContainsContact(Long.toString(2), contacts);        assertNotContainsContact(Long.toString(3), contacts);    }    public void testMarissa() {        makeActiveUser("marissa"); // has ROLE_SUPERVISOR        List contacts = contactManager.getAll();        assertEquals(4, contacts.size());        assertContainsContact(Long.toString(1), contacts);        assertContainsContact(Long.toString(2), contacts);        assertContainsContact(Long.toString(3), contacts);        assertContainsContact(Long.toString(4), contacts);        assertNotContainsContact(Long.toString(5), contacts);        Contact c1 = contactManager.getById(new Long(4));        contactManager.deletePermission(c1, new PrincipalSid("bob"), BasePermission.ADMINISTRATION);    }    public void testScott() {        makeActiveUser("scott"); // has ROLE_USER        List contacts = contactManager.getAll();        assertEquals(5, contacts.size());        assertContainsContact(Long.toString(4), contacts);        assertContainsContact(Long.toString(6), contacts);        assertContainsContact(Long.toString(7), contacts);        assertContainsContact(Long.toString(8), contacts);        assertContainsContact(Long.toString(9), contacts);        assertNotContainsContact(Long.toString(1), contacts);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -