X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=test_code%2FReplaceInputStreamTest.java;h=e6e211215430485cfd0938b5fcb89f6fc5ee4a5e;hb=HEAD;hp=efab8c73d62e5f79779a41b6f8c4c889ad8a8f74;hpb=e154b9330b4cb6686c04c0d665c48184447b0033;p=nikiroo-utils.git diff --git a/test_code/ReplaceInputStreamTest.java b/test_code/ReplaceInputStreamTest.java deleted file mode 100644 index efab8c7..0000000 --- a/test_code/ReplaceInputStreamTest.java +++ /dev/null @@ -1,210 +0,0 @@ -package be.nikiroo.utils.test_code; - -import java.io.ByteArrayInputStream; -import java.io.InputStream; - -import be.nikiroo.utils.IOUtils; -import be.nikiroo.utils.streams.ReplaceInputStream; -import be.nikiroo.utils.test.TestCase; -import be.nikiroo.utils.test.TestLauncher; - -class ReplaceInputStreamTest extends TestLauncher { - public ReplaceInputStreamTest(String[] args) { - super("ReplaceInputStream test", args); - - addTest(new TestCase("Empty replace") { - @Override - public void test() throws Exception { - byte[] data = new byte[] { 42, 12, 0, 127 }; - ReplaceInputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), new byte[0], - new byte[0]); - - checkArrays(this, "FIRST", in, data); - } - }); - - addTest(new TestCase("Simple replace") { - @Override - public void test() throws Exception { - byte[] data = new byte[] { 42, 12, 0, 127 }; - ReplaceInputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), new byte[] { 0 }, - new byte[] { 10 }); - - checkArrays(this, "FIRST", in, new byte[] { 42, 12, 10, 127 }); - } - }); - - addTest(new TestCase("3/4 replace") { - @Override - public void test() throws Exception { - byte[] data = new byte[] { 42, 12, 0, 127 }; - ReplaceInputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), - new byte[] { 12, 0, 127 }, new byte[] { 10, 10, 10 }); - - checkArrays(this, "FIRST", in, new byte[] { 42, 10, 10, 10 }); - } - }); - - addTest(new TestCase("Longer replace") { - @Override - public void test() throws Exception { - byte[] data = new byte[] { 42, 12, 0, 127 }; - ReplaceInputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), new byte[] { 0 }, - new byte[] { 10, 10, 10 }); - - checkArrays(this, "FIRST", in, new byte[] { 42, 12, 10, 10, 10, - 127 }); - } - }); - - addTest(new TestCase("Shorter replace") { - @Override - public void test() throws Exception { - byte[] data = new byte[] { 42, 12, 0, 127 }; - ReplaceInputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), - new byte[] { 42, 12, 0 }, new byte[] { 10 }); - - checkArrays(this, "FIRST", in, new byte[] { 10, 127 }); - } - }); - - addTest(new TestCase("String replace") { - @Override - public void test() throws Exception { - byte[] data = "I like red".getBytes("UTF-8"); - ReplaceInputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), - "red", "blue"); - - checkArrays(this, "FIRST", in, "I like blue".getBytes("UTF-8")); - - data = "I like blue hammers".getBytes("UTF-8"); - in = new ReplaceInputStream(new ByteArrayInputStream(data), - "blue", "red"); - - checkArrays(this, "SECOND", in, "I like red hammers".getBytes("UTF-8")); - } - }); - - addTest(new TestCase("Multiple replaces") { - @Override - public void test() throws Exception { - byte[] data = "I like red cabage".getBytes("UTF-8"); - ReplaceInputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), // - new String[] { "red", "like" }, // - new String[] { "green", "very very much like" } // - ); - - String result = new String(IOUtils.toByteArray(in), "UTF-8"); - assertEquals("I very very much like green cabage", result); - } - }); - - addTest(new TestCase("Multiple replaces") { - @Override - public void test() throws Exception { - String str= ("" // - + "\n" // - + "\n" // - + "\n" // - + "\n" // - + "\t\n" // - + "\t\n" // - + "\t${title}\n" // - + "\t\n" // - + "\t\n" // - + "\n" // - + "\n" // - + "\t
\n" // - + "${banner}${content}\t
\n" // - + "\n" // - + "" // - ); - byte[] data = str.getBytes("UTF-8"); - - String title = "Fanfix"; - String banner = ""; - String content = ""; - - InputStream in = new ReplaceInputStream( - new ByteArrayInputStream(data), // - new String[] { "${title}", "${banner}", "${content}" }, // - new String[] { title, banner, content } // - ); - - String result = new String(IOUtils.toByteArray(in), "UTF-8"); - assertEquals(str // - .replace("${title}", title) // - .replace("${banner}", banner) // - .replace("${content}", content) // - , result); - } - }); - - - } - - static void checkArrays(TestCase test, String prefix, InputStream in, - byte[] expected) throws Exception { - byte[] actual = IOUtils.toByteArray(in); - -// System.out.println("\nActual:"); -// for(byte byt : actual) { -// System.out.print(byt+" "); -// } -// System.out.println("\nExpected:"); -// for(byte byt : expected) { -// System.out.print(byt+" "); -// } - - test.assertEquals("The " + prefix - + " resulting array has not the correct number of items", - expected.length, actual.length); - for (int i = 0; i < actual.length; i++) { - test.assertEquals("Item " + i + " (0-based) is not the same", - expected[i], actual[i]); - } - } -}