/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nuxeo - initial API and implementation * * $Id: JOOoConvertPluginImpl.java 18651 2007-05-13 20:28:53Z sfermigier $ */ package org.eclipse.ecr.core.api; import java.util.ArrayList; import junit.framework.TestCase; import org.eclipse.ecr.core.api.impl.UserPrincipal; public class TestNuxeoPrincipal extends TestCase { public void test() { NuxeoPrincipal principal = new UserPrincipal("john", new ArrayList<String>(), false, false); assertEquals("john", principal.getName()); principal.setFirstName("john"); assertEquals("john", principal.getFirstName()); principal.setLastName("paul"); assertEquals("paul", principal.getLastName()); principal.setCompany("nuxeo"); assertEquals("nuxeo", principal.getCompany()); } public void testEquals() { NuxeoPrincipal john1 = new UserPrincipal("john", new ArrayList<String>(), false, false); NuxeoPrincipal john2 = new UserPrincipal("john", new ArrayList<String>(), false, false); NuxeoPrincipal jim = new UserPrincipal("jim", new ArrayList<String>(), false, false); assertEquals(john1, john2); assertEquals(john1.hashCode(), john2.hashCode()); assertFalse(john1.equals(jim)); assertFalse(jim.equals(john1)); jim.setName("john"); assertEquals(john1, jim); } }