OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 | 4 |
5 /** | 5 /** |
6 * Test infrastructure for testing pub. Unlike typical unit tests, most pub | 6 * Test infrastructure for testing pub. Unlike typical unit tests, most pub |
7 * tests are integration tests that stage some stuff on the file system, run | 7 * tests are integration tests that stage some stuff on the file system, run |
8 * pub, and then validate the results. This library provides an API to build | 8 * pub, and then validate the results. This library provides an API to build |
9 * tests like that. | 9 * tests like that. |
10 */ | 10 */ |
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 Future _validateOneMatch(String dir, Future validate(String path)) { | 841 Future _validateOneMatch(String dir, Future validate(String path)) { |
842 // Special-case strings to support multi-level names like "myapp/packages". | 842 // Special-case strings to support multi-level names like "myapp/packages". |
843 if (name is String) { | 843 if (name is String) { |
844 var path = join(dir, name); | 844 var path = join(dir, name); |
845 return exists(path).chain((exists) { | 845 return exists(path).chain((exists) { |
846 if (!exists) Expect.fail('File $name in $dir not found.'); | 846 if (!exists) Expect.fail('File $name in $dir not found.'); |
847 return validate(path); | 847 return validate(path); |
848 }); | 848 }); |
849 } | 849 } |
850 | 850 |
| 851 // TODO(nweiz): remove this when issue 4061 is fixed. |
| 852 var stackTrace; |
| 853 try { |
| 854 throw null; |
| 855 } catch (_, localStackTrace) { |
| 856 stackTrace = localStackTrace; |
| 857 } |
| 858 |
851 return listDir(dir).chain((files) { | 859 return listDir(dir).chain((files) { |
852 var matches = files.filter((file) => endsWithPattern(file, name)); | 860 var matches = files.filter((file) => endsWithPattern(file, name)); |
853 if (matches.length == 0) { | 861 if (matches.length == 0) { |
854 Expect.fail('No files in $dir match pattern $name.'); | 862 Expect.fail('No files in $dir match pattern $name.'); |
855 } | 863 } |
856 if (matches.length == 1) return validate(matches[0]); | 864 if (matches.length == 1) return validate(matches[0]); |
857 | 865 |
858 var failures = []; | 866 var failures = []; |
859 var successes = 0; | 867 var successes = 0; |
860 var completer = new Completer(); | 868 var completer = new Completer(); |
861 checkComplete() { | 869 checkComplete() { |
862 if (failures.length + successes != matches.length) return; | 870 if (failures.length + successes != matches.length) return; |
863 if (successes > 0) { | 871 if (successes > 0) { |
864 completer.complete(null); | 872 completer.complete(null); |
865 return; | 873 return; |
866 } | 874 } |
867 | 875 |
868 var error = new StringBuffer(); | 876 var error = new StringBuffer(); |
869 error.add("No files named $name in $dir were valid:\n"); | 877 error.add("No files named $name in $dir were valid:\n"); |
870 for (var failure in failures) { | 878 for (var failure in failures) { |
871 error.add(" ").add(failure).add("\n"); | 879 error.add(" ").add(failure).add("\n"); |
872 } | 880 } |
873 completer.completeException(new ExpectException(error.toString())); | 881 completer.completeException( |
| 882 new ExpectException(error.toString()), stackTrace); |
874 } | 883 } |
875 | 884 |
876 for (var match in matches) { | 885 for (var match in matches) { |
877 var future = validate(match); | 886 var future = validate(match); |
878 | 887 |
879 future.handleException((e) { | 888 future.handleException((e) { |
880 failures.add(e); | 889 failures.add(e); |
881 checkComplete(); | 890 checkComplete(); |
882 return true; | 891 return true; |
883 }); | 892 }); |
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1528 /// calling [completion] is unnecessary. | 1537 /// calling [completion] is unnecessary. |
1529 void expectLater(Future actual, matcher, {String reason, | 1538 void expectLater(Future actual, matcher, {String reason, |
1530 FailureHandler failureHandler, bool verbose: false}) { | 1539 FailureHandler failureHandler, bool verbose: false}) { |
1531 _schedule((_) { | 1540 _schedule((_) { |
1532 return actual.transform((value) { | 1541 return actual.transform((value) { |
1533 expect(value, matcher, reason: reason, failureHandler: failureHandler, | 1542 expect(value, matcher, reason: reason, failureHandler: failureHandler, |
1534 verbose: false); | 1543 verbose: false); |
1535 }); | 1544 }); |
1536 }); | 1545 }); |
1537 } | 1546 } |
OLD | NEW |