blob: 8e6e68498859db6fed8da6f684fde8851259d0b2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.utility.tests.internal.model.value;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import javax.swing.JList;
import org.eclipse.jpt.utility.internal.Bag;
import org.eclipse.jpt.utility.internal.CollectionTools;
import org.eclipse.jpt.utility.internal.HashBag;
import org.eclipse.jpt.utility.internal.model.AbstractModel;
import org.eclipse.jpt.utility.internal.model.event.ListChangeEvent;
import org.eclipse.jpt.utility.internal.model.listener.ListChangeListener;
import org.eclipse.jpt.utility.internal.model.value.CollectionListValueModelAdapter;
import org.eclipse.jpt.utility.internal.model.value.CollectionValueModel;
import org.eclipse.jpt.utility.internal.model.value.ListValueModel;
import org.eclipse.jpt.utility.internal.model.value.SimpleCollectionValueModel;
import org.eclipse.jpt.utility.internal.model.value.swing.ListModelAdapter;
import org.eclipse.jpt.utility.tests.internal.TestTools;
import junit.framework.TestCase;
public class CollectionListValueModelAdapterTests extends TestCase {
private ListValueModel adapter;
private SimpleCollectionValueModel wrappedCollectionHolder;
private Collection wrappedCollection;
public CollectionListValueModelAdapterTests(String name) {
super(name);
}
@Override
protected void setUp() throws Exception {
super.setUp();
this.wrappedCollection = new HashBag();
this.wrappedCollectionHolder = new SimpleCollectionValueModel(this.wrappedCollection);
this.adapter = new CollectionListValueModelAdapter(this.wrappedCollectionHolder);
}
@Override
protected void tearDown() throws Exception {
TestTools.clear(this);
super.tearDown();
}
public void testIterator() {
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
public void itemsAdded(ListChangeEvent e) {/* OK */}
});
this.wrappedCollectionHolder.add("foo");
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
Collection adapterCollection = CollectionTools.collection(this.adapter.iterator());
assertEquals(3, adapterCollection.size());
assertEquals(this.wrappedCollection, adapterCollection);
}
public void testStaleValue() {
ListChangeListener listener = new TestListChangeListener() {
public void itemsAdded(ListChangeEvent e) {/* OK */}
};
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, listener);
this.wrappedCollectionHolder.add("foo");
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
Collection adapterCollection = CollectionTools.collection(this.adapter.iterator());
assertEquals(3, adapterCollection.size());
assertEquals(this.wrappedCollection, adapterCollection);
this.adapter.removeListChangeListener(ListValueModel.LIST_VALUES, listener);
adapterCollection = CollectionTools.collection(this.adapter.iterator());
assertEquals(0, adapterCollection.size());
assertEquals(new HashBag(), adapterCollection);
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, listener);
adapterCollection = CollectionTools.collection(this.adapter.iterator());
assertEquals(3, adapterCollection.size());
assertEquals(this.wrappedCollection, adapterCollection);
}
public void testAdd() {
List synchList = new SynchronizedList(this.adapter);
Bag synchCollection = new SynchronizedBag(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());
Collection adapterCollection = CollectionTools.collection(this.adapter.iterator());
assertEquals(this.wrappedCollection, adapterCollection);
assertEquals(this.wrappedCollection, CollectionTools.collection(synchList.iterator()));
assertEquals(this.wrappedCollection, synchCollection);
}
public void testRemove() {
List synchList = new SynchronizedList(this.adapter);
Bag synchCollection = new SynchronizedBag(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");
assertTrue(this.wrappedCollection.contains("jaz"));
this.wrappedCollectionHolder.remove("jaz");
assertFalse(this.wrappedCollection.contains("jaz"));
this.wrappedCollectionHolder.remove("foo");
assertFalse(this.wrappedCollection.contains("foo"));
assertEquals(4, this.wrappedCollection.size());
Collection adapterCollection = CollectionTools.collection(this.adapter.iterator());
assertEquals(this.wrappedCollection, adapterCollection);
assertEquals(this.wrappedCollection, CollectionTools.collection(synchList.iterator()));
assertEquals(this.wrappedCollection, synchCollection);
}
public void testListSynch() {
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
public void itemsAdded(ListChangeEvent e) {/* OK */}
public void itemsRemoved(ListChangeEvent 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());
Collection adapterCollection = CollectionTools.collection(this.adapter.iterator());
assertEquals(this.wrappedCollection, adapterCollection);
}
public void testHasListeners() {
assertFalse(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
SynchronizedList synchList = new SynchronizedList(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));
this.adapter.addListChangeListener(synchList);
assertTrue(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
this.adapter.removeListChangeListener(synchList);
assertFalse(((AbstractModel) this.adapter).hasAnyListChangeListeners(ListValueModel.LIST_VALUES));
}
public void testCollectionChangedToEmpty() {
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
public void itemsAdded(ListChangeEvent e) {/* OK */}
public void itemsRemoved(ListChangeEvent e) {/* OK */}
});
this.wrappedCollectionHolder.add("foo");
this.wrappedCollectionHolder.add("bar");
this.wrappedCollectionHolder.add("baz");
JList jList = new JList(new ListModelAdapter(this.adapter));
((SimpleCollectionValueModel) this.wrappedCollectionHolder).setCollection(new HashBag());
assertEquals(0, jList.getModel().getSize());
}
public void testCollectionChangedFromEmpty() {
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
public void itemsAdded(ListChangeEvent e) {/* OK */}
public void itemsRemoved(ListChangeEvent e) {/* OK */}
});
JList jList = new JList(new ListModelAdapter(this.adapter));
HashBag bag = new HashBag();
bag.add("foo");
bag.add("bar");
((SimpleCollectionValueModel) this.wrappedCollectionHolder).setCollection(bag);
assertEquals(2, jList.getModel().getSize());
}
public void testCollectionChangedFromEmptyToEmpty() {
this.adapter.addListChangeListener(ListValueModel.LIST_VALUES, new TestListChangeListener() {
public void itemsAdded(ListChangeEvent e) {/* OK */}
public void itemsRemoved(ListChangeEvent e) {/* OK */}
});
JList jList = new JList(new ListModelAdapter(this.adapter));
HashBag bag = new HashBag();
((SimpleCollectionValueModel) this.wrappedCollectionHolder).setCollection(bag);
assertEquals(0, jList.getModel().getSize());
}
private class TestListChangeListener implements ListChangeListener {
public void itemsAdded(ListChangeEvent e) {
fail("unexpected event");
}
public void itemsRemoved(ListChangeEvent e) {
fail("unexpected event");
}
public void itemsReplaced(ListChangeEvent e) {
fail("unexpected event");
}
public void itemsMoved(ListChangeEvent e) {
fail("unexpected event");
}
public void listCleared(ListChangeEvent e) {
fail("unexpected event");
}
public void listChanged(ListChangeEvent e) {
fail("unexpected event");
}
}
}