Index: pkg/unittest/lib/unittest.dart |
diff --git a/pkg/unittest/lib/unittest.dart b/pkg/unittest/lib/unittest.dart |
index c13aa9dc5be0bc30557986d3740a3b7d4bc29557..81155702678cef3cae872854e64c71413a309c78 100644 |
--- a/pkg/unittest/lib/unittest.dart |
+++ b/pkg/unittest/lib/unittest.dart |
@@ -448,132 +448,147 @@ class _SpreadArgsHelper { |
} |
} |
- invoke0() { |
- return _guardAsync( |
- () { |
- if (shouldCallBack()) { |
- return callback(); |
- } |
- }, |
- after, testCase); |
- } |
+ /** |
+ * Using [noSuchMethod] to handle the invocation of [call]. |
+ * |
+ * This allows direct access to the arguments via [Invocation], which are |
+ * passed to the original callback. |
+ */ |
+ dynamic noSuchMethod(Invocation invocation) { |
+ if(invocation.memberName != #call) return super.noSuchMethod(invocation); |
Siggi Cherem (dart-lang)
2013/10/29 20:12:16
nit: missing space ("if (")
kevmoo-old
2013/10/29 20:40:25
Done.
|
- invoke1(arg1) { |
return _guardAsync( |
() { |
if (shouldCallBack()) { |
- return callback(arg1); |
+ return Function.apply(callback, invocation.positionalArguments, invocation.namedArguments); |
Siggi Cherem (dart-lang)
2013/10/29 20:12:16
nit: 80 column.
kevmoo-old
2013/10/29 20:40:25
Done.
|
} |
}, |
after, testCase); |
} |
- invoke2(arg1, arg2) { |
- return _guardAsync( |
- () { |
- if (shouldCallBack()) { |
- return callback(arg1, arg2); |
- } |
- }, |
- after, testCase); |
+ /** |
+ * Eliminates type warnings since this class does not directly expose the |
+ * [call] method -- causing compliants that it is not a valid [Function]. |
+ */ |
+ Function get asFunction { |
Siggi Cherem (dart-lang)
2013/10/29 20:12:16
How about add 'implements Function' on the top ins
kevmoo-old
2013/10/29 20:40:25
Then we get warnings about not implementing 'call'
|
+ dynamic func = this; |
+ return func; |
} |
} |
/** |
* Indicate that [callback] is expected to be called a [count] number of times |
- * (by default 1). The unittest framework will wait for the callback to run the |
+ * (by default 1). |
+ * |
+ * The unittest framework will wait for the callback to run the |
* specified [count] times before it continues with the following test. Using |
- * [expectAsync0] will also ensure that errors that occur within [callback] are |
- * tracked and reported. [callback] should take 0 positional arguments (named |
- * arguments are not supported). [id] can be used to provide more |
- * descriptive error messages if the callback is called more often than |
- * expected. [max] can be used to specify an upper bound on the number of |
- * calls; if this is exceeded the test will fail (or be marked as in error if |
- * it was already complete). A value of 0 for [max] (the default) will set |
- * the upper bound to the same value as [count]; i.e. the callback should be |
- * called exactly [count] times. A value of -1 for [max] will mean no upper |
- * bound. |
+ * [expectAsync] will also ensure that errors that occur within [callback] are |
+ * tracked and reported. |
+ * |
+ * [id] can be used to provide more descriptive error messages if the callback |
+ * is called more often than expected. |
+ * |
+ * [max] can be used to specify an upper bound on the number of calls; if this |
+ * is exceeded the test will fail (or be marked as in error if it was already |
+ * complete). A value of 0 for [max] (the default) will set the upper bound to |
+ * the same value as [count]; i.e. the callback should be called exactly [count] |
+ * times. A value of -1 for [max] will mean no upper bound. |
*/ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
+Function expectAsync(Function callback, |
+ {int count: 1, int max: 0, String id}) => |
+ new _SpreadArgsHelper(callback, count, max, null, id).asFunction; |
+ |
+/** |
+ * *DEPRECATED*: use [expectAsync] instead. |
+ **/ |
+@deprecated |
Function expectAsync0(Function callback, |
- {int count: 1, int max: 0, String id}) { |
- return new _SpreadArgsHelper(callback, count, max, null, id).invoke0; |
-} |
+ {int count: 1, int max: 0, String id}) => |
+ expectAsync(callback, count: count, max: max, id: id); |
-/** Like [expectAsync0] but [callback] should take 1 positional argument. */ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
+/** |
+ * *DEPRECATED*: use [expectAsync] instead. |
+ **/ |
+@deprecated |
Function expectAsync1(Function callback, |
- {int count: 1, int max: 0, String id}) { |
- return new _SpreadArgsHelper(callback, count, max, null, id).invoke1; |
-} |
+ {int count: 1, int max: 0, String id}) => |
+ expectAsync(callback, count: count, max: max, id: id); |
-/** Like [expectAsync0] but [callback] should take 2 positional arguments. */ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
+/** |
+ * *DEPRECATED*: use [expectAsync] instead. |
+ **/ |
+@deprecated |
Function expectAsync2(Function callback, |
- {int count: 1, int max: 0, String id}) { |
- return new _SpreadArgsHelper(callback, count, max, null, id).invoke2; |
-} |
+ {int count: 1, int max: 0, String id}) => |
+ expectAsync(callback, count: count, max: max, id: id); |
/** |
* Indicate that [callback] is expected to be called until [isDone] returns |
* true. The unittest framework check [isDone] after each callback and only |
- * when it returns true will it continue with the following test. Using |
- * [expectAsyncUntil0] will also ensure that errors that occur within |
- * [callback] are tracked and reported. [callback] should take 0 positional |
- * arguments (named arguments are not supported). [id] can be used to |
- * identify the callback in error messages (for example if it is called |
- * after the test case is complete). |
+ * when it returns true will it continue with the following test. |
+ * |
+ * Using [expectAsyncUntil] will also ensure that errors that occur within |
+ * [callback] are tracked and reported. |
+ * |
+ * [id] can be used to identify the callback in error messages (for example if |
+ * it is called after the test case is complete). |
*/ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
-Function expectAsyncUntil0(Function callback, Function isDone, {String id}) { |
- return new _SpreadArgsHelper(callback, 0, -1, isDone, id).invoke0; |
-} |
+Function expectAsyncUntil(Function callback, Function isDone, {String id}) => |
+ new _SpreadArgsHelper(callback, 0, -1, isDone, id).asFunction; |
/** |
- * Like [expectAsyncUntil0] but [callback] should take 1 positional argument. |
+ * *DEPRECATED*: Use [expectAsyncUntil] instead. |
*/ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
-Function expectAsyncUntil1(Function callback, Function isDone, {String id}) { |
- return new _SpreadArgsHelper(callback, 0, -1, isDone, id).invoke1; |
-} |
+@deprecated |
+Function expectAsyncUntil0(Function callback, Function isDone, {String id}) => |
+ expectAsyncUntil(callback, isDone, id: id); |
/** |
- * Like [expectAsyncUntil0] but [callback] should take 2 positional arguments. |
+ * *DEPRECATED*: Use [expectAsyncUntil] instead. |
*/ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
-Function expectAsyncUntil2(Function callback, Function isDone, {String id}) { |
- return new _SpreadArgsHelper(callback, 0, -1, isDone, id).invoke2; |
-} |
+@deprecated |
+Function expectAsyncUntil1(Function callback, Function isDone, {String id}) => |
+ expectAsyncUntil(callback, isDone, id: id); |
+ |
+/** |
+ * *DEPRECATED*: Use [expectAsyncUntil] instead. |
+ */ |
+@deprecated |
+Function expectAsyncUntil2(Function callback, Function isDone, {String id}) => |
+ expectAsyncUntil(callback, isDone, id: id); |
/** |
* Wraps the [callback] in a new function and returns that function. The new |
* function will be able to handle exceptions by directing them to the correct |
- * test. This is thus similar to expectAsync0. Use it to wrap any callbacks that |
- * might optionally be called but may never be called during the test. |
- * [callback] should take 0 positional arguments (named arguments are not |
- * supported). [id] can be used to identify the callback in error |
- * messages (for example if it is called after the test case is complete). |
+ * test. This is thus similar to [expectAsync]. Use it to wrap any callbacks |
+ * that might optionally be called but may never be called during the test. |
+ * |
+ * [id] can be used to identify the callback in error messages (for example if |
+ * it is called after the test case is complete). |
*/ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
-Function protectAsync0(Function callback, {String id}) { |
- return new _SpreadArgsHelper(callback, 0, -1, null, id).invoke0; |
-} |
+Function protectAsync(Function callback, {String id}) => |
+ new _SpreadArgsHelper(callback, 0, -1, null, id).asFunction; |
/** |
- * Like [protectAsync0] but [callback] should take 1 positional argument. |
- */ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
-Function protectAsync1(Function callback, {String id}) { |
- return new _SpreadArgsHelper(callback, 0, -1, null, id).invoke1; |
-} |
+ * *DEPRECATED*: use [protectAsync] instead. |
+ **/ |
+@deprecated |
+Function protectAsync0(Function callback, {String id}) => |
+ protectAsync(callback, id: id); |
/** |
- * Like [protectAsync0] but [callback] should take 2 positional arguments. |
- */ |
-// TODO(sigmund): deprecate this API when issue 2706 is fixed. |
-Function protectAsync2(Function callback, {String id}) { |
- return new _SpreadArgsHelper(callback, 0, -1, null, id).invoke2; |
-} |
+ * *DEPRECATED*: use [protectAsync] instead. |
+ **/ |
+@deprecated |
+Function protectAsync1(Function callback, {String id}) => |
+ protectAsync(callback, id: id); |
+ |
+/** |
+ * *DEPRECATED*: use [protectAsync] instead. |
+ **/ |
+@deprecated |
+Function protectAsync2(Function callback, {String id}) => |
+ protectAsync(callback, id: id); |
/** |
* Creates a new named group of tests. Calls to group() or test() within the |