Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/ResourceAction.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/ResourceAction.java99
1 files changed, 99 insertions, 0 deletions
diff --git a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/ResourceAction.java b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/ResourceAction.java
new file mode 100755
index 000000000..c81a73d8d
--- /dev/null
+++ b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/issues/ResourceAction.java
@@ -0,0 +1,99 @@
+/**
+ * <copyright>
+ *
+ * Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) 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:
+ * Martin Taal
+ * </copyright>
+ *
+ * $Id: ResourceAction.java,v 1.7 2008/04/20 10:33:25 mtaal Exp $
+ */
+
+package org.eclipse.emf.teneo.test.issues;
+
+import java.io.IOException;
+import java.util.HashMap;
+import java.util.Iterator;
+
+import org.eclipse.emf.ecore.EPackage;
+import org.eclipse.emf.ecore.resource.Resource;
+import org.eclipse.emf.teneo.resource.StoreResource;
+import org.eclipse.emf.teneo.samples.issues.resource.Head;
+import org.eclipse.emf.teneo.samples.issues.resource.Person;
+import org.eclipse.emf.teneo.samples.issues.resource.ResourceFactory;
+import org.eclipse.emf.teneo.samples.issues.resource.ResourcePackage;
+import org.eclipse.emf.teneo.test.AbstractTestAction;
+import org.eclipse.emf.teneo.test.StoreTestException;
+import org.eclipse.emf.teneo.test.stores.TestStore;
+
+/**
+ * Tests setting resource when a single ref. relation is loaded.
+ *
+ * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
+ * @version $Revision: 1.7 $
+ */
+public class ResourceAction extends AbstractTestAction {
+
+ /**
+ *
+ *
+ * @param arg0
+ */
+ public ResourceAction() {
+ super(new EPackage[] { ResourcePackage.eINSTANCE });
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see org.eclipse.emf.teneo.test.AbstractTestAction#hibernateEnabled()
+ */
+ protected boolean hibernateEnabled() {
+ return true;
+ }
+
+ /** Creates simple types and tests against */
+ @Override
+ public void doAction(TestStore store) {
+ // test a simple type
+ final ResourceFactory factory = ResourceFactory.eINSTANCE;
+ {
+ store.beginTransaction();
+ Person person = factory.createPerson();
+ person.setName("me");
+ Head head = factory.createHead();
+ head.setHair("blond");
+ person.setHead(head);
+ store.store(person);
+ store.store(head);
+ store.commitTransaction();
+ }
+
+ // now use a resource to read!
+ try {
+
+ final HashMap<String, String> options = new HashMap<String, String>();
+ options.put(StoreResource.LOAD_STRATEGY_PARAM, StoreResource.ADD_TO_CONTENTS);
+ final Resource res = store.getResource("query1=select p from Person p");
+ res.load(options);
+ Iterator<?> it = res.getContents().iterator();
+ while (it.hasNext()) {
+ Object o = it.next();
+ if (!(o instanceof Person)) {
+ continue;
+ }
+ Person obj = (Person) o;
+ assertEquals(obj.eResource(), obj.getHead().eResource());
+ assertTrue(obj.eResource() != null);
+ }
+ res.unload();
+ } catch (IOException e) {
+ throw new StoreTestException("Exception", e);
+ }
+ }
+}

Back to the top