1 package org.apache.velocity.test.issues;
2
3
4
5
6
7
8
9
10
11
12
13 import java.io.BufferedWriter;
14 import java.io.FileOutputStream;
15 import java.io.OutputStreamWriter;
16 import java.io.StringWriter;
17 import java.io.Writer;
18
19 import junit.framework.Test;
20 import junit.framework.TestSuite;
21
22 import org.apache.velocity.Template;
23 import org.apache.velocity.VelocityContext;
24 import org.apache.velocity.app.Velocity;
25 import org.apache.velocity.runtime.RuntimeSingleton;
26 import org.apache.velocity.test.misc.TestLogChute;
27 import org.apache.velocity.test.BaseTestCase;
28
29
30
31
32 public class Velocity580TestCase extends BaseTestCase
33 {
34
35
36
37 private static final String CMP_FILE_EXT = "cmp";
38
39
40
41
42 private static final String RESULT_FILE_EXT = "res";
43
44
45
46
47 private static final String RESULTS_DIR = TEST_RESULT_DIR + "/issues/velocity-580";
48
49
50
51
52 private static final String TEMPLATE_DIR = TEST_COMPARE_DIR + "/issues/velocity-580/templates";
53
54
55
56
57 private static final String COMPARE_DIR = TEST_COMPARE_DIR + "/issues/velocity-580/compare";
58
59 public Velocity580TestCase(final String name) throws Exception
60 {
61 super(name);
62 }
63
64 public static Test suite()
65 {
66 return new TestSuite(Velocity580TestCase.class);
67 }
68
69 public void setUp() throws Exception
70 {
71
72 assureResultsDirectoryExists(RESULTS_DIR);
73
74 Velocity.addProperty(Velocity.FILE_RESOURCE_LOADER_PATH, TEMPLATE_DIR);
75
76 Velocity.setProperty(Velocity.RUNTIME_LOG_LOGSYSTEM_CLASS, TestLogChute.class.getName());
77
78 Velocity.init();
79 }
80
81 public void testVelocity580() throws Exception
82 {
83 executeTest("velocity580.vm");
84 }
85
86 protected Template executeTest(final String templateName) throws Exception
87 {
88 Template template = RuntimeSingleton.getTemplate(templateName);
89
90 FileOutputStream fos = new FileOutputStream(getFileName(RESULTS_DIR, templateName, RESULT_FILE_EXT));
91
92 Writer writer = new BufferedWriter(new OutputStreamWriter(fos));
93
94 VelocityContext context = new VelocityContext();
95
96 template.merge(context, writer);
97 writer.flush();
98 writer.close();
99
100 if (!isMatch(RESULTS_DIR, COMPARE_DIR, templateName, RESULT_FILE_EXT, CMP_FILE_EXT))
101 {
102
103 StringWriter out = new StringWriter();
104 template.merge(context, out);
105
106 String compare = getFileContents(COMPARE_DIR, templateName, CMP_FILE_EXT);
107
108 fail("Output incorrect for Template: " + templateName + ": \""+out+"\""+
109 "; it did not match: \""+compare+"\"");
110 }
111
112 return template;
113 }
114 }