blob: 23985ac285c9194dd8918ce5dd77571a1d27a7dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
* Matthew Hall - bug 213145
*******************************************************************************/
package org.eclipse.jface.databinding.conformance;
import java.util.Arrays;
import junit.framework.Test;
import org.eclipse.core.databinding.observable.IObservableCollection;
import org.eclipse.jface.databinding.conformance.delegate.IObservableCollectionContractDelegate;
import org.eclipse.jface.databinding.conformance.util.CurrentRealm;
import org.eclipse.jface.databinding.conformance.util.RealmTester;
import org.eclipse.jface.databinding.conformance.util.SuiteBuilder;
/**
* Tests for IObservableCollection that don't mutate the collection.
* <p>
* This class is experimental and can change at any time. It is recommended to
* not subclass or assume the test names will not change. The only API that is
* guaranteed to not change are the constructors. The tests will remain public
* and not final in order to allow for consumers to turn off a test if needed by
* subclassing.
* </p>
*
* @since 3.2
*/
public class ObservableCollectionContractTest extends ObservableContractTest {
private IObservableCollectionContractDelegate delegate;
private IObservableCollection collection;
public ObservableCollectionContractTest(
IObservableCollectionContractDelegate delegate) {
super(delegate);
this.delegate = delegate;
}
public ObservableCollectionContractTest(String testName,
IObservableCollectionContractDelegate delegate) {
super(testName, delegate);
this.delegate = delegate;
}
protected void setUp() throws Exception {
super.setUp();
collection = (IObservableCollection) getObservable();
}
public void testIterator_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.iterator();
}
}, "Collection.iterator()", collection);
}
public void testIterator_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.iterator();
}
}, (CurrentRealm) collection.getRealm());
}
public void testSize_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.size();
}
}, "Collection.size()", collection);
}
public void testSize_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.size();
}
}, (CurrentRealm) collection.getRealm());
}
public void testIsEmpty_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.isEmpty();
}
}, "Collection.isEmpty()", collection);
}
public void testIsEmpty_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.isEmpty();
}
}, (CurrentRealm) collection.getRealm());
}
public void testContains_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.contains(delegate.createElement(collection));
}
}, "Collection.contains(...)", collection);
}
public void testContains_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.contains(delegate.createElement(collection));
}
}, (CurrentRealm) collection.getRealm());
}
public void testContainsAll_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.containsAll(Arrays.asList(new Object[] { delegate
.createElement(collection) }));
}
}, "Collection.containsAll(Collection)", collection);
}
public void testContainsAll_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.containsAll(Arrays.asList(new Object[] { delegate
.createElement(collection) }));
}
}, (CurrentRealm) collection.getRealm());
}
public void testToArray_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.toArray();
}
}, "Collection.toArray()", collection);
}
public void testToArray_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.toArray();
}
}, (CurrentRealm) collection.getRealm());
}
public void testToArrayWithObjectArray_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.toArray(new Object[collection.size()]);
}
}, "Collection.toArray(Object[])", collection);
}
public void testToArrayWithObjectArray_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.toArray(new Object[collection.size()]);
}
}, (CurrentRealm) collection.getRealm());
}
public void testEquals_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.equals(collection);
}
}, "Collection.equals(Object)", collection);
}
public void testEquals_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.equals(collection);
}
}, (CurrentRealm) collection.getRealm());
}
public void testHashCode_GetterCalled() throws Exception {
assertGetterCalled(new Runnable() {
public void run() {
collection.hashCode();
}
}, "Collection.hashCode()", collection);
}
public void testHashCode_RealmCheck() throws Exception {
RealmTester.exerciseCurrent(new Runnable() {
public void run() {
collection.hashCode();
}
}, (CurrentRealm) collection.getRealm());
}
public void testGetElementType_ReturnsType() throws Exception {
assertEquals(
"Element type of the collection should be returned from IObservableCollection.getElementType()",
delegate.getElementType(collection), collection
.getElementType());
}
public static Test suite(IObservableCollectionContractDelegate delegate) {
return new SuiteBuilder().addObservableContractTest(
ObservableCollectionContractTest.class, delegate).build();
}
}