/* * Copyright (c) 2015 Ziver * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package zutil.test; import org.junit.Test; import zutil.parser.Templator; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import static org.junit.Assert.*; /** * Created by Ziver on 2015-03-23. */ public class TemplatorTest { class TestClass{ public String attr; } @Test public void tagIncorrectTest(){ assertEquals("{{", new Templator("{{").compile()); assertEquals("}}", new Templator("}}").compile()); assertEquals("}}", new Templator("}}").compile()); assertEquals("{{", new Templator("{{").compile()); assertEquals("{", new Templator("{").compile()); assertEquals("}", new Templator("}").compile()); assertEquals("{}", new Templator("{}").compile()); assertEquals("{test}", new Templator("{test}").compile()); } @Test public void attributeEmptyTest(){ Templator tmpl = new Templator("{{test}}"); assertEquals("{{test}}", tmpl.compile()); } @Test public void attributeSimpleTest() { Templator tmpl = new Templator("{{test}}"); tmpl.set("test", "1234"); assertEquals("1234", tmpl.compile()); } @Test public void attributeObjectTest(){ Templator tmpl = new Templator("{{test.attr}}"); TestClass obj = new TestClass(); obj.attr = "1234"; tmpl.set("test", obj); assertEquals("1234", tmpl.compile()); } @Test public void conditionIncompleteTest(){ assertEquals("{{#key}}", new Templator("{{#key}}").compile()); assertEquals("{{/key}}", new Templator("{{/key}}").compile()); assertEquals("", new Templator("{{#key}}{{/key}}").compile()); assertEquals("", new Templator("{{#key}}{{/key}}").compile()); } @Test public void conditionEmptyTest(){ Templator tmpl = new Templator( "{{#key}}123456789{{/key}}"); assertEquals( "", tmpl.compile()); } @Test public void conditionSimpleTest(){ Templator tmpl = new Templator( "{{#key}}123456789{{/key}}"); tmpl.set("key", "set"); assertEquals( "123456789", tmpl.compile()); } @Test public void conditionObjectTest(){ Templator tmpl = new Templator("{{#test.attr}}5678{{/test.attr}}"); TestClass obj = new TestClass(); obj.attr = "1234"; tmpl.set("test", obj); assertEquals("5678", tmpl.compile()); tmpl.clear(); tmpl.set("test", new TestClass()); assertEquals("", tmpl.compile()); } @Test public void conditionBooleanTest(){ Templator tmpl = new Templator( "{{#key}}123456789{{/key}}"); tmpl.set("key", true); assertEquals( "123456789", tmpl.compile()); tmpl.set("key", false); assertEquals( "", tmpl.compile()); } @Test public void conditionIteratorEmptyTest(){ Templator tmpl = new Templator("{{#list}}1234 {{.}} {{/list}}"); tmpl.set("list", new ArrayList()); assertEquals( "", tmpl.compile()); } @Test public void conditionIteratorTest(){ Templator tmpl = new Templator("{{#list}}{{.}}{{/list}}"); tmpl.set("list", Arrays.asList(1,2,3,4,5,6,7,8,9)); assertEquals( "123456789", tmpl.compile()); } @Test public void conditionArrayTest(){ Templator tmpl = new Templator("{{#list}}{{.}}{{/list}}"); tmpl.set("list", new int[]{1,2,3,4,5,6,7,8,9}); assertEquals( "123456789", tmpl.compile()); } @Test public void conditionArrayLength(){ Templator tmpl = new Templator("{{#list.length}}run once{{/list.length}}"); tmpl.set("list", new int[]{}); assertEquals( "", tmpl.compile()); tmpl.set("list", new int[]{1}); assertEquals( "run once", tmpl.compile()); tmpl.set("list", new int[]{1,2,3,4,5,6,7,8,9}); assertEquals( "run once", tmpl.compile()); } @Test public void negativeConditionEmptyTest(){ Templator tmpl = new Templator( "{{^key}}123456789{{/key}}"); assertEquals( "123456789", tmpl.compile()); } @Test public void negativeConditionSetTest(){ Templator tmpl = new Templator( "{{^key}}123456789{{/key}}"); tmpl.set("key", "set"); assertEquals( "", tmpl.compile()); } @Test public void negativeConditionObjectTest(){ Templator tmpl = new Templator("{{^test.attr}}5678{{/test.attr}}"); TestClass obj = new TestClass(); obj.attr = "1234"; tmpl.set("test", obj); assertEquals("", tmpl.compile()); tmpl.clear(); tmpl.set("test", new TestClass()); assertEquals("5678", tmpl.compile()); } @Test public void negativeConditionIteratorTest(){ Templator tmpl = new Templator( "{{^key}}123456789{{/key}}"); tmpl.set("key", Arrays.asList(1,2,3,4,5,6,7,8,9)); assertEquals( "", tmpl.compile()); } @Test public void negativeConditionIteratorEmptyTest(){ Templator tmpl = new Templator( "{{^key}}123456789{{/key}}"); tmpl.set("key", new ArrayList()); assertEquals( "123456789", tmpl.compile()); } @Test public void negativeConditionBooleanTest(){ Templator tmpl = new Templator( "{{^key}}123456789{{/key}}"); tmpl.set("key", true); assertEquals( "", tmpl.compile()); tmpl.set("key", false); assertEquals( "123456789", tmpl.compile()); } @Test public void commentTest(){ Templator tmpl = new Templator( "{{! This is a comment}}"); assertEquals( "", tmpl.compile()); } }