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_254489_Test.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_254489_Test.java156
1 files changed, 78 insertions, 78 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_254489_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_254489_Test.java
index 2dd3d9fb95..020b5c1e7f 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_254489_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_254489_Test.java
@@ -1,78 +1,78 @@
-/*
- * 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.model1.Category;
-import org.eclipse.emf.cdo.tests.model1.Company;
-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.cdo.view.CDOAdapterPolicy;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * CDOTransaction.postCommit not adjusting the Transaction/View reference
- * <p>
- * See bug 254489
- *
- * @author Simon McDuff
- */
-public class Bugzilla_254489_Test extends AbstractCDOTest
-{
- public void testBugzilla_254489() throws Exception
- {
- msg("Opening session");
- final CDOSession session = openSession();
-
- // ************************************************************* //
- msg("Opening transaction");
- final CDOTransaction transaction1 = session.openTransaction();
- final CDOTransaction transaction2 = session.openTransaction();
-
- CDOResource res1 = transaction1.createResource(getResourcePath("/res1"));
- final Company companyA1 = getModel1Factory().createCompany();
- res1.getContents().add(companyA1);
-
- transaction1.commit();
-
- transaction2.options().addChangeSubscriptionPolicy(CDOAdapterPolicy.ALL);
- CDOResource res2 = transaction2.getResource(getResourcePath("/res1"));
- Company companyA2 = (Company)res2.getContents().get(0);
- final TestAdapter companyA2Adapter = new TestAdapter();
- companyA2.eAdapters().add(companyA2Adapter);
-
- final Category category1A = getModel1Factory().createCategory();
- category1A.setName("category1");
-
- msg("Adding categories");
- companyA1.getCategories().add(category1A);
- transaction1.commit();
-
- msg("Checking after commit");
- new PollingTimeOuter()
- {
- @Override
- protected boolean successful()
- {
- return companyA2Adapter.getNotifications().length == 1;
- }
- }.assertNoTimeOut();
-
- Category category2 = (Category)CDOUtil.getEObject((EObject)companyA2Adapter.getNotifications()[0].getNewValue());
- assertNotSame(category2, category1A);
- assertSame(transaction2, CDOUtil.getCDOObject(category2).cdoView());
- }
-}
+/*
+ * 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.model1.Category;
+import org.eclipse.emf.cdo.tests.model1.Company;
+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.cdo.view.CDOAdapterPolicy;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * CDOTransaction.postCommit not adjusting the Transaction/View reference
+ * <p>
+ * See bug 254489
+ *
+ * @author Simon McDuff
+ */
+public class Bugzilla_254489_Test extends AbstractCDOTest
+{
+ public void testBugzilla_254489() throws Exception
+ {
+ msg("Opening session");
+ final CDOSession session = openSession();
+
+ // ************************************************************* //
+ msg("Opening transaction");
+ final CDOTransaction transaction1 = session.openTransaction();
+ final CDOTransaction transaction2 = session.openTransaction();
+
+ CDOResource res1 = transaction1.createResource(getResourcePath("/res1"));
+ final Company companyA1 = getModel1Factory().createCompany();
+ res1.getContents().add(companyA1);
+
+ transaction1.commit();
+
+ transaction2.options().addChangeSubscriptionPolicy(CDOAdapterPolicy.ALL);
+ CDOResource res2 = transaction2.getResource(getResourcePath("/res1"));
+ Company companyA2 = (Company)res2.getContents().get(0);
+ final TestAdapter companyA2Adapter = new TestAdapter();
+ companyA2.eAdapters().add(companyA2Adapter);
+
+ final Category category1A = getModel1Factory().createCategory();
+ category1A.setName("category1");
+
+ msg("Adding categories");
+ companyA1.getCategories().add(category1A);
+ transaction1.commit();
+
+ msg("Checking after commit");
+ new PollingTimeOuter()
+ {
+ @Override
+ protected boolean successful()
+ {
+ return companyA2Adapter.getNotifications().length == 1;
+ }
+ }.assertNoTimeOut();
+
+ Category category2 = (Category)CDOUtil.getEObject((EObject)companyA2Adapter.getNotifications()[0].getNewValue());
+ assertNotSame(category2, category1A);
+ assertSame(transaction2, CDOUtil.getCDOObject(category2).cdoView());
+ }
+}

Back to the top