| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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"]), | 52 (".", ["a", "b"], ["", "aa"]), |
| 53 (".*", ["", "a", "abcaabbcc"], []), | 53 (".*", ["", "a", "abcaabbcc"], []), |
| 54 ("a.b", ["aab", "abb", "acb"], ["ab", ""]), | 54 ("a.b", ["aab", "abb", "acb"], ["ab", ""]), |
| 55 # ("a.?b", ["aab", "abb", "acb", "ab"], ["aaab", ""]), | 55 ("a.?b", ["aab", "abb", "acb", "ab"], ["aaab", ""]), |
| 56 # ("a.+b", ["aab", "abb", "acb", "ab"], ["aaab", ""]), | 56 ("a.+b", ["aab", "abb", "acb"], ["aaac", "ab", ""]), |
| 57 (".|.", ["a", "b"], ["aa", ""]), | 57 (".|.", ["a", "b"], ["aa", ""]), |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 def test_matches(self): | 60 def test_matches(self): |
| 61 for (regex, matches, not_matches) in self.__test_data: | 61 for (regex, matches, not_matches) in self.__test_data: |
| 62 (nfa, dfa) = build_automata(regex) | 62 (nfa, dfa) = build_automata(regex) |
| 63 for string in matches: | 63 for string in matches: |
| 64 self.assertTrue(nfa.matches(string)) | 64 self.assertTrue(nfa.matches(string)) |
| 65 self.assertTrue(dfa.matches(string)) | 65 self.assertTrue(dfa.matches(string)) |
| 66 for string in not_matches: | 66 for string in not_matches: |
| 67 self.assertFalse(nfa.matches(string)) | 67 self.assertFalse(nfa.matches(string)) |
| 68 self.assertFalse(dfa.matches(string)) | 68 self.assertFalse(dfa.matches(string)) |
| 69 | 69 |
| 70 def test_can_construct_dot(self): | 70 def test_can_construct_dot(self): |
| 71 for (regex, matches, not_matches) in self.__test_data: | 71 for (regex, matches, not_matches) in self.__test_data: |
| 72 (nfa, dfa) = build_automata(regex) | 72 (nfa, dfa) = build_automata(regex) |
| 73 nfa.to_dot() | 73 nfa.to_dot() |
| 74 dfa.to_dot() | 74 dfa.to_dot() |
| 75 | 75 |
| 76 if __name__ == '__main__': | 76 if __name__ == '__main__': |
| 77 unittest.main() | 77 unittest.main() |
| OLD | NEW |