Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // Dart test for testing regular expressions in Dart. | 4 // Dart test for testing regular expressions in Dart. |
| 5 | 5 |
| 6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
| 7 | 7 |
| 8 void main() { | 8 void main() { |
| 9 RegExp exp = new RegExp(r"(\w+)"); | 9 RegExp exp = new RegExp(r"(\w+)"); |
| 10 String str = "Parse my string"; | 10 String str = "Parse my string"; |
| 11 List<Match> matches = exp.allMatches(str).toList(); | 11 List<Match> matches = exp.allMatches(str).toList(); |
| 12 Expect.equals(3, matches.length); | 12 Expect.equals(3, matches.length); |
| 13 Expect.equals("Parse", matches[0].group(0)); | 13 Expect.equals("Parse", matches[0].group(0)); |
| 14 Expect.equals("my", matches[1].group(0)); | 14 Expect.equals("my", matches[1].group(0)); |
| 15 Expect.equals("string", matches[2].group(0)); | 15 Expect.equals("string", matches[2].group(0)); |
| 16 | 16 |
| 17 // Check that allMatches progresses correctly for empty matches, and that | 17 // Check that allMatches progresses correctly for empty matches, and that |
| 18 // it includes the empty match at the end position. | 18 // it includes the empty match at the end position. |
| 19 exp = new RegExp("a?"); | 19 exp = new RegExp("a?"); |
| 20 str = "babba"; | 20 str = "babba"; |
| 21 Expect.listEquals(["", "a", "", "", "a", ""], | 21 Expect.listEquals(["", "a", "", "", "a", ""], |
| 22 exp.allMatches(str).map((x)=>x[0]).toList()); | 22 exp.allMatches(str).map((x)=>x[0]).toList()); |
| 23 | 23 |
| 24 // Check that allMatches works with optional start index. | |
|
Anders Johnsen
2014/08/11 11:57:01
Should the RegExp '.*' match
regExp.allMatches
Lasse Reichstein Nielsen
2014/08/11 12:35:35
It should. I'll add a test for it.
| |
| 25 exp = new RegExp("as{2}"); | |
| 26 str = "assassin"; | |
| 27 Expect.equals(2, exp.allMatches(str).length); | |
| 28 Expect.equals(2, exp.allMatches(str, 0).length); | |
| 29 Expect.equals(1, exp.allMatches(str, 1).length); | |
| 30 Expect.equals(0, exp.allMatches(str, 4).length); | |
| 31 Expect.equals(0, exp.allMatches(str, str.length).length); | |
| 32 Expect.throws(() => exp.allMatches(str, -1)); | |
| 33 Expect.throws(() => exp.allMatches(str, str.length + 1)); | |
| 34 | |
| 35 // The "^" must only match at the beginning of the string. | |
| 36 // Using a start-index doesn't change where the string starts. | |
| 37 exp = new RegExp("^ass"); | |
| 38 Expect.equals(1, exp.allMatches(str, 0).length); | |
| 39 Expect.equals(0, exp.allMatches(str, 3).length); | |
| 40 | |
| 24 // Regression test for http://dartbug.com/2980 | 41 // Regression test for http://dartbug.com/2980 |
| 25 exp = new RegExp("^", multiLine: true); // Any zero-length match will work. | 42 exp = new RegExp("^", multiLine: true); // Any zero-length match will work. |
| 26 str = "foo\nbar\nbaz"; | 43 str = "foo\nbar\nbaz"; |
| 27 Expect.equals(" foo\n bar\n baz", str.replaceAll(exp, " ")); | 44 Expect.equals(" foo\n bar\n baz", str.replaceAll(exp, " ")); |
| 28 | 45 |
| 29 exp = new RegExp(r"(\w+)"); | 46 exp = new RegExp(r"(\w+)"); |
| 30 Expect.isNull(exp.matchAsPrefix(" xyz ab")); | 47 Expect.isNull(exp.matchAsPrefix(" xyz ab")); |
| 31 Expect.isNull(exp.matchAsPrefix(" xyz ab", 0)); | 48 Expect.isNull(exp.matchAsPrefix(" xyz ab", 0)); |
| 32 | 49 |
| 33 var m = exp.matchAsPrefix(" xyz ab", 1); | 50 var m = exp.matchAsPrefix(" xyz ab", 1); |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 55 m = exp.matchAsPrefix(" xyz ab", 6); | 72 m = exp.matchAsPrefix(" xyz ab", 6); |
| 56 Expect.equals("b", m[0]); | 73 Expect.equals("b", m[0]); |
| 57 Expect.equals("b", m[1]); | 74 Expect.equals("b", m[1]); |
| 58 Expect.equals(1, m.groupCount); | 75 Expect.equals(1, m.groupCount); |
| 59 | 76 |
| 60 Expect.isNull(exp.matchAsPrefix(" xyz ab", 7)); | 77 Expect.isNull(exp.matchAsPrefix(" xyz ab", 7)); |
| 61 | 78 |
| 62 Expect.throws(() => exp.matchAsPrefix(" xyz ab", -1)); | 79 Expect.throws(() => exp.matchAsPrefix(" xyz ab", -1)); |
| 63 Expect.throws(() => exp.matchAsPrefix(" xyz ab", 8)); | 80 Expect.throws(() => exp.matchAsPrefix(" xyz ab", 8)); |
| 64 } | 81 } |
| OLD | NEW |