mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 15:01:30 +00:00
912005267d
Change-Id: I46be49b2effec3e38a3dc44cd45cfe736f77fa78 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/182680 Commit-Queue: Sigmund Cherem <sigmund@google.com> Reviewed-by: Joshua Litt <joshualitt@google.com> Reviewed-by: Nicholas Shahan <nshahan@google.com> Reviewed-by: Stephen Adams <sra@google.com>
109 lines
2.3 KiB
Dart
109 lines
2.3 KiB
Dart
// Copyright (c) 2015, 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.
|
|
|
|
// @dart = 2.7
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
@pragma('dart2js:assumeDynamic')
|
|
@pragma('dart2js:noInline')
|
|
confuse(x) => x;
|
|
|
|
testFalse(name, fault) {
|
|
try {
|
|
fault();
|
|
} catch (e) {
|
|
Expect.isTrue(e is AssertionError, '$name: is AssertionError');
|
|
Expect.isTrue('$e'.contains('Mumble'), '$name: <<$e>> contains "Mumble"');
|
|
return;
|
|
}
|
|
Expect.fail('Expected assert to throw');
|
|
}
|
|
|
|
test1() {
|
|
testFalse('constant false', () {
|
|
assert(false, 'Mumble');
|
|
});
|
|
}
|
|
|
|
test2() {
|
|
testFalse('variable false', () {
|
|
assert(confuse(false), 'Mumble');
|
|
});
|
|
}
|
|
|
|
testTypeErrors() {
|
|
check(name, fault) {
|
|
try {
|
|
fault();
|
|
} catch (e) {
|
|
Expect.isTrue(
|
|
e is TypeError, 'name: <<$e>> (${e.runtimeType}) is TypeError');
|
|
return;
|
|
}
|
|
Expect.fail('Expected assert to throw');
|
|
}
|
|
|
|
check('constant type error', () {
|
|
assert(null, 'Mumble');
|
|
});
|
|
check('variable type error', () {
|
|
assert(confuse(null), 'Mumble');
|
|
});
|
|
check('function type error', () {
|
|
assert(confuse(() => null), 'Mumble');
|
|
});
|
|
}
|
|
|
|
testMessageEffect1() {
|
|
var v = 1;
|
|
// Message is not evaluated on succeeding assert.
|
|
assert(confuse(true), '${v = 123}');
|
|
Expect.equals(1, v);
|
|
}
|
|
|
|
testMessageEffect2() {
|
|
var v = 1;
|
|
try {
|
|
// Message is evaluated to produce AssertionError argument on failing
|
|
// assert.
|
|
assert(confuse(false), '${v = 123}');
|
|
} catch (e) {
|
|
Expect.equals(123, v);
|
|
Expect.isTrue('$e'.contains('123'), '<<$e>> contains "123"');
|
|
return;
|
|
}
|
|
Expect.fail('Expected assert to throw');
|
|
}
|
|
|
|
testMessageEffect3() {
|
|
var v = 1;
|
|
try {
|
|
// Message is evaluated to produce AssertionError argument on failing
|
|
// assert.
|
|
assert(confuse(() => ++v > 100), '${++v}');
|
|
} catch (e) {
|
|
Expect.equals(3, v);
|
|
Expect.isTrue('$e'.contains('3'), '<<$e>> contains "3"');
|
|
return;
|
|
}
|
|
Expect.fail('Expected assert to throw');
|
|
}
|
|
|
|
bool get assertionsEnabled {
|
|
bool b = false;
|
|
assert((b = true));
|
|
return b;
|
|
}
|
|
|
|
main() {
|
|
if (!assertionsEnabled) return;
|
|
|
|
test1();
|
|
test2();
|
|
testTypeErrors();
|
|
testMessageEffect1();
|
|
testMessageEffect2();
|
|
testMessageEffect3();
|
|
}
|