Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_250036_Test.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_250036_Test.java232
1 files changed, 116 insertions, 116 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_250036_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_250036_Test.java
index 21a614a5b5..a8aad09326 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_250036_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_250036_Test.java
@@ -1,116 +1,116 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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:
- * Simon McDuff - initial API and implementation
- * Eike Stepper - maintenance
- */
-package org.eclipse.emf.cdo.tests.bugzilla;
-
-import org.eclipse.emf.cdo.eresource.CDOResource;
-import org.eclipse.emf.cdo.session.CDOSession;
-import org.eclipse.emf.cdo.tests.AbstractCDOTest;
-import org.eclipse.emf.cdo.tests.model4.GenRefMapNonContained;
-import org.eclipse.emf.cdo.tests.model4.GenRefSingleContained;
-import org.eclipse.emf.cdo.tests.util.TestAdapter;
-import org.eclipse.emf.cdo.transaction.CDOTransaction;
-import org.eclipse.emf.cdo.util.CDOUtil;
-
-import org.eclipse.emf.common.notify.Notification;
-import org.eclipse.emf.common.util.EMap;
-import org.eclipse.emf.ecore.EObject;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * See bug 250036
- *
- * @author Simon McDuff
- */
-public class Bugzilla_250036_Test extends AbstractCDOTest
-{
- public void testBugzilla_250036_Invalidation() throws Exception
- {
- CDOSession session = openSession();
- session.getPackageRegistry().putEPackage(getModel4InterfacesPackage());
- session.getPackageRegistry().putEPackage(getModel4Package());
-
- CDOTransaction transaction = session.openTransaction();
-
- CDOResource resource1 = transaction.createResource(getResourcePath("test1"));
- CDOResource resource2 = transaction.createResource(getResourcePath("test2"));
-
- GenRefMapNonContained elementA = getModel4Factory().createGenRefMapNonContained();
- resource1.getContents().add(elementA);
- List<EObject> expectedValue = new ArrayList<EObject>();
- for (int i = 0; i < 10; i++)
- {
- GenRefSingleContained value = getModel4Factory().createGenRefSingleContained();
- elementA.getElements().put(String.valueOf(i), value);
- resource2.getContents().add(value);
- expectedValue.add(value);
- }
-
- transaction.commit();
-
- /********* transaction 2 ***************/
- CDOTransaction transaction2 = session.openTransaction();
- CDOResource resource1FromTx2 = transaction2.getResource(resource1.getPath());
-
- GenRefMapNonContained genRefMap = (GenRefMapNonContained)resource1FromTx2.getContents().get(0);
- assertClean(genRefMap, transaction2);
- assertEquals(10, genRefMap.getElements().size());
- EMap<String, EObject> mapOfEObject = genRefMap.getElements();
- for (int i = 0; i < 10; i++)
- {
- EObject object = mapOfEObject.get(String.valueOf(i));
- assertNotNull(object);
- assertEquals(CDOUtil.getCDOObject(expectedValue.get(i)).cdoID(), CDOUtil.getCDOObject(object).cdoID());
- }
-
- final TestAdapter adapter = new TestAdapter();
- genRefMap.eAdapters().add(adapter);
- transaction2.options().setInvalidationNotificationEnabled(true);
-
- /********* transaction 1 ***************/
- final int counter[] = { 0 };
- for (int i = 10; i < 20; i++)
- {
- GenRefSingleContained value = getModel4Factory().createGenRefSingleContained();
- elementA.getElements().put(String.valueOf(i), value);
- resource2.getContents().add(value);
- expectedValue.add(value);
- ++counter[0];
- }
-
- transaction.commit();
-
- msg("Checking after commit");
- new PollingTimeOuter()
- {
- @Override
- protected boolean successful()
- {
- // 10 delta notifications from local commit (same session) plus 1 invalidation notification
- Notification[] notifications = adapter.getNotifications();
- return notifications.length == 1 + counter[0];
- }
- }.assertNoTimeOut();
-
- /********* transaction 2 ***************/
- EMap<String, EObject> mapOfEObjectAfterCommit = genRefMap.getElements();
- assertSame(mapOfEObject, mapOfEObjectAfterCommit);
- assertEquals(20, mapOfEObjectAfterCommit.size());
- for (int i = 0; i < 20; i++)
- {
- EObject object = mapOfEObject.get(String.valueOf(i));
- assertNotNull(object);
- assertEquals(CDOUtil.getCDOObject(expectedValue.get(i)).cdoID(), CDOUtil.getCDOObject(object).cdoID());
- }
- }
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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:
+ * Simon McDuff - initial API and implementation
+ * Eike Stepper - maintenance
+ */
+package org.eclipse.emf.cdo.tests.bugzilla;
+
+import org.eclipse.emf.cdo.eresource.CDOResource;
+import org.eclipse.emf.cdo.session.CDOSession;
+import org.eclipse.emf.cdo.tests.AbstractCDOTest;
+import org.eclipse.emf.cdo.tests.model4.GenRefMapNonContained;
+import org.eclipse.emf.cdo.tests.model4.GenRefSingleContained;
+import org.eclipse.emf.cdo.tests.util.TestAdapter;
+import org.eclipse.emf.cdo.transaction.CDOTransaction;
+import org.eclipse.emf.cdo.util.CDOUtil;
+
+import org.eclipse.emf.common.notify.Notification;
+import org.eclipse.emf.common.util.EMap;
+import org.eclipse.emf.ecore.EObject;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * See bug 250036
+ *
+ * @author Simon McDuff
+ */
+public class Bugzilla_250036_Test extends AbstractCDOTest
+{
+ public void testBugzilla_250036_Invalidation() throws Exception
+ {
+ CDOSession session = openSession();
+ session.getPackageRegistry().putEPackage(getModel4InterfacesPackage());
+ session.getPackageRegistry().putEPackage(getModel4Package());
+
+ CDOTransaction transaction = session.openTransaction();
+
+ CDOResource resource1 = transaction.createResource(getResourcePath("test1"));
+ CDOResource resource2 = transaction.createResource(getResourcePath("test2"));
+
+ GenRefMapNonContained elementA = getModel4Factory().createGenRefMapNonContained();
+ resource1.getContents().add(elementA);
+ List<EObject> expectedValue = new ArrayList<EObject>();
+ for (int i = 0; i < 10; i++)
+ {
+ GenRefSingleContained value = getModel4Factory().createGenRefSingleContained();
+ elementA.getElements().put(String.valueOf(i), value);
+ resource2.getContents().add(value);
+ expectedValue.add(value);
+ }
+
+ transaction.commit();
+
+ /********* transaction 2 ***************/
+ CDOTransaction transaction2 = session.openTransaction();
+ CDOResource resource1FromTx2 = transaction2.getResource(resource1.getPath());
+
+ GenRefMapNonContained genRefMap = (GenRefMapNonContained)resource1FromTx2.getContents().get(0);
+ assertClean(genRefMap, transaction2);
+ assertEquals(10, genRefMap.getElements().size());
+ EMap<String, EObject> mapOfEObject = genRefMap.getElements();
+ for (int i = 0; i < 10; i++)
+ {
+ EObject object = mapOfEObject.get(String.valueOf(i));
+ assertNotNull(object);
+ assertEquals(CDOUtil.getCDOObject(expectedValue.get(i)).cdoID(), CDOUtil.getCDOObject(object).cdoID());
+ }
+
+ final TestAdapter adapter = new TestAdapter();
+ genRefMap.eAdapters().add(adapter);
+ transaction2.options().setInvalidationNotificationEnabled(true);
+
+ /********* transaction 1 ***************/
+ final int counter[] = { 0 };
+ for (int i = 10; i < 20; i++)
+ {
+ GenRefSingleContained value = getModel4Factory().createGenRefSingleContained();
+ elementA.getElements().put(String.valueOf(i), value);
+ resource2.getContents().add(value);
+ expectedValue.add(value);
+ ++counter[0];
+ }
+
+ transaction.commit();
+
+ msg("Checking after commit");
+ new PollingTimeOuter()
+ {
+ @Override
+ protected boolean successful()
+ {
+ // 10 delta notifications from local commit (same session) plus 1 invalidation notification
+ Notification[] notifications = adapter.getNotifications();
+ return notifications.length == 1 + counter[0];
+ }
+ }.assertNoTimeOut();
+
+ /********* transaction 2 ***************/
+ EMap<String, EObject> mapOfEObjectAfterCommit = genRefMap.getElements();
+ assertSame(mapOfEObject, mapOfEObjectAfterCommit);
+ assertEquals(20, mapOfEObjectAfterCommit.size());
+ for (int i = 0; i < 20; i++)
+ {
+ EObject object = mapOfEObject.get(String.valueOf(i));
+ assertNotNull(object);
+ assertEquals(CDOUtil.getCDOObject(expectedValue.get(i)).cdoID(), CDOUtil.getCDOObject(object).cdoID());
+ }
+ }
+}

Back to the top