blob: 30685c96313c9fa80c7c5b129029ef53bf5e5086 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.transparentindirection;
import java.util.*;
import org.eclipse.persistence.indirection.*;
import org.eclipse.persistence.sessions.*;
import org.eclipse.persistence.queries.*;
/**
* Test a simple IndirectList.
* @author: Big Country
*/
public class IndirectListTestAPI extends ZTestCase {
Vector list;
IndirectList testList;
/**
* Constructor
* @param name java.lang.String
*/
public IndirectListTestAPI(String name) {
super(name);
}
/**
* set up the test fixture:
* 1. an IndirectList based on a Vector
*/
protected void setUp() {
super.setUp();
list = this.setUpList();
Object temp = new Vector(list);
org.eclipse.persistence.indirection.ValueHolderInterface vh = new org.eclipse.persistence.internal.indirection.QueryBasedValueHolder(new ReadAllQuery(), new DatabaseRecord(), new TestSession(temp));
testList = new IndirectList();
testList.setValueHolder(vh);
}
protected Vector setUpList() {
Vector result = new Vector();
result.addElement("zero");
result.addElement("one");
result.addElement("two");
result.addElement("three");
result.addElement("four");
result.addElement("five");
result.addElement("six");
result.addElement("seven");
result.addElement("eight");
result.addElement("nine");
return result;
}
/**
* nothing for now...
*/
protected void tearDown() {
super.tearDown();
}
public void testAdd1() {
Object temp = "foo";
list.add(3, temp);
testList.add(3, temp);
this.assertEquals(list, testList);
this.assertTrue(testList.contains(temp));
}
public void testAdd2() {
Object temp = "foo";
list.add(temp);
testList.add(temp);
this.assertEquals(list, testList);
this.assertTrue(testList.contains(temp));
}
public void testAddAll1() {
Vector temp = new Vector();
temp.addElement("foo");
temp.addElement("bar");
list.addAll(temp);
testList.addAll(temp);
this.assertEquals(list, testList);
this.assertTrue(testList.containsAll(temp));
}
public void testAddAll2() {
Vector temp = new Vector();
temp.addElement("foo");
temp.addElement("bar");
list.addAll(3, temp);
testList.addAll(3, temp);
this.assertEquals(list, testList);
this.assertTrue(testList.containsAll(temp));
}
public void testAddElement() {
Object temp = "foo";
list.addElement(temp);
testList.addElement(temp);
this.assertEquals(list, testList);
this.assertTrue(testList.contains(temp));
}
public void testClear() {
list.clear();
testList.clear();
this.assertEquals(list, testList);
this.assertTrue(testList.size() == 0);
}
public void testContains() {
this.assertTrue(testList.contains(list.elementAt(1)));
}
public void testContainsAll() {
this.assertTrue(testList.containsAll(list.subList(1, 5)));
}
public void testElementAt() {
this.assertEquals(list.elementAt(1), testList.elementAt(1));
}
public void testElements() {
this.assertEquals(list.elements().nextElement(), testList.elements().nextElement());
}
public void testEquals() {
this.assertTrue(testList.equals(list));
}
public void testFirstElement() {
this.assertEquals(list.firstElement(), testList.firstElement());
}
public void testGet() {
this.assertEquals(list.get(1), testList.get(1));
}
public void testHashCode() {
this.assertEquals(list.hashCode(), testList.hashCode());
}
public void testIndexOf1() {
String temp = "one";
this.assertEquals(list.indexOf(temp), testList.indexOf(temp));
}
public void testIndexOf2() {
String temp = "seven";
this.assertEquals(list.indexOf(temp, 3), testList.indexOf(temp, 3));
}
public void testInsertElementAt() {
Object temp = "foo";
list.insertElementAt(temp, 3);
testList.insertElementAt(temp, 3);
this.assertEquals(list, testList);
this.assertTrue(testList.contains(temp));
}
public void testIsEmpty() {
this.assertTrue(!testList.isEmpty());
}
public void testIterator() {
int i = 0;
for (Iterator stream = testList.iterator(); stream.hasNext(); i++) {
stream.next();
}
this.assertEquals(list.size(), i);
}
public void testLastElement() {
this.assertEquals(list.lastElement(), testList.lastElement());
}
public void testLastIndexOf1() {
String temp = "one";
this.assertEquals(list.lastIndexOf(temp), testList.lastIndexOf(temp));
}
public void testLastIndexOf2() {
String temp = "one";
this.assertEquals(list.lastIndexOf(temp, 7), testList.lastIndexOf(temp, 7));
}
public void testListIterator1() {
int i = 0;
for (ListIterator stream = testList.listIterator(); stream.hasNext(); i++) {
stream.next();
}
this.assertEquals(list.size(), i);
}
public void testListIterator2() {
int i = 0;
for (ListIterator stream = testList.listIterator(2); stream.hasNext(); i++) {
stream.next();
}
this.assertEquals(list.size(), i + 2);
}
public void testRemove1() {
Object temp = list.remove(1);
this.assertEquals(temp, testList.remove(1));
this.assertEquals(list, testList);
this.assertTrue(!testList.contains(temp));
}
public void testRemove2() {
Object temp = "one";
this.assertTrue(list.remove(temp));
this.assertTrue(testList.remove(temp));
this.assertEquals(list, testList);
this.assertTrue(!testList.contains(temp));
}
public void testRemoveAll() {
Vector temp = new Vector();
temp.addElement("one");
temp.addElement("two");
this.assertTrue(list.removeAll(temp));
this.assertTrue(testList.removeAll(temp));
this.assertEquals(list, testList);
this.assertTrue(!testList.containsAll(temp));
}
public void testRemoveAllElements() {
list.removeAllElements();
testList.removeAllElements();
this.assertEquals(list, testList);
this.assertTrue(testList.size() == 0);
}
public void testRemoveElement() {
Object temp = "one";
this.assertTrue(list.removeElement(temp));
this.assertTrue(testList.removeElement(temp));
this.assertEquals(list, testList);
this.assertTrue(!testList.contains(temp));
}
public void testRemoveElementAt() {
Object temp = testList.elementAt(1);
list.removeElementAt(1);
testList.removeElementAt(1);
this.assertEquals(list, testList);
this.assertTrue(!testList.contains(temp));
}
public void testRetainAll() {
Vector temp = new Vector();
temp.addElement("one");
temp.addElement("two");
this.assertTrue(list.retainAll(temp));
this.assertTrue(testList.retainAll(temp));
this.assertEquals(list, testList);
this.assertTrue(testList.containsAll(temp));
this.assertEquals(temp.size(), testList.size());
}
public void testSet() {
Object temp = "foo";
list.set(3, temp);
testList.set(3, temp);
this.assertEquals(list, testList);
this.assertTrue(testList.contains(temp));
}
public void testSetElementAt() {
Object temp = "foo";
list.setElementAt(temp, 3);
testList.setElementAt(temp, 3);
this.assertEquals(list, testList);
this.assertTrue(testList.contains(temp));
}
public void testSize() {
this.assertEquals(list.size(), testList.size());
}
public void testSubList() {
this.assertEquals(list.subList(2, 5), testList.subList(2, 5));
}
public void testToArray1() {
Object[] temp = list.toArray();
Vector v1 = new Vector(temp.length);
for (int i = 0; i < temp.length; i++) {
v1.addElement(temp[i]);
}
temp = testList.toArray();
Vector v2 = new Vector(temp.length);
for (int i = 0; i < temp.length; i++) {
v2.addElement(temp[i]);
}
this.assertEquals(v1, v2);
}
public void testToArray2() {
String[] temp = (String[])list.toArray(new String[0]);
Vector v1 = new Vector(temp.length);
for (int i = 0; i < temp.length; i++) {
v1.addElement(temp[i]);
}
temp = (String[])testList.toArray(new String[0]);
Vector v2 = new Vector(temp.length);
for (int i = 0; i < temp.length; i++) {
v2.addElement(temp[i]);
}
this.assertEquals(v1, v2);
}
}