2014-10-02 15:27:01 -04:00
|
|
|
library test_lib.test_lib;
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-07-17 17:01:55 -04:00
|
|
|
import 'dart:async';
|
|
|
|
|
2015-02-27 17:50:06 -05:00
|
|
|
import 'package:guinness/guinness.dart' as gns;
|
2015-05-08 22:51:19 -04:00
|
|
|
export 'package:guinness/guinness.dart'
|
2015-06-02 15:33:08 -04:00
|
|
|
hide
|
|
|
|
Expect,
|
|
|
|
expect,
|
|
|
|
NotExpect,
|
|
|
|
beforeEach,
|
|
|
|
it,
|
|
|
|
iit,
|
|
|
|
xit,
|
|
|
|
SpyObject,
|
|
|
|
SpyFunction;
|
2015-03-13 06:10:11 -04:00
|
|
|
|
2015-02-27 17:50:06 -05:00
|
|
|
import 'package:angular2/src/dom/dom_adapter.dart' show DOM;
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
import 'package:angular2/src/reflection/reflection.dart';
|
|
|
|
import 'package:angular2/src/reflection/reflection_capabilities.dart';
|
|
|
|
|
|
|
|
import 'package:angular2/src/di/binding.dart' show bind;
|
|
|
|
import 'package:angular2/src/di/injector.dart' show Injector;
|
2015-07-23 21:00:19 -04:00
|
|
|
import 'package:angular2/src/core/exception_handler.dart' show ExceptionHandler;
|
2015-04-17 19:08:59 -04:00
|
|
|
import 'package:angular2/src/facade/collection.dart' show StringMapWrapper;
|
2015-03-13 06:10:11 -04:00
|
|
|
|
2015-07-17 17:01:55 -04:00
|
|
|
import 'test_injector.dart';
|
|
|
|
export 'test_injector.dart' show inject;
|
2015-03-13 06:10:11 -04:00
|
|
|
|
|
|
|
List _testBindings = [];
|
|
|
|
Injector _injector;
|
|
|
|
bool _isCurrentTestAsync;
|
|
|
|
bool _inIt = false;
|
|
|
|
|
|
|
|
class AsyncTestCompleter {
|
2015-05-05 15:59:54 -04:00
|
|
|
final _completer = new Completer();
|
2015-03-13 06:10:11 -04:00
|
|
|
|
2015-05-05 15:59:54 -04:00
|
|
|
void done() {
|
2015-03-13 06:10:11 -04:00
|
|
|
_completer.complete();
|
|
|
|
}
|
|
|
|
|
2015-05-05 15:59:54 -04:00
|
|
|
Future get future => _completer.future;
|
2015-03-13 06:10:11 -04:00
|
|
|
}
|
|
|
|
|
2015-05-05 15:59:54 -04:00
|
|
|
void testSetup() {
|
2015-03-13 06:10:11 -04:00
|
|
|
reflector.reflectionCapabilities = new ReflectionCapabilities();
|
|
|
|
// beforeEach configuration:
|
|
|
|
// - Priority 3: clear the bindings before each test,
|
|
|
|
// - Priority 2: collect the bindings before each test, see beforeEachBindings(),
|
|
|
|
// - Priority 1: create the test injector to be used in beforeEach() and it()
|
|
|
|
|
2015-05-08 22:51:19 -04:00
|
|
|
gns.beforeEach(() {
|
|
|
|
_testBindings.clear();
|
|
|
|
}, priority: 3);
|
2015-03-13 06:10:11 -04:00
|
|
|
|
|
|
|
var completerBinding = bind(AsyncTestCompleter).toFactory(() {
|
|
|
|
// Mark the test as async when an AsyncTestCompleter is injected in an it(),
|
|
|
|
if (!_inIt) throw 'AsyncTestCompleter can only be injected in an "it()"';
|
|
|
|
_isCurrentTestAsync = true;
|
|
|
|
return new AsyncTestCompleter();
|
|
|
|
});
|
|
|
|
|
2015-05-08 22:51:19 -04:00
|
|
|
gns.beforeEach(() {
|
|
|
|
_isCurrentTestAsync = false;
|
|
|
|
_testBindings.add(completerBinding);
|
|
|
|
_injector = createTestInjector(_testBindings);
|
|
|
|
}, priority: 1);
|
2015-03-13 06:10:11 -04:00
|
|
|
}
|
|
|
|
|
2014-09-30 14:56:33 -04:00
|
|
|
Expect expect(actual, [matcher]) {
|
|
|
|
final expect = new Expect(actual);
|
|
|
|
if (matcher != null) expect.to(matcher);
|
|
|
|
return expect;
|
|
|
|
}
|
|
|
|
|
2015-05-07 20:18:42 -04:00
|
|
|
const _u = const Object();
|
2015-04-23 12:13:42 -04:00
|
|
|
|
2015-07-23 21:00:19 -04:00
|
|
|
expectErrorMessage(actual, expectedMessage) {
|
|
|
|
expect(ExceptionHandler.exceptionToString(actual)).toContain(expectedMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
expectException(Function actual, expectedMessage) {
|
|
|
|
try {
|
|
|
|
actual();
|
|
|
|
} catch (e, s) {
|
|
|
|
expectErrorMessage(e, expectedMessage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-30 14:56:33 -04:00
|
|
|
class Expect extends gns.Expect {
|
|
|
|
Expect(actual) : super(actual);
|
|
|
|
|
2014-10-29 14:26:52 -04:00
|
|
|
NotExpect get not => new NotExpect(actual);
|
|
|
|
|
2015-03-13 19:47:22 -04:00
|
|
|
void toEqual(expected) => toHaveSameProps(expected);
|
2015-07-23 21:00:19 -04:00
|
|
|
void toContainError(message) => expectErrorMessage(this.actual, message);
|
2015-05-08 22:51:19 -04:00
|
|
|
void toThrowError([message = ""]) => toThrowWith(message: message);
|
2015-07-23 21:00:19 -04:00
|
|
|
void toThrowErrorWith(message) => expectException(this.actual, message);
|
2015-07-17 17:01:55 -04:00
|
|
|
void toBePromise() => gns.guinness.matchers.toBeTrue(actual is Future);
|
2015-08-04 19:50:31 -04:00
|
|
|
void toHaveCssClass(className) =>
|
|
|
|
gns.guinness.matchers.toBeTrue(DOM.hasClass(actual, className));
|
2014-11-25 18:16:53 -05:00
|
|
|
void toImplement(expected) => toBeA(expected);
|
2015-07-27 20:26:28 -04:00
|
|
|
void toBeNaN() =>
|
|
|
|
gns.guinness.matchers.toBeTrue(double.NAN.compareTo(actual) == 0);
|
2015-02-27 17:50:06 -05:00
|
|
|
void toHaveText(expected) => _expect(elementText(actual), expected);
|
2015-04-23 12:13:42 -04:00
|
|
|
void toHaveBeenCalledWith([a = _u, b = _u, c = _u, d = _u, e = _u, f = _u]) =>
|
2015-05-08 22:51:19 -04:00
|
|
|
_expect(_argsMatch(actual, a, b, c, d, e, f), true,
|
|
|
|
reason: 'method invoked with correct arguments');
|
2014-09-30 14:56:33 -04:00
|
|
|
Function get _expect => gns.guinness.matchers.expect;
|
2015-04-23 12:13:42 -04:00
|
|
|
|
|
|
|
// TODO(tbosch): move this hack into Guinness
|
|
|
|
_argsMatch(spyFn, [a0 = _u, a1 = _u, a2 = _u, a3 = _u, a4 = _u, a5 = _u]) {
|
|
|
|
var calls = spyFn.calls;
|
|
|
|
final toMatch = _takeDefined([a0, a1, a2, a3, a4, a5]);
|
|
|
|
if (calls.isEmpty) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
gns.SamePropsMatcher matcher = new gns.SamePropsMatcher(toMatch);
|
2015-05-08 22:51:19 -04:00
|
|
|
for (var i = 0; i < calls.length; i++) {
|
2015-04-23 12:13:42 -04:00
|
|
|
var call = calls[i];
|
|
|
|
// TODO: create a better error message, not just 'Expected: <true> Actual: <false>'.
|
|
|
|
// For hacking this is good:
|
|
|
|
// print(call.positionalArguments);
|
|
|
|
if (matcher.matches(call.positionalArguments, null)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
List _takeDefined(List iter) => iter.takeWhile((_) => _ != _u).toList();
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
2014-10-29 14:26:52 -04:00
|
|
|
class NotExpect extends gns.NotExpect {
|
|
|
|
NotExpect(actual) : super(actual);
|
|
|
|
|
2015-03-13 19:47:22 -04:00
|
|
|
void toEqual(expected) => toHaveSameProps(expected);
|
2015-07-17 17:01:55 -04:00
|
|
|
void toBePromise() => gns.guinness.matchers.toBeFalse(actual is Future);
|
2015-08-04 19:50:31 -04:00
|
|
|
void toHaveCssClass(className) =>
|
|
|
|
gns.guinness.matchers.toBeFalse(DOM.hasClass(actual, className));
|
2015-07-17 17:01:55 -04:00
|
|
|
void toBeNull() => gns.guinness.matchers.toBeFalse(actual == null);
|
2015-02-17 17:30:08 -05:00
|
|
|
Function get _expect => gns.guinness.matchers.expect;
|
2014-10-29 14:26:52 -04:00
|
|
|
}
|
|
|
|
|
2015-05-05 15:59:54 -04:00
|
|
|
void beforeEach(fn) {
|
2015-03-13 06:10:11 -04:00
|
|
|
if (fn is! FunctionWithParamTokens) fn = new FunctionWithParamTokens([], fn);
|
|
|
|
gns.beforeEach(() {
|
|
|
|
fn.execute(_injector);
|
|
|
|
});
|
2014-11-21 18:13:01 -05:00
|
|
|
}
|
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
/**
|
|
|
|
* Allows overriding default bindings defined in test_injector.js.
|
|
|
|
*
|
|
|
|
* The given function must return a list of DI bindings.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* beforeEachBindings(() => [
|
|
|
|
* bind(Compiler).toClass(MockCompiler),
|
|
|
|
* bind(SomeToken).toValue(myValue),
|
|
|
|
* ]);
|
|
|
|
*/
|
2015-05-05 15:59:54 -04:00
|
|
|
void beforeEachBindings(Function fn) {
|
2015-05-08 22:51:19 -04:00
|
|
|
gns.beforeEach(() {
|
|
|
|
var bindings = fn();
|
|
|
|
if (bindings != null) _testBindings.addAll(bindings);
|
|
|
|
}, priority: 2);
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
2015-05-05 15:59:54 -04:00
|
|
|
void _it(gnsFn, name, fn) {
|
2015-03-13 06:10:11 -04:00
|
|
|
if (fn is! FunctionWithParamTokens) fn = new FunctionWithParamTokens([], fn);
|
|
|
|
gnsFn(name, () {
|
|
|
|
_inIt = true;
|
|
|
|
fn.execute(_injector);
|
|
|
|
_inIt = false;
|
|
|
|
if (_isCurrentTestAsync) return _injector.get(AsyncTestCompleter).future;
|
|
|
|
});
|
2014-11-20 15:07:48 -05:00
|
|
|
}
|
|
|
|
|
2015-06-02 10:29:09 -04:00
|
|
|
void it(name, fn, [timeOut = null]) {
|
2015-03-13 06:10:11 -04:00
|
|
|
_it(gns.it, name, fn);
|
|
|
|
}
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-06-02 10:29:09 -04:00
|
|
|
void iit(name, fn, [timeOut = null]) {
|
2015-03-13 06:10:11 -04:00
|
|
|
_it(gns.iit, name, fn);
|
|
|
|
}
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-06-02 10:29:09 -04:00
|
|
|
void xit(name, fn, [timeOut = null]) {
|
2015-03-13 06:10:11 -04:00
|
|
|
_it(gns.xit, name, fn);
|
2015-02-17 17:30:08 -05:00
|
|
|
}
|
|
|
|
|
2015-04-17 19:08:59 -04:00
|
|
|
class SpyFunction extends gns.SpyFunction {
|
2015-05-08 22:51:19 -04:00
|
|
|
SpyFunction(String name) : super(name);
|
2015-04-17 19:08:59 -04:00
|
|
|
|
|
|
|
// TODO: vsavkin move to guinness
|
|
|
|
andReturn(value) {
|
|
|
|
return andCallFake(([a0, a1, a2, a3, a4, a5]) => value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-14 21:01:44 -04:00
|
|
|
class SpyObject extends gns.SpyObject {
|
2015-04-17 19:08:59 -04:00
|
|
|
final Map<String, SpyFunction> _spyFuncs = {};
|
|
|
|
|
2015-06-18 18:40:12 -04:00
|
|
|
SpyObject([arg]) {}
|
2015-04-17 19:08:59 -04:00
|
|
|
|
|
|
|
SpyFunction spy(String funcName) =>
|
2015-05-08 22:51:19 -04:00
|
|
|
_spyFuncs.putIfAbsent(funcName, () => new SpyFunction(funcName));
|
2015-04-17 19:08:59 -04:00
|
|
|
|
|
|
|
static stub([object = null, config = null, overrides = null]) {
|
|
|
|
if (object is! SpyObject) {
|
|
|
|
overrides = config;
|
|
|
|
config = object;
|
|
|
|
object = new SpyObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
var m = StringMapWrapper.merge(config, overrides);
|
2015-05-08 22:51:19 -04:00
|
|
|
StringMapWrapper.forEach(m, (value, key) {
|
2015-04-17 19:08:59 -04:00
|
|
|
object.spy(key).andReturn(value);
|
|
|
|
});
|
|
|
|
return object;
|
2015-04-14 21:01:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-27 17:50:06 -05:00
|
|
|
String elementText(n) {
|
|
|
|
hasNodes(n) {
|
|
|
|
var children = DOM.childNodes(n);
|
|
|
|
return children != null && children.length > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n is Iterable) {
|
|
|
|
return n.map((nn) => elementText(nn)).join("");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DOM.isCommentNode(n)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DOM.isElementNode(n) && DOM.tagName(n) == 'CONTENT') {
|
2015-03-19 06:35:48 -04:00
|
|
|
return elementText(DOM.getDistributedNodes(n));
|
2015-02-27 17:50:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (DOM.hasShadowRoot(n)) {
|
2015-03-19 06:35:48 -04:00
|
|
|
return elementText(DOM.childNodesAsList(DOM.getShadowRoot(n)));
|
2015-02-27 17:50:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hasNodes(n)) {
|
|
|
|
return elementText(DOM.childNodesAsList(n));
|
|
|
|
}
|
|
|
|
|
|
|
|
return DOM.getText(n);
|
|
|
|
}
|
2015-04-10 06:42:33 -04:00
|
|
|
|
2015-05-07 03:24:59 -04:00
|
|
|
bool isInInnerZone() => Zone.current['_innerZone'] == true;
|