Package org.eclipse.orion.server.cf.manifest.v2

Examples of org.eclipse.orion.server.cf.manifest.v2.Tokenizer


    String manifestName = "01.yml"; //$NON-NLS-1$
    File manifestFile = new File(FileLocator.toFileURL(entry).getPath().concat(manifestName));

    InputStream inputStream = new FileInputStream(manifestFile);
    ManifestParseTree manifest = parse(inputStream);

    ManifestTransformator transformator = new ManifestTransformator();
    transformator.apply(manifest);

    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    for (ManifestParseTree application : applications.getChildren())
      assertTrue(application.get("propertyA").getValue().equals("valueA") && application.get("propertyB").getValue().equals("valueB")); //$NON-NLS-1$ //$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$

    manifestName = "02.yml"; //$NON-NLS-1$
    manifestFile = new File(FileLocator.toFileURL(entry).getPath().concat(manifestName));

    inputStream = new FileInputStream(manifestFile);
    manifest = parse(inputStream);

    transformator = new ManifestTransformator();
    transformator.apply(manifest);

    applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals("nativeA", applications.get(0).get("A").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("nativeB", applications.get(0).get("B").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("overriddenC", applications.get(0).get("C").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("valueD", applications.get(0).get("D").get("overriddenD").getValue()); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$

    assertEquals("overriddenA", applications.get(1).get("A").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("nativeB", applications.get(1).get("B").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("nativeC", applications.get(1).get("C").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("valueD", applications.get(1).get("D").get("overriddenD").getValue()); //$NON-NLS-1$ //$NON-NLS-2$//$NON-NLS-3$

    assertEquals("nativeA", applications.get(2).get("A").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("overriddenB", applications.get(2).get("B").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("nativeC", applications.get(2).get("C").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("valueD", applications.get(2).get("D").get("overriddenD").getValue()); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$

    assertEquals("overriddenA", applications.get(3).get("A").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("overriddenB", applications.get(3).get("B").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("overriddenC", applications.get(3).get("C").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("valueD", applications.get(3).get("D").get("nativeD").getValue()); //$NON-NLS-1$ //$NON-NLS-2$//$NON-NLS-3$
  }
View Full Code Here


    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    File manifestFile = new File(FileLocator.toFileURL(entry).getPath().concat(manifestName));

    InputStream inputStream = new FileInputStream(manifestFile);
    ManifestParseTree manifest = parse(inputStream);

    ManifestParseTree application = manifest.get("applications").get(0); //$NON-NLS-1$
    ManifestParseTree services = application.get("services"); //$NON-NLS-1$

    assertEquals(2, services.getChildren().size());

    String service = services.get(0).getValue();
    assertEquals("Redis Cloud-fo service", service); //$NON-NLS-1$

    service = services.get(1).getValue();
    assertEquals("Redis-two", service); //$NON-NLS-1$
  }
View Full Code Here

    String manifestName = "prod-manifest.yml"; //$NON-NLS-1$

    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));

    ManifestParseTree manifest = ManifestUtils.parse(fs.getParent(), fs);
    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals(4, applications.getChildren().size());

    for (ManifestParseTree application : applications.getChildren()) {
      assertTrue(application.has("domain")); //$NON-NLS-1$
      assertTrue(application.has("instances")); //$NON-NLS-1$
      assertTrue(application.has("path")); //$NON-NLS-1$
      assertTrue(application.has("memory")); //$NON-NLS-1$
    }
View Full Code Here

    String manifestName = "prod-manifest.yml"; //$NON-NLS-1$

    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));

    ManifestParseTree manifest = ManifestUtils.parse(fs.getParent().getParent(), fs);
    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals(2, applications.getChildren().size());

    for (ManifestParseTree application : applications.getChildren()) {
      assertTrue(application.has("domain")); //$NON-NLS-1$
      assertTrue(application.has("instances")); //$NON-NLS-1$
      assertTrue(application.has("path")); //$NON-NLS-1$
      assertTrue(application.has("memory")); //$NON-NLS-1$
    }
View Full Code Here

    String manifestName = "prod-manifest.yml"; //$NON-NLS-1$

    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));

    ManifestParseTree manifest = ManifestUtils.parse(fs.getParent(), fs);

    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals(1, applications.getChildren().size());

    ManifestParseTree application = applications.get(0);

    assertEquals("512M", application.get("memory").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("2", application.get("instances").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("example.com", application.get("domain").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals(".", application.get("path").getValue()); //$NON-NLS-1$//$NON-NLS-2$
  }
View Full Code Here

    String manifestName = "prod-manifest.yml"; //$NON-NLS-1$

    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));

    ManifestParseTree manifest = ManifestUtils.parse(fs.getParent(), fs);
    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals(2, applications.getChildren().size());
  }
View Full Code Here

    String manifestName = "final-manifest.yml"; //$NON-NLS-1$

    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));

    ManifestParseTree manifest = ManifestUtils.parse(fs.getParent(), fs);
    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals(2, applications.getChildren().size());

    for (ManifestParseTree application : applications.getChildren()) {
      assertTrue(application.has("domain")); //$NON-NLS-1$
      assertTrue(application.has("instances")); //$NON-NLS-1$
      assertTrue(application.has("memory")); //$NON-NLS-1$

      if ("A".equals(application.get("name").getValue())) //$NON-NLS-1$ //$NON-NLS-2$
View Full Code Here

    String manifestName = "final-manifest.yml"; //$NON-NLS-1$

    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));

    ManifestParseTree manifest = ManifestUtils.parse(fs.getParent().getParent().getParent(), fs);
    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals(2, applications.getChildren().size());

    for (ManifestParseTree application : applications.getChildren()) {
      assertTrue(application.has("domain")); //$NON-NLS-1$
      assertTrue(application.has("instances")); //$NON-NLS-1$
      assertTrue(application.has("memory")); //$NON-NLS-1$

      if ("A".equals(application.get("name").getValue())) //$NON-NLS-1$ //$NON-NLS-2$
View Full Code Here

    String manifestName = "prod-manifest.yml"; //$NON-NLS-1$

    URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
    IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));

    ManifestParseTree manifest = ManifestUtils.parse(fs.getParent(), fs);

    ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
    assertEquals(1, applications.getChildren().size());

    ManifestParseTree env = manifest.get("env"); //$NON-NLS-1$
    assertEquals(2, env.getChildren().size());

    assertEquals("base", env.get("TEST").getValue()); //$NON-NLS-1$//$NON-NLS-2$
    assertEquals("overridden", env.get("TEST2").getValue()); //$NON-NLS-1$//$NON-NLS-2$
  }
View Full Code Here

  private ManifestParseTree parse(InputStream inputStream) throws IOException, TokenizerException, ParserException {
    Preprocessor preprocessor = new ManifestPreprocessor();
    List<InputLine> contents = preprocessor.process(inputStream);
    Tokenizer tokenizer = new ManifestTokenizer(contents);

    Parser parser = new ManifestParser();
    return parser.parse(tokenizer);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.orion.server.cf.manifest.v2.Tokenizer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.