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

Side by Side Diff: pkg/unittest/lib/unittest.dart

Issue 46883011: Fixed expect, protect methods to allow any set of arguments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: review nits Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/unittest/lib/src/numeric_matchers.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 * Support for writing Dart unit tests. 6 * Support for writing Dart unit tests.
7 * 7 *
8 * For information on installing and importing this library, see the 8 * For information on installing and importing this library, see the
9 * [unittest package on pub.dartlang.org] 9 * [unittest package on pub.dartlang.org]
10 * (http://pub.dartlang.org/packages/unittest). 10 * (http://pub.dartlang.org/packages/unittest).
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 if (minExpectedCalls > 0 && actualCalls < minExpectedCalls) return; 441 if (minExpectedCalls > 0 && actualCalls < minExpectedCalls) return;
442 if (isDone != null && !isDone()) return; 442 if (isDone != null && !isDone()) return;
443 443
444 // Mark this callback as complete and remove it from the testcase 444 // Mark this callback as complete and remove it from the testcase
445 // oustanding callback count; if that hits zero the testcase is done. 445 // oustanding callback count; if that hits zero the testcase is done.
446 complete = true; 446 complete = true;
447 testCase._markCallbackComplete(); 447 testCase._markCallbackComplete();
448 } 448 }
449 } 449 }
450 450
451 invoke0() { 451 /**
452 * Using [noSuchMethod] to handle the invocation of [call].
453 *
454 * This allows direct access to the arguments via [Invocation], which are
455 * passed to the original callback.
456 */
457 dynamic noSuchMethod(Invocation invocation) {
458 if (invocation.memberName != #call) return super.noSuchMethod(invocation);
459
452 return _guardAsync( 460 return _guardAsync(
453 () { 461 () {
454 if (shouldCallBack()) { 462 if (shouldCallBack()) {
455 return callback(); 463 return Function.apply(callback, invocation.positionalArguments,
464 invocation.namedArguments);
456 } 465 }
457 }, 466 },
458 after, testCase); 467 after, testCase);
459 } 468 }
460 469
461 invoke1(arg1) { 470 /**
462 return _guardAsync( 471 * Eliminates type warnings since this class does not directly expose the
463 () { 472 * [call] method -- causing compliants that it is not a valid [Function].
464 if (shouldCallBack()) { 473 */
465 return callback(arg1); 474 // TODO(kevmoo): consider implementing Function and flagging class with @proxy
466 } 475 Function get asFunction => (this as dynamic);
467 },
468 after, testCase);
469 }
470
471 invoke2(arg1, arg2) {
472 return _guardAsync(
473 () {
474 if (shouldCallBack()) {
475 return callback(arg1, arg2);
476 }
477 },
478 after, testCase);
479 }
480 } 476 }
481 477
482 /** 478 /**
483 * Indicate that [callback] is expected to be called a [count] number of times 479 * Indicate that [callback] is expected to be called a [count] number of times
484 * (by default 1). The unittest framework will wait for the callback to run the 480 * (by default 1).
481 *
482 * The unittest framework will wait for the callback to run the
485 * specified [count] times before it continues with the following test. Using 483 * specified [count] times before it continues with the following test. Using
486 * [expectAsync0] will also ensure that errors that occur within [callback] are 484 * [expectAsync] will also ensure that errors that occur within [callback] are
487 * tracked and reported. [callback] should take 0 positional arguments (named 485 * tracked and reported.
488 * arguments are not supported). [id] can be used to provide more 486 *
489 * descriptive error messages if the callback is called more often than 487 * [id] can be used to provide more descriptive error messages if the callback
490 * expected. [max] can be used to specify an upper bound on the number of 488 * is called more often than expected.
491 * calls; if this is exceeded the test will fail (or be marked as in error if 489 *
492 * it was already complete). A value of 0 for [max] (the default) will set 490 * [max] can be used to specify an upper bound on the number of calls; if this
493 * the upper bound to the same value as [count]; i.e. the callback should be 491 * is exceeded the test will fail (or be marked as in error if it was already
494 * called exactly [count] times. A value of -1 for [max] will mean no upper 492 * complete). A value of 0 for [max] (the default) will set the upper bound to
495 * bound. 493 * the same value as [count]; i.e. the callback should be called exactly [count]
494 * times. A value of -1 for [max] will mean no upper bound.
496 */ 495 */
497 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 496 Function expectAsync(Function callback,
497 {int count: 1, int max: 0, String id}) =>
498 new _SpreadArgsHelper(callback, count, max, null, id).asFunction;
499
500 /**
501 * *DEPRECATED*: use [expectAsync] instead.
502 **/
503 @deprecated
498 Function expectAsync0(Function callback, 504 Function expectAsync0(Function callback,
499 {int count: 1, int max: 0, String id}) { 505 {int count: 1, int max: 0, String id}) =>
500 return new _SpreadArgsHelper(callback, count, max, null, id).invoke0; 506 expectAsync(callback, count: count, max: max, id: id);
501 }
502 507
503 /** Like [expectAsync0] but [callback] should take 1 positional argument. */ 508 /**
504 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 509 * *DEPRECATED*: use [expectAsync] instead.
510 **/
511 @deprecated
505 Function expectAsync1(Function callback, 512 Function expectAsync1(Function callback,
506 {int count: 1, int max: 0, String id}) { 513 {int count: 1, int max: 0, String id}) =>
507 return new _SpreadArgsHelper(callback, count, max, null, id).invoke1; 514 expectAsync(callback, count: count, max: max, id: id);
508 }
509 515
510 /** Like [expectAsync0] but [callback] should take 2 positional arguments. */ 516 /**
511 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 517 * *DEPRECATED*: use [expectAsync] instead.
518 **/
519 @deprecated
512 Function expectAsync2(Function callback, 520 Function expectAsync2(Function callback,
513 {int count: 1, int max: 0, String id}) { 521 {int count: 1, int max: 0, String id}) =>
514 return new _SpreadArgsHelper(callback, count, max, null, id).invoke2; 522 expectAsync(callback, count: count, max: max, id: id);
515 }
516 523
517 /** 524 /**
518 * Indicate that [callback] is expected to be called until [isDone] returns 525 * Indicate that [callback] is expected to be called until [isDone] returns
519 * true. The unittest framework check [isDone] after each callback and only 526 * true. The unittest framework check [isDone] after each callback and only
520 * when it returns true will it continue with the following test. Using 527 * when it returns true will it continue with the following test.
521 * [expectAsyncUntil0] will also ensure that errors that occur within 528 *
522 * [callback] are tracked and reported. [callback] should take 0 positional 529 * Using [expectAsyncUntil] will also ensure that errors that occur within
523 * arguments (named arguments are not supported). [id] can be used to 530 * [callback] are tracked and reported.
524 * identify the callback in error messages (for example if it is called 531 *
525 * after the test case is complete). 532 * [id] can be used to identify the callback in error messages (for example if
533 * it is called after the test case is complete).
526 */ 534 */
527 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 535 Function expectAsyncUntil(Function callback, Function isDone, {String id}) =>
528 Function expectAsyncUntil0(Function callback, Function isDone, {String id}) { 536 new _SpreadArgsHelper(callback, 0, -1, isDone, id).asFunction;
529 return new _SpreadArgsHelper(callback, 0, -1, isDone, id).invoke0;
530 }
531 537
532 /** 538 /**
533 * Like [expectAsyncUntil0] but [callback] should take 1 positional argument. 539 * *DEPRECATED*: Use [expectAsyncUntil] instead.
534 */ 540 */
535 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 541 @deprecated
536 Function expectAsyncUntil1(Function callback, Function isDone, {String id}) { 542 Function expectAsyncUntil0(Function callback, Function isDone, {String id}) =>
537 return new _SpreadArgsHelper(callback, 0, -1, isDone, id).invoke1; 543 expectAsyncUntil(callback, isDone, id: id);
538 }
539 544
540 /** 545 /**
541 * Like [expectAsyncUntil0] but [callback] should take 2 positional arguments. 546 * *DEPRECATED*: Use [expectAsyncUntil] instead.
542 */ 547 */
543 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 548 @deprecated
544 Function expectAsyncUntil2(Function callback, Function isDone, {String id}) { 549 Function expectAsyncUntil1(Function callback, Function isDone, {String id}) =>
545 return new _SpreadArgsHelper(callback, 0, -1, isDone, id).invoke2; 550 expectAsyncUntil(callback, isDone, id: id);
546 } 551
552 /**
553 * *DEPRECATED*: Use [expectAsyncUntil] instead.
554 */
555 @deprecated
556 Function expectAsyncUntil2(Function callback, Function isDone, {String id}) =>
557 expectAsyncUntil(callback, isDone, id: id);
547 558
548 /** 559 /**
549 * Wraps the [callback] in a new function and returns that function. The new 560 * Wraps the [callback] in a new function and returns that function. The new
550 * function will be able to handle exceptions by directing them to the correct 561 * function will be able to handle exceptions by directing them to the correct
551 * test. This is thus similar to expectAsync0. Use it to wrap any callbacks that 562 * test. This is thus similar to [expectAsync]. Use it to wrap any callbacks
552 * might optionally be called but may never be called during the test. 563 * that might optionally be called but may never be called during the test.
553 * [callback] should take 0 positional arguments (named arguments are not 564 *
554 * supported). [id] can be used to identify the callback in error 565 * [id] can be used to identify the callback in error messages (for example if
555 * messages (for example if it is called after the test case is complete). 566 * it is called after the test case is complete).
556 */ 567 */
557 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 568 Function protectAsync(Function callback, {String id}) =>
558 Function protectAsync0(Function callback, {String id}) { 569 new _SpreadArgsHelper(callback, 0, -1, null, id).asFunction;
559 return new _SpreadArgsHelper(callback, 0, -1, null, id).invoke0;
560 }
561 570
562 /** 571 /**
563 * Like [protectAsync0] but [callback] should take 1 positional argument. 572 * *DEPRECATED*: use [protectAsync] instead.
564 */ 573 **/
565 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 574 @deprecated
566 Function protectAsync1(Function callback, {String id}) { 575 Function protectAsync0(Function callback, {String id}) =>
567 return new _SpreadArgsHelper(callback, 0, -1, null, id).invoke1; 576 protectAsync(callback, id: id);
568 }
569 577
570 /** 578 /**
571 * Like [protectAsync0] but [callback] should take 2 positional arguments. 579 * *DEPRECATED*: use [protectAsync] instead.
572 */ 580 **/
573 // TODO(sigmund): deprecate this API when issue 2706 is fixed. 581 @deprecated
574 Function protectAsync2(Function callback, {String id}) { 582 Function protectAsync1(Function callback, {String id}) =>
575 return new _SpreadArgsHelper(callback, 0, -1, null, id).invoke2; 583 protectAsync(callback, id: id);
576 } 584
585 /**
586 * *DEPRECATED*: use [protectAsync] instead.
587 **/
588 @deprecated
589 Function protectAsync2(Function callback, {String id}) =>
590 protectAsync(callback, id: id);
577 591
578 /** 592 /**
579 * Creates a new named group of tests. Calls to group() or test() within the 593 * Creates a new named group of tests. Calls to group() or test() within the
580 * body of the function passed to this will inherit this group's description. 594 * body of the function passed to this will inherit this group's description.
581 */ 595 */
582 void group(String description, void body()) { 596 void group(String description, void body()) {
583 ensureInitialized(); 597 ensureInitialized();
584 _currentContext = new _GroupContext(_currentContext, description); 598 _currentContext = new _GroupContext(_currentContext, description);
585 try { 599 try {
586 body(); 600 body();
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 886
873 if (!filterStacks) return trace; 887 if (!filterStacks) return trace;
874 888
875 // Format the stack trace by removing everything above TestCase._runTest, 889 // Format the stack trace by removing everything above TestCase._runTest,
876 // which is usually going to be irrelevant. Also fold together unittest and 890 // which is usually going to be irrelevant. Also fold together unittest and
877 // core library calls so only the function the user called is visible. 891 // core library calls so only the function the user called is visible.
878 return new Trace(trace.frames.takeWhile((frame) { 892 return new Trace(trace.frames.takeWhile((frame) {
879 return frame.package != 'unittest' || frame.member != 'TestCase._runTest'; 893 return frame.package != 'unittest' || frame.member != 'TestCase._runTest';
880 })).terse.foldFrames((frame) => frame.package == 'unittest' || frame.isCore); 894 })).terse.foldFrames((frame) => frame.package == 'unittest' || frame.isCore);
881 } 895 }
OLDNEW
« no previous file with comments | « pkg/unittest/lib/src/numeric_matchers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698