| OLD | NEW |
| 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 Loading... |
| 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() |
| OLD | NEW |