Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(957)

Side by Side Diff: tools/lexer_generator/automata_test.py

Issue 54533002: Experimental parser: more tests, better key logic (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/lexer_generator/nfa.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 25 matching lines...) Expand all
36 graph = parser.parse(string) 36 graph = parser.parse(string)
37 nfa = NfaBuilder().nfa(graph) 37 nfa = NfaBuilder().nfa(graph)
38 (start_name, dfa_nodes, end_nodes) = nfa.compute_dfa() 38 (start_name, dfa_nodes, end_nodes) = nfa.compute_dfa()
39 dfa = Dfa(start_name, dfa_nodes, end_nodes) 39 dfa = Dfa(start_name, dfa_nodes, end_nodes)
40 return (nfa, dfa) 40 return (nfa, dfa)
41 41
42 class AutomataTestCase(unittest.TestCase): 42 class AutomataTestCase(unittest.TestCase):
43 43
44 # (pattern, should match, shouldn't match) 44 # (pattern, should match, shouldn't match)
45 __test_data = [ 45 __test_data = [
46 ("a", ["a"], ["b"]), 46 ("a", ["a"], ["b", ""]),
47 ("ab", ["ab"], ["bb"]), 47 ("ab", ["ab"], ["bb", ""]),
48 ("a+b", ["ab", "aab", "aaab"], ["a", "b"]), 48 ("a+b", ["ab", "aab", "aaab"], ["a", "b", ""]),
49 ("a?b", ["ab", "b"], ["a", "c"]), 49 ("a?b", ["ab", "b"], ["a", "c", ""]),
50 ("a*b", ["ab", "aaab", "b"], ["a", "c"]), 50 ("a*b", ["ab", "aaab", "b"], ["a", "c", ""]),
51 ("a|b", ["a", "b"], ["ab", "c"]), 51 ("a|b", ["a", "b"], ["ab", "c", ""]),
52 (".", ["a", "b"], ["", "aa"]),
53 (".*", ["", "a", "abcaabbcc"], []),
54 ("a.b", ["aab", "abb", "acb"], ["ab", ""]),
55 # ("a.?b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
56 # ("a.+b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
57 (".|.", ["a", "b"], ["aa", ""]),
52 ] 58 ]
53 59
54 def test_matches(self): 60 def test_matches(self):
55 for (regex, matches, not_matches) in AutomataTestCase.__test_data: 61 for (regex, matches, not_matches) in self.__test_data:
56 (nfa, dfa) = build_automata(regex) 62 (nfa, dfa) = build_automata(regex)
57 for string in matches: 63 for string in matches:
58 self.assertTrue(nfa.matches(string)) 64 self.assertTrue(nfa.matches(string))
59 self.assertTrue(dfa.matches(string)) 65 self.assertTrue(dfa.matches(string))
60 for string in not_matches: 66 for string in not_matches:
61 self.assertFalse(nfa.matches(string)) 67 self.assertFalse(nfa.matches(string))
62 self.assertFalse(dfa.matches(string)) 68 self.assertFalse(dfa.matches(string))
63 69
70 def test_can_construct_dot(self):
71 for (regex, matches, not_matches) in self.__test_data:
72 (nfa, dfa) = build_automata(regex)
73 nfa.to_dot()
74 dfa.to_dot()
75
64 if __name__ == '__main__': 76 if __name__ == '__main__':
65 unittest.main() 77 unittest.main()
OLDNEW
« no previous file with comments | « no previous file | tools/lexer_generator/nfa.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698