2014-10-02 15:27:01 -04:00
|
|
|
library test_lib.test_lib;
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-02-27 17:50:06 -05:00
|
|
|
import 'package:guinness/guinness.dart' as gns;
|
2015-03-13 06:10:11 -04:00
|
|
|
export 'package:guinness/guinness.dart' hide Expect, expect, NotExpect, beforeEach, it, iit, xit;
|
2014-09-30 14:56:33 -04:00
|
|
|
import 'package:unittest/unittest.dart' hide expect;
|
2015-03-13 19:47:22 -04:00
|
|
|
|
2014-09-30 14:56:33 -04:00
|
|
|
import 'dart:async';
|
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;
|
|
|
|
|
|
|
|
import './test_injector.dart';
|
|
|
|
export './test_injector.dart' show inject;
|
|
|
|
|
2014-11-07 12:31:51 -05:00
|
|
|
bool IS_DARTIUM = true;
|
2015-03-01 16:17:36 -05:00
|
|
|
bool IS_NODEJS = false;
|
2014-11-07 12:31:51 -05:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
List _testBindings = [];
|
|
|
|
Injector _injector;
|
|
|
|
bool _isCurrentTestAsync;
|
|
|
|
bool _inIt = false;
|
|
|
|
|
|
|
|
class AsyncTestCompleter {
|
|
|
|
Completer _completer;
|
|
|
|
|
|
|
|
AsyncTestCompleter() {
|
|
|
|
_completer = new Completer();
|
|
|
|
}
|
|
|
|
|
|
|
|
done() {
|
|
|
|
_completer.complete();
|
|
|
|
}
|
|
|
|
|
|
|
|
get future => _completer.future;
|
|
|
|
}
|
|
|
|
|
|
|
|
testSetup() {
|
|
|
|
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()
|
|
|
|
|
|
|
|
gns.beforeEach(
|
|
|
|
() {
|
|
|
|
_testBindings.clear();
|
|
|
|
},
|
|
|
|
priority: 3
|
|
|
|
);
|
|
|
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
|
|
|
|
gns.beforeEach(
|
|
|
|
() {
|
|
|
|
_isCurrentTestAsync = false;
|
|
|
|
_testBindings.add(completerBinding);
|
|
|
|
_injector = createTestInjector(_testBindings);
|
|
|
|
},
|
|
|
|
priority: 1
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
void toThrowError([message=""]) => toThrowWith(message: message);
|
2014-10-10 15:44:56 -04:00
|
|
|
void toBePromise() => _expect(actual is Future, equals(true));
|
2014-11-25 18:16:53 -05:00
|
|
|
void toImplement(expected) => toBeA(expected);
|
2015-02-11 13:13:49 -05:00
|
|
|
void toBeNaN() => _expect(double.NAN.compareTo(actual) == 0, equals(true));
|
2015-02-27 17:50:06 -05:00
|
|
|
void toHaveText(expected) => _expect(elementText(actual), expected);
|
2014-09-30 14:56:33 -04:00
|
|
|
Function get _expect => gns.guinness.matchers.expect;
|
|
|
|
}
|
|
|
|
|
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-02-23 06:26:59 -05:00
|
|
|
void toBePromise() => _expect(actual is Future, equals(false));
|
2015-02-17 17:30:08 -05:00
|
|
|
Function get _expect => gns.guinness.matchers.expect;
|
2014-10-29 14:26:52 -04:00
|
|
|
}
|
|
|
|
|
2014-11-21 18:13:01 -05:00
|
|
|
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),
|
|
|
|
* ]);
|
|
|
|
*/
|
|
|
|
beforeEachBindings(fn) {
|
|
|
|
gns.beforeEach(
|
|
|
|
() {
|
|
|
|
var bindings = fn();
|
|
|
|
if (bindings != null) _testBindings.addAll(bindings);
|
|
|
|
},
|
|
|
|
priority: 2
|
|
|
|
);
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
_it(gnsFn, name, fn) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
it(name, fn) {
|
|
|
|
_it(gns.it, name, fn);
|
|
|
|
}
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
iit(name, fn) {
|
|
|
|
_it(gns.iit, name, fn);
|
|
|
|
}
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
xit(name, fn) {
|
|
|
|
_it(gns.xit, name, fn);
|
2015-02-17 17:30:08 -05: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') {
|
|
|
|
return elementText(n.getDistributedNodes());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DOM.hasShadowRoot(n)) {
|
|
|
|
return elementText(DOM.childNodesAsList(n.shadowRoot));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasNodes(n)) {
|
|
|
|
return elementText(DOM.childNodesAsList(n));
|
|
|
|
}
|
|
|
|
|
|
|
|
return DOM.getText(n);
|
|
|
|
}
|