/emf-2.8.0/org.eclipse.emf.test.ecore.xcore/src/org/eclipse/emf/test/ecore/xcore/scoping/LazyGenModelInferenceTest.java

# · Java · 167 lines · 137 code · 23 blank · 7 comment · 4 complexity · 9ff6b9e066e8a5f3a2237496820fde4f MD5 · raw file

  1. /**
  2. * Copyright (c) 2011-2012 Eclipse contributors and others.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. */
  8. package org.eclipse.emf.test.ecore.xcore.scoping;
  9. import static org.junit.Assert.assertEquals;
  10. import static org.junit.Assert.assertFalse;
  11. import static org.junit.Assert.assertNull;
  12. import static org.junit.Assert.assertTrue;
  13. import java.io.IOException;
  14. import java.util.Iterator;
  15. import org.eclipse.emf.codegen.ecore.genmodel.GenModelPackage;
  16. import org.eclipse.emf.common.util.EList;
  17. import org.eclipse.emf.common.util.URI;
  18. import org.eclipse.emf.ecore.EObject;
  19. import org.eclipse.emf.ecore.EcorePackage;
  20. import org.eclipse.emf.ecore.resource.Resource;
  21. import org.eclipse.emf.ecore.xcore.XcoreInjectorProvider;
  22. import org.eclipse.emf.ecore.xcore.XcoreStandaloneSetup;
  23. import org.eclipse.emf.ecore.xcore.resource.XcoreResource;
  24. import org.eclipse.xtext.common.types.TypesPackage;
  25. import org.eclipse.xtext.junit4.GlobalRegistries;
  26. import org.eclipse.xtext.junit4.InjectWith;
  27. import org.eclipse.xtext.junit4.XtextRunner;
  28. import org.eclipse.xtext.resource.IEObjectDescription;
  29. import org.eclipse.xtext.resource.IResourceDescription;
  30. import org.eclipse.xtext.resource.IResourceDescription.Manager;
  31. import org.eclipse.xtext.resource.XtextResource;
  32. import org.eclipse.xtext.resource.XtextResourceSet;
  33. import org.eclipse.xtext.util.StringInputStream;
  34. import org.junit.Test;
  35. import org.junit.runner.RunWith;
  36. import com.google.inject.Guice;
  37. import com.google.inject.Inject;
  38. import com.google.inject.Injector;
  39. import com.google.inject.Provider;
  40. @RunWith(XtextRunner.class)
  41. @InjectWith(LazyGenModelInferenceTest.MyXcoreInjectorProvider.class)
  42. public class LazyGenModelInferenceTest
  43. {
  44. @Inject
  45. private Provider<XtextResourceSet> resourceSetProvider;
  46. public static class MyXcoreInjectorProvider extends XcoreInjectorProvider
  47. {
  48. private Injector injector;
  49. @Override
  50. public Injector getInjector()
  51. {
  52. if (injector == null)
  53. {
  54. stateBeforeInjectorCreation = GlobalRegistries.makeCopyOfGlobalState();
  55. this.injector =
  56. new XcoreStandaloneSetup()
  57. {
  58. @Override
  59. public Injector createInjector()
  60. {
  61. return Guice.createInjector(new org.eclipse.emf.ecore.xcore.XcoreRuntimeModule()
  62. {
  63. @Override
  64. public Class<? extends XtextResource> bindXtextResource()
  65. {
  66. return InspectableXcoreResource.class;
  67. }
  68. });
  69. }
  70. }.createInjectorAndDoEMFRegistration();
  71. stateAfterInjectorCreation = GlobalRegistries.makeCopyOfGlobalState();
  72. }
  73. return injector;
  74. }
  75. @Override
  76. public void setupRegistry()
  77. {
  78. super.setupRegistry();
  79. if (injector != null)
  80. {
  81. new XcoreStandaloneSetup().register(injector);
  82. }
  83. }
  84. }
  85. public static class InspectableXcoreResource extends XcoreResource
  86. {
  87. public EList<EObject> getContentsUnsafe()
  88. {
  89. return contents;
  90. }
  91. public boolean isFullyInitialized()
  92. {
  93. return fullyInitialized;
  94. }
  95. }
  96. @Test
  97. public void testSetup()
  98. {
  99. XtextResourceSet resourceSet = resourceSetProvider.get();
  100. Resource resource = resourceSet.createResource(URI.createURI("foo.xcore"));
  101. assertTrue(resource.toString(), resource instanceof InspectableXcoreResource);
  102. assertNull(((InspectableXcoreResource)resource).getContentsUnsafe());
  103. assertFalse(((InspectableXcoreResource)resource).isFullyInitialized());
  104. }
  105. @Test
  106. public void testContentsWithoutDerived() throws IOException
  107. {
  108. XtextResourceSet resourceSet = resourceSetProvider.get();
  109. Resource resource = resourceSet.createResource(URI.createURI("foo.xcore"));
  110. resource.load(new StringInputStream("package foo.bar class Baz {}"), null);
  111. assertEquals(1, ((InspectableXcoreResource)resource).getContentsUnsafe().size());
  112. assertFalse(((InspectableXcoreResource)resource).isFullyInitialized());
  113. }
  114. @Test
  115. public void testContentsWithDerived() throws IOException
  116. {
  117. XtextResourceSet resourceSet = resourceSetProvider.get();
  118. Resource resource = resourceSet.createResource(URI.createURI("foo.xcore"));
  119. resource.load(new StringInputStream("package foo.bar class Baz {}"), null);
  120. assertTrue(1 < resource.getContents().size());
  121. assertTrue(((InspectableXcoreResource)resource).isFullyInitialized());
  122. }
  123. public void testResourceDescriptionManagerDoesNotResolve() throws IOException
  124. {
  125. XtextResourceSet resourceSet = resourceSetProvider.get();
  126. InspectableXcoreResource resource = (InspectableXcoreResource)resourceSet.createResource(URI.createURI("foo.xcore"));
  127. resource.load(new StringInputStream("package foo.bar class Baz {}"), null);
  128. Manager manager = resource.getResourceServiceProvider().getResourceDescriptionManager();
  129. IResourceDescription resourceDescription = manager.getResourceDescription(resource);
  130. Iterator<IEObjectDescription> eclass = resourceDescription.getExportedObjectsByType(EcorePackage.Literals.ECLASS).iterator();
  131. Iterator<IEObjectDescription> genclass = resourceDescription.getExportedObjectsByType(GenModelPackage.Literals.GEN_CLASS).iterator();
  132. Iterator<IEObjectDescription> jvmTypes = resourceDescription.getExportedObjectsByType(TypesPackage.Literals.JVM_GENERIC_TYPE).iterator();
  133. final String expected = "foo.bar.Baz";
  134. assertEquals(expected, eclass.next().getName().toString());
  135. assertFalse(eclass.hasNext());
  136. assertEquals(expected, genclass.next().getName().toString());
  137. assertFalse(genclass.hasNext());
  138. assertEquals(expected, jvmTypes.next().getName().toString());
  139. assertEquals(expected + "Impl", jvmTypes.next().getName().toString());
  140. assertFalse(genclass.hasNext());
  141. assertEquals(1, resource.getContentsUnsafe().size());
  142. assertFalse(resource.isFullyInitialized());
  143. }
  144. }