Package net.sf.lapg.templates.api.impl

Examples of net.sf.lapg.templates.api.impl.DefaultNavigationFactory


  // loop.ltp
  public void testLoops() {
    Hashtable<String,String[]> h = new Hashtable<String,String[]>();
    h.put("list", new String[] { "a", "b" });

    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));

    // test 1
    String q = env.executeTemplate("loop.loop1", new EvaluationContext(h), null, null);
    Assert.assertEquals("Hmm: \n\n0: a\n1: b\n\n", q);
View Full Code Here


    Assert.assertEquals("\nHmm: \n\n\n", q);
  }

  // eval.ltp
  public void testEval() {
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));

    // test 1
    String q = env.executeTemplate("eval.eval1", null, null, null);
    Assert.assertEquals("w1 is bad\nw2 is bad\nt4 is bad\n", q);
  }
View Full Code Here

    Assert.assertEquals("w1 is bad\nw2 is bad\nt4 is bad\n", q);
  }

  // query.ltp
  public void testQuery() {
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));

    // test 1
    String q = env.executeTemplate("query.a", new EvaluationContext(new Object()), null, null);
    Assert.assertEquals("\n123\n", q);
  }
View Full Code Here

    Assert.assertEquals("\n123\n", q);
  }

  // dollar.ltp
  public void testDollar() {
    TestTemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));

    // test 1
    String q = env.executeTemplate("dollar.testdollar", null, null, null);
    Assert.assertEquals("$ is dollar\n", q);
View Full Code Here

    Assert.assertEquals("\n88 - 67\n99 - 45\n77 - 54\n\n", q);
  }

  // filter.ltp
  public void testMap() {
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));
    EvaluationContext context = new EvaluationContext(null);
    context.setVariable("util", new DefaultStaticMethods());

    // test 1
    String q = env.executeTemplate("filter.map1", context, null, null);
View Full Code Here

    String q = env.executeTemplate("filter.map1", context, null, null);
    Assert.assertEquals("[nbsss -> a3,a45 -> 943q,ano -> yes]\n", q);
  }

  public void testCollect() {
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));
    EvaluationContext context = new EvaluationContext(null);
    context.setVariable("util", new DefaultStaticMethods());

    // test 1
    String q = env.executeTemplate("filter.collectorUnique", context, null, null);
View Full Code Here

    q = env.executeTemplate("filter.collectorStd", context, null, null);
    Assert.assertEquals("1A BB BB C D D C ", q);
  }

  public void testCollectMap() {
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));
    EvaluationContext context = new EvaluationContext(null);
    context.setVariable("util", new DefaultStaticMethods());

    // test 1
    String q = env.executeTemplate("filter.collector1", context, null, null);
View Full Code Here

    String q = env.executeTemplate("filter.collector1", context, null, null);
    Assert.assertEquals("[1a -> 1A,Bb -> BB,c -> C,d -> D]", q);
  }

  public void testSort() {
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));
    EvaluationContext context = new EvaluationContext(null);
    context.setVariable("util", new DefaultStaticMethods());

    // test 1
    String q = env.executeTemplate("filter.sorted1", context, null, null);
View Full Code Here

    Assert.assertEquals("a -> yo1; daa -> yo2; xb -> yo3; 1a -> yo4; ", q);
  }

  // arithm.ltp
  public void testArithm() {
    TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));

    // test 1
    String q = env.executeTemplate("arithm.arithm1", new EvaluationContext(null), null, null);
    Assert.assertEquals("\n2 = 2\n\n", q);
View Full Code Here

  // assert.ltp
  public void testAssert() {
    Hashtable<String,String[]> h = new Hashtable<String,String[]>();
    h.put("list", new String[] { "w1", "w2" });
    TestTemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));

    // test 1
    env.addErrors("Evaluation of `l` failed for java.util.Hashtable: null");
    env.addErrors("Assertion `list.length > 5` failed for java.util.Hashtable");
    env.addErrors("Assertion `list[1] == 'w4'` failed for java.util.Hashtable");
View Full Code Here

TOP

Related Classes of net.sf.lapg.templates.api.impl.DefaultNavigationFactory

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.