|
4 | 4 |
|
5 | 5 | import java.io.ByteArrayInputStream;
|
6 | 6 | import java.io.ByteArrayOutputStream;
|
| 7 | +import java.io.IOException; |
7 | 8 | import java.io.InputStream;
|
8 | 9 |
|
| 10 | +import com.fasterxml.jackson.core.JsonProcessingException; |
| 11 | +import com.fasterxml.jackson.databind.JsonNode; |
| 12 | +import com.fasterxml.jackson.databind.ObjectMapper; |
| 13 | +import com.fasterxml.jackson.databind.node.ObjectNode; |
| 14 | + |
9 | 15 | import static org.fest.assertions.Assertions.*;
|
10 | 16 |
|
11 | 17 | public class DriverTest {
|
@@ -75,14 +81,37 @@ public void processInvalid() throws DriverException, CloseException {
|
75 | 81 | @Test
|
76 | 82 | public void processComment() throws DriverException, CloseException {
|
77 | 83 | final String input = "{\"content\":\"class EOF_Test { public void method() {\\r\\n /*\\r\\n*/ } }\"}";
|
| 84 | + final Driver driver = process(input); |
| 85 | + driver.processOne(); |
| 86 | + // TODO: check output |
| 87 | + } |
| 88 | + |
| 89 | + @Test |
| 90 | + public void processStringLiteral() throws DriverException, IOException { |
| 91 | + // give |
| 92 | + final String input = "{\"content\":\"class String_Test { String s = \\\"b\\\\nc\\\\41\\\"; \\r\\n }\"}"; |
| 93 | + final Driver driver = process(input); |
| 94 | + |
| 95 | + // when |
| 96 | + driver.processOne(); |
| 97 | + |
| 98 | + // then check a new node is present \w normalized value |
| 99 | + String json = driver.writer.out.toString(); |
| 100 | + final ObjectNode node = new ObjectMapper().readValue(json, ObjectNode.class); |
| 101 | + JsonNode newNode = node.findPath("unescapedValue"); |
| 102 | + |
| 103 | + assertThat(newNode.isMissingNode()).isFalse(); |
| 104 | + assertThat(newNode.asText()).isEqualTo("b\nc!"); |
| 105 | + } |
| 106 | + |
| 107 | + public Driver process(String input) { |
78 | 108 | final InputStream in = new ByteArrayInputStream(input.getBytes());
|
79 | 109 | final RequestReader reader = new RequestReader(in);
|
80 | 110 |
|
81 | 111 | final ByteArrayOutputStream out = new ByteArrayOutputStream();
|
82 | 112 | final ResponseWriter writer = new ResponseWriter(out);
|
83 | 113 |
|
84 |
| - final Driver driver = new Driver(reader, writer); |
85 |
| - driver.processOne(); |
86 |
| - // TODO: check output |
| 114 | + return new Driver(reader, writer); |
87 | 115 | }
|
| 116 | + |
88 | 117 | }
|
0 commit comments