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

Unified Diff: test/matchers_minified_test.dart

Issue 1135653004: pkg/(unit)test: include a copy of old matcher (Closed) Base URL: https://github.com/dart-lang/test.git@stable
Patch Set: another nit Created 5 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/iterable_matchers_test.dart ('k') | test/matchers_unminified_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/matchers_minified_test.dart
diff --git a/test/matchers_minified_test.dart b/test/matchers_minified_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..af12906387e2b14670b236923f78c96c41dfc714
--- /dev/null
+++ b/test/matchers_minified_test.dart
@@ -0,0 +1,142 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// This file is for matcher tests that rely on the names of various Dart types.
+// These tests normally fail when run in minified dart2js, since the names will
+// be mangled. This version of the file is modified to expect minified names.
+
+library unittest.matcher.minified_test;
+
+import 'package:unittest/unittest.dart';
+
+import 'test_common.dart';
+import 'test_utils.dart';
+
+// A regexp fragment matching a minified name.
+const _MINIFIED_NAME = r"[A-Za-z0-9]{1,3}";
+
+void main() {
+ initUtils();
+
+ group('Core matchers', () {
+ test('throwsFormatException', () {
+ shouldPass(() {
+ throw new FormatException('');
+ }, throwsFormatException);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsFormatException, matches(r"Expected: throws FormatException +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw " + _MINIFIED_NAME + r":<Exception>"));
+ });
+
+ test('throwsArgumentError', () {
+ shouldPass(() {
+ throw new ArgumentError('');
+ }, throwsArgumentError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsArgumentError, matches(r"Expected: throws ArgumentError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw " + _MINIFIED_NAME + r":<Exception>"));
+ });
+
+ test('throwsRangeError', () {
+ shouldPass(() {
+ throw new RangeError(0);
+ }, throwsRangeError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsRangeError, matches(r"Expected: throws RangeError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw " + _MINIFIED_NAME + r":<Exception>"));
+ });
+
+ test('throwsNoSuchMethodError', () {
+ shouldPass(() {
+ throw new NoSuchMethodError(null, const Symbol(''), null, null);
+ }, throwsNoSuchMethodError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsNoSuchMethodError, matches(
+ r"Expected: throws NoSuchMethodError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw " + _MINIFIED_NAME + r":<Exception>"));
+ });
+
+ test('throwsUnimplementedError', () {
+ shouldPass(() {
+ throw new UnimplementedError('');
+ }, throwsUnimplementedError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsUnimplementedError, matches(
+ r"Expected: throws UnimplementedError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw " + _MINIFIED_NAME + r":<Exception>"));
+ });
+
+ test('throwsUnsupportedError', () {
+ shouldPass(() {
+ throw new UnsupportedError('');
+ }, throwsUnsupportedError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsUnsupportedError, matches(r"Expected: throws UnsupportedError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw " + _MINIFIED_NAME + r":<Exception>"));
+ });
+
+ test('throwsStateError', () {
+ shouldPass(() {
+ throw new StateError('');
+ }, throwsStateError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsStateError, matches(r"Expected: throws StateError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw " + _MINIFIED_NAME + r":<Exception>"));
+ });
+ });
+
+ group('Iterable Matchers', () {
+ test('isEmpty', () {
+ var d = new SimpleIterable(0);
+ var e = new SimpleIterable(1);
+ shouldPass(d, isEmpty);
+ shouldFail(e, isEmpty,
+ matches(r"Expected: empty +Actual: " + _MINIFIED_NAME + r":\[1\]"));
+ });
+
+ test('isNotEmpty', () {
+ var d = new SimpleIterable(0);
+ var e = new SimpleIterable(1);
+ shouldPass(e, isNotEmpty);
+ shouldFail(d, isNotEmpty, matches(
+ r"Expected: non-empty +Actual: " + _MINIFIED_NAME + r":\[\]"));
+ });
+
+ test('contains', () {
+ var d = new SimpleIterable(3);
+ shouldPass(d, contains(2));
+ shouldFail(d, contains(5), matches(r"Expected: contains <5> +"
+ r"Actual: " + _MINIFIED_NAME + r":\[3, 2, 1\]"));
+ });
+ });
+
+ group('Feature Matchers', () {
+ test("Feature Matcher", () {
+ var w = new Widget();
+ w.price = 10;
+ shouldPass(w, new HasPrice(10));
+ shouldPass(w, new HasPrice(greaterThan(0)));
+ shouldFail(w, new HasPrice(greaterThan(10)), matches(
+ r"Expected: Widget with a price that is a value greater than "
+ r"<10> +"
+ r"Actual: <Instance of '" + _MINIFIED_NAME + r"'> +"
+ r"Which: has price with value <10> which is not "
+ r"a value greater than <10>"));
+ });
+ });
+}
« no previous file with comments | « test/iterable_matchers_test.dart ('k') | test/matchers_unminified_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698