blob: 060018bcde2f5bf3d8a6025bccced46af077455c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.tests.internal.model.value;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Comparator;
import java.util.List;
import java.util.TreeSet;
import junit.framework.TestCase;
import org.eclipse.jpt.common.utility.collection.Bag;
import org.eclipse.jpt.common.utility.internal.collection.CollectionTools;
import org.eclipse.jpt.common.utility.internal.collection.HashBag;
import org.eclipse.jpt.common.utility.internal.collection.ListTools;
import org.eclipse.jpt.common.utility.internal.comparator.ComparatorTools;
import org.eclipse.jpt.common.utility.internal.model.AbstractModel;
import org.eclipse.jpt.common.utility.internal.model.value.SimpleCollectionValueModel;
import org.eclipse.jpt.common.utility.internal.model.value.SortedListValueModelAdapter;
import org.eclipse.jpt.common.utility.model.event.ListAddEvent;
import org.eclipse.jpt.common.utility.model.event.ListChangeEvent;
import org.eclipse.jpt.common.utility.model.event.ListClearEvent;
import org.eclipse.jpt.common.utility.model.event.ListMoveEvent;
import org.eclipse.jpt.common.utility.model.event.ListRemoveEvent;
import org.eclipse.jpt.common.utility.model.event.ListReplaceEvent;
import org.eclipse.jpt.common.utility.model.listener.ChangeAdapter;
import org.eclipse.jpt.common.utility.model.listener.ChangeListener;
import org.eclipse.jpt.common.utility.model.listener.ListChangeListener;
import org.eclipse.jpt.common.utility.model.value.ListValueModel;
import org.eclipse.jpt.common.utility.tests.internal.TestTools;
@SuppressWarnings("nls")
public class SortedListValueModelAdapterTests extends TestCase {
private SortedListValueModelAdapter<String> adapter;
private SimpleCollectionValueModel<String> wrappedCollectionHolder;
private Collection<String> wrappedCollection;
public SortedListValueModelAdapterTests(String name) {
super(name);
}
@Override
protected void setUp() throws Exception {
super.setUp();
this.wrappedCollection = new HashBag<String>();
this.wrappedCollectionHolder = new SimpleCollectionValueModel<String>(this.wrappedCollection);
this.adapter = new SortedListValueModelAdapter<String>(this.wrappedCollectionHolder);
}
@Override
protected void tearDown() throws Exception {
TestTools.clear(this);
super.tearDown();
}
private void verifyList(Collection<String> expected, ListValueModel<String> actual) {
this.verifyList(expected, actual, null);
}
private void verifyList(Collection<String> expected, ListValueModel<String> actual, Comparator<String> comparator) {
Collection<String> sortedSet = new TreeSet<String>(comparator);
sortedSet.addAll(expected);
List<String> expectedList = new ArrayList<String>(sortedSet);
List<String> actualList = ListTools.arrayList(actual.iterator());
assertEquals(expectedList, actualList);
}
public void testAdd() {
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
@Override
public void itemsAdded(ListAddEvent e) {/* OK */}
@Override
public void itemsReplaced(ListReplaceEvent e) {/* OK */}
});
this.wrappedCollectionHolder.add("foo");
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
assertEquals(3, this.adapter.size());
this.verifyList(this.wrappedCollection, this.adapter);
}
public void testAddItem() {
List<String> synchList = new CoordinatedList<String>(this.adapter);
Bag<String> synchCollection = new CoordinatedBag<String>(this.wrappedCollectionHolder);
this.wrappedCollectionHolder.add("foo");
assertTrue(this.wrappedCollection.contains("foo"));
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
this.wrappedCollectionHolder.add("joo");
this.wrappedCollectionHolder.add("jar");
this.wrappedCollectionHolder.add("jaz");
assertEquals(6, this.wrappedCollection.size());
this.verifyList(this.wrappedCollection, this.adapter);
assertEquals(this.wrappedCollection, CollectionTools.hashBag(synchList.iterator()));
assertEquals(this.wrappedCollection, synchCollection);
}
public void testRemoveItem() {
List<String> synchList = new CoordinatedList<String>(this.adapter);
Bag<String> synchCollection = new CoordinatedBag<String>(this.wrappedCollectionHolder);
this.wrappedCollectionHolder.add("foo");
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
this.wrappedCollectionHolder.add("joo");
this.wrappedCollectionHolder.add("jar");
this.wrappedCollectionHolder.add("jaz");
this.wrappedCollectionHolder.remove("jaz");
assertFalse(this.wrappedCollection.contains("jaz"));
this.wrappedCollectionHolder.remove("foo");
assertFalse(this.wrappedCollection.contains("foo"));
assertEquals(4, this.wrappedCollection.size());
this.verifyList(this.wrappedCollection, this.adapter);
assertEquals(this.wrappedCollection, CollectionTools.hashBag(synchList.iterator()));
assertEquals(this.wrappedCollection, synchCollection);
}
public void testListSynch() {
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
@Override
public void itemsAdded(ListAddEvent e) {/* OK */}
@Override
public void itemsRemoved(ListRemoveEvent e) {/* OK */}
@Override
public void itemsReplaced(ListReplaceEvent e) {/* OK */}
});
this.wrappedCollectionHolder.add("foo");
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
this.wrappedCollectionHolder.add("joo");
this.wrappedCollectionHolder.add("jar");
this.wrappedCollectionHolder.add("jaz");
this.wrappedCollectionHolder.remove("jaz");
assertFalse(this.wrappedCollection.contains("jaz"));
this.wrappedCollectionHolder.remove("foo");
assertFalse(this.wrappedCollection.contains("foo"));
assertEquals(4, this.wrappedCollection.size());
this.verifyList(this.wrappedCollection, this.adapter);
}
public void testSetComparator() {
List<String> synchList = new CoordinatedList<String>(this.adapter);
Bag<String> synchCollection = new CoordinatedBag<String>(this.wrappedCollectionHolder);
this.wrappedCollectionHolder.add("foo");
assertTrue(this.wrappedCollection.contains("foo"));
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
this.wrappedCollectionHolder.add("joo");
this.wrappedCollectionHolder.add("jar");
this.wrappedCollectionHolder.add("jaz");
assertEquals(6, this.wrappedCollection.size());
this.verifyList(this.wrappedCollection, this.adapter);
assertEquals(this.wrappedCollection, CollectionTools.hashBag(synchList.iterator()));
assertEquals(this.wrappedCollection, synchCollection);
this.adapter.setComparator(ComparatorTools.<String>reverseComparator());
this.verifyList(this.wrappedCollection, this.adapter, ComparatorTools.<String>reverseComparator());
assertEquals(this.wrappedCollection, CollectionTools.hashBag(synchList.iterator()));
assertEquals(this.wrappedCollection, synchCollection);
}
public void testHasListeners() {
assertFalse(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
CoordinatedList<String> synchList = new CoordinatedList<String>(this.adapter);
assertTrue(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
this.adapter.removeListChangeListener(ListValueModel.LIST_VALUES, synchList);
assertFalse(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
ChangeListener cl = new ChangeAdapter();
this.adapter.addChangeListener(cl);
assertTrue(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
this.adapter.removeChangeListener(cl);
assertFalse(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
}
public void testCollectionChange() {
this.wrappedCollectionHolder.add("fred");
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
@Override
public void itemsAdded(ListAddEvent e) {/* OK */}
@Override
public void itemsReplaced(ListReplaceEvent e) {/* OK */}
});
this.wrappedCollectionHolder.setValues(Arrays.asList(new String[] {"foo", "bar", "baz"}));
assertEquals(3, this.adapter.size());
this.verifyList(this.wrappedCollection, this.adapter);
}
class TestListChangeListener implements ListChangeListener {
public void itemsAdded(ListAddEvent e) {
fail("unexpected event");
}
public void itemsRemoved(ListRemoveEvent e) {
fail("unexpected event");
}
public void itemsReplaced(ListReplaceEvent e) {
fail("unexpected event");
}
public void itemsMoved(ListMoveEvent e) {
fail("unexpected event");
}
public void listCleared(ListClearEvent e) {
fail("unexpected event");
}
public void listChanged(ListChangeEvent e) {
fail("unexpected event");
}
}
}