mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
reverting accidental commit 1dfc2a5490
This commit is contained in:
parent
1dfc2a5490
commit
0f848ee51f
@ -1,5 +1,8 @@
|
|||||||
package com.fsck.k9.helper;
|
package com.fsck.k9.helper;
|
||||||
|
|
||||||
|
import java.io.BufferedWriter;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileWriter;
|
||||||
|
|
||||||
import android.support.test.runner.AndroidJUnit4;
|
import android.support.test.runner.AndroidJUnit4;
|
||||||
|
|
||||||
@ -11,6 +14,9 @@ import static junit.framework.Assert.assertEquals;
|
|||||||
|
|
||||||
@RunWith(AndroidJUnit4.class)
|
@RunWith(AndroidJUnit4.class)
|
||||||
public class HtmlConverterTest {
|
public class HtmlConverterTest {
|
||||||
|
// Useful if you want to write stuff to a file for debugging in a browser.
|
||||||
|
private static final boolean WRITE_TO_FILE = Boolean.parseBoolean(System.getProperty("k9.htmlConverterTest.writeToFile", "false"));
|
||||||
|
private static final String OUTPUT_FILE = "C:/temp/parse.html";
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testTextQuoteToHtmlBlockquote() {
|
public void testTextQuoteToHtmlBlockquote() {
|
||||||
@ -26,7 +32,7 @@ public class HtmlConverterTest {
|
|||||||
"Nice job :)\r\n" +
|
"Nice job :)\r\n" +
|
||||||
">> Guess!";
|
">> Guess!";
|
||||||
String result = HtmlConverter.textToHtml(message);
|
String result = HtmlConverter.textToHtml(message);
|
||||||
|
writeToFile(result);
|
||||||
assertEquals("<pre class=\"k9mail\">"
|
assertEquals("<pre class=\"k9mail\">"
|
||||||
+ "Panama!<br />"
|
+ "Panama!<br />"
|
||||||
+ "<br />"
|
+ "<br />"
|
||||||
@ -65,7 +71,7 @@ public class HtmlConverterTest {
|
|||||||
">\r\n" +
|
">\r\n" +
|
||||||
"> :)";
|
"> :)";
|
||||||
String result = HtmlConverter.textToHtml(message);
|
String result = HtmlConverter.textToHtml(message);
|
||||||
|
writeToFile(result);
|
||||||
assertEquals("<pre class=\"k9mail\">"
|
assertEquals("<pre class=\"k9mail\">"
|
||||||
+ "*facepalm*<br />"
|
+ "*facepalm*<br />"
|
||||||
+ "<br />"
|
+ "<br />"
|
||||||
@ -100,7 +106,7 @@ public class HtmlConverterTest {
|
|||||||
">>>>> five\r\n" +
|
">>>>> five\r\n" +
|
||||||
">>>>>> six";
|
">>>>>> six";
|
||||||
String result = HtmlConverter.textToHtml(message);
|
String result = HtmlConverter.textToHtml(message);
|
||||||
|
writeToFile(result);
|
||||||
assertEquals("<pre class=\"k9mail\">"
|
assertEquals("<pre class=\"k9mail\">"
|
||||||
+ "zero<br />"
|
+ "zero<br />"
|
||||||
+ "<blockquote class=\"gmail_quote\" style=\"margin: 0pt 0pt 1ex 0.8ex; border-left: 1px solid #729fcf; padding-left: 1ex;\">"
|
+ "<blockquote class=\"gmail_quote\" style=\"margin: 0pt 0pt 1ex 0.8ex; border-left: 1px solid #729fcf; padding-left: 1ex;\">"
|
||||||
@ -124,13 +130,32 @@ public class HtmlConverterTest {
|
|||||||
+ "</pre>", result);
|
+ "</pre>", result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void writeToFile(final String content) {
|
||||||
|
if (!WRITE_TO_FILE) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
System.err.println(content);
|
||||||
|
|
||||||
|
File f = new File(OUTPUT_FILE);
|
||||||
|
f.delete();
|
||||||
|
|
||||||
|
FileWriter fstream = new FileWriter(OUTPUT_FILE);
|
||||||
|
BufferedWriter out = new BufferedWriter(fstream);
|
||||||
|
out.write(content);
|
||||||
|
out.close();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testPreserveSpacesAtFirst() {
|
public void testPreserveSpacesAtFirst() {
|
||||||
String message = "foo\r\n"
|
String message = "foo\r\n"
|
||||||
+ " bar\r\n"
|
+ " bar\r\n"
|
||||||
+ " baz\r\n";
|
+ " baz\r\n";
|
||||||
String result = HtmlConverter.textToHtml(message);
|
String result = HtmlConverter.textToHtml(message);
|
||||||
|
writeToFile(result);
|
||||||
assertEquals("<pre class=\"k9mail\">"
|
assertEquals("<pre class=\"k9mail\">"
|
||||||
+ "foo<br />"
|
+ "foo<br />"
|
||||||
+ " bar<br />"
|
+ " bar<br />"
|
||||||
@ -147,7 +172,7 @@ public class HtmlConverterTest {
|
|||||||
+ " <\r\n"
|
+ " <\r\n"
|
||||||
+ " > \r\n";
|
+ " > \r\n";
|
||||||
String result = HtmlConverter.textToHtml(message);
|
String result = HtmlConverter.textToHtml(message);
|
||||||
|
writeToFile(result);
|
||||||
assertEquals("<pre class=\"k9mail\">"
|
assertEquals("<pre class=\"k9mail\">"
|
||||||
+ " <br />"
|
+ " <br />"
|
||||||
+ " &<br />"
|
+ " &<br />"
|
||||||
|
Loading…
Reference in New Issue
Block a user