diff options
author | Shevek <[email protected]> | 2013-12-28 03:38:35 -0800 |
---|---|---|
committer | Shevek <[email protected]> | 2013-12-28 03:38:35 -0800 |
commit | aff8211f1af04eb56f123ad1358a2f8d6c23b778 (patch) | |
tree | 54734f56b3d2d28c0b3f65525c08e288d0c86e2d /src/test/java/org/anarres/cpp/LexerSourceTest.java | |
parent | fd16df830589051764a1bccb33c90cd6ca4c1c57 (diff) |
Fix floating point lexing: Missing chars and bad token stream.
Diffstat (limited to 'src/test/java/org/anarres/cpp/LexerSourceTest.java')
-rw-r--r-- | src/test/java/org/anarres/cpp/LexerSourceTest.java | 52 |
1 files changed, 34 insertions, 18 deletions
diff --git a/src/test/java/org/anarres/cpp/LexerSourceTest.java b/src/test/java/org/anarres/cpp/LexerSourceTest.java index 76bc673..f51b253 100644 --- a/src/test/java/org/anarres/cpp/LexerSourceTest.java +++ b/src/test/java/org/anarres/cpp/LexerSourceTest.java @@ -7,47 +7,52 @@ import static org.junit.Assert.*; public class LexerSourceTest { - private void testLexerSource(String in, int... out) + private void testLexerSource(String in, boolean textmatch, int... out) throws Exception { System.out.println("Testing '" + in + "' => " + Arrays.toString(out)); StringLexerSource s = new StringLexerSource(in); - int col = 0; + StringBuilder buf = new StringBuilder(); for (int i = 0; i < out.length; i++) { Token tok = s.token(); System.out.println("Token is " + tok); assertEquals(out[i], tok.getType()); // assertEquals(col, tok.getColumn()); - col += tok.getText().length(); + buf.append(tok.getText()); } Token tok = s.token(); System.out.println("Token is " + tok); assertEquals(EOF, tok.getType()); + + if (textmatch) + assertEquals(in, buf.toString()); } @Test public void testLexerSource() throws Exception { - testLexerSource("int a = 5;", + testLexerSource("int a = 5;", true, IDENTIFIER, WHITESPACE, IDENTIFIER, WHITESPACE, - '=', WHITESPACE, NUMBER, ';', EOF + '=', WHITESPACE, NUMBER, ';' ); // \n is WHITESPACE because ppvalid = false - testLexerSource("# # \r\n\n\r \rfoo", + testLexerSource("# # \r\n\n\r \rfoo", true, HASH, WHITESPACE, '#', WHITESPACE, IDENTIFIER ); - testLexerSource("%:%:", PASTE); - testLexerSource("%:?", '#', '?'); - testLexerSource("%:%=", '#', MOD_EQ); - testLexerSource("0x1234ffdUL 0765I", + // No match - trigraphs + testLexerSource("%:%:", false, PASTE); + testLexerSource("%:?", false, '#', '?'); + testLexerSource("%:%=", false, '#', MOD_EQ); + + testLexerSource("0x1234ffdUL 0765I", true, NUMBER, WHITESPACE, NUMBER); - testLexerSource("+= -= *= /= %= <= >= >>= <<= &= |= ^= x", + testLexerSource("+= -= *= /= %= <= >= >>= <<= &= |= ^= x", true, PLUS_EQ, WHITESPACE, SUB_EQ, WHITESPACE, MULT_EQ, WHITESPACE, @@ -62,11 +67,11 @@ public class LexerSourceTest { XOR_EQ, WHITESPACE, IDENTIFIER); - testLexerSource("/**/", CCOMMENT); - testLexerSource("/* /**/ */", CCOMMENT, WHITESPACE, '*', '/'); - testLexerSource("/** ** **/", CCOMMENT); - testLexerSource("//* ** **/", CPPCOMMENT); - testLexerSource("'\\r' '\\xf' '\\xff' 'x' 'aa' ''", + testLexerSource("/**/", true, CCOMMENT); + testLexerSource("/* /**/ */", true, CCOMMENT, WHITESPACE, '*', '/'); + testLexerSource("/** ** **/", true, CCOMMENT); + testLexerSource("//* ** **/", true, CPPCOMMENT); + testLexerSource("'\\r' '\\xf' '\\xff' 'x' 'aa' ''", true, CHARACTER, WHITESPACE, CHARACTER, WHITESPACE, CHARACTER, WHITESPACE, @@ -74,13 +79,24 @@ public class LexerSourceTest { SQSTRING, WHITESPACE, SQSTRING); - testLexerSource("1i1I1l1L1ui1ul", + testLexerSource("1i1I1l1L1ui1ul", true, NUMBER, NUMBER, NUMBER, NUMBER, NUMBER, NUMBER); - testLexerSource("'' 'x' 'xx'", + testLexerSource("'' 'x' 'xx'", true, SQSTRING, WHITESPACE, CHARACTER, WHITESPACE, SQSTRING); } + @Test + public void testNumbers() throws Exception { + testLexerSource("0", true, NUMBER); + testLexerSource("045", true, NUMBER); + testLexerSource("45", true, NUMBER); + testLexerSource("0.45", true, NUMBER); + testLexerSource("1.45", true, NUMBER); + testLexerSource("1e6", true, NUMBER); + testLexerSource("1.45e6", true, NUMBER); + testLexerSource(".45e6", true, NUMBER); + } } |