2014-10-02 15:27:01 -04:00
|
|
|
library test_lib.test_lib;
|
2014-09-30 14:56:33 -04:00
|
|
|
|
|
|
|
import 'package:guinness/guinness_html.dart' as gns;
|
|
|
|
export 'package:guinness/guinness_html.dart';
|
|
|
|
import 'package:unittest/unittest.dart' hide expect;
|
|
|
|
import 'dart:mirrors';
|
|
|
|
import 'dart:async';
|
2015-02-05 16:08:05 -05:00
|
|
|
import 'package:angular2/src/reflection/reflection.dart';
|
|
|
|
import 'package:angular2/src/reflection/reflection_capabilities.dart';
|
2015-02-17 17:30:08 -05:00
|
|
|
import 'package:collection/equality.dart';
|
2014-09-30 14:56:33 -04:00
|
|
|
|
2014-11-07 12:31:51 -05:00
|
|
|
bool IS_DARTIUM = true;
|
|
|
|
|
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-02-17 17:30:08 -05:00
|
|
|
// TODO(tbosch) change back when https://github.com/vsavkin/guinness/issues/41 is fixed
|
|
|
|
// void toEqual(expected) => toHaveSameProps(expected);
|
|
|
|
void toEqual(expected) => _expect(actual, new FixedSamePropsMatcher(expected));
|
2014-10-20 15:17:06 -04:00
|
|
|
void toThrowError([message=""]) => this.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));
|
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-02-17 17:30:08 -05:00
|
|
|
// TODO(tbosch) change back when https://github.com/vsavkin/guinness/issues/41 is fixed
|
|
|
|
// void toEqual(expected) => toHaveSameProps(expected);
|
|
|
|
void toEqual(expected) => _expect(actual, isNot(new FixedSamePropsMatcher(expected)));
|
|
|
|
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-01-08 12:11:33 -05:00
|
|
|
gns.guinnessEnableHtmlMatchers();
|
2014-11-21 18:13:01 -05:00
|
|
|
gns.beforeEach(_enableReflection(fn));
|
|
|
|
}
|
|
|
|
|
2014-09-30 14:56:33 -04:00
|
|
|
it(name, fn) {
|
2014-11-20 15:07:48 -05:00
|
|
|
gns.it(name, _enableReflection(_handleAsync(fn)));
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
iit(name, fn) {
|
2014-11-20 15:07:48 -05:00
|
|
|
gns.iit(name, _enableReflection(_handleAsync(fn)));
|
|
|
|
}
|
|
|
|
|
|
|
|
_enableReflection(fn) {
|
|
|
|
return () {
|
|
|
|
reflector.reflectionCapabilities = new ReflectionCapabilities();
|
|
|
|
return fn();
|
|
|
|
};
|
2014-09-30 14:56:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
_handleAsync(fn) {
|
|
|
|
ClosureMirror cm = reflect(fn);
|
|
|
|
MethodMirror mm = cm.function;
|
|
|
|
|
|
|
|
var completer = new Completer();
|
|
|
|
|
|
|
|
if (mm.parameters.length == 1) {
|
|
|
|
return () {
|
|
|
|
cm.apply([completer.complete]);
|
|
|
|
return completer.future;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return fn;
|
2015-02-17 17:30:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(tbosch): remove when https://github.com/vsavkin/guinness/issues/41
|
|
|
|
// is fixed
|
|
|
|
class FixedSamePropsMatcher extends Matcher {
|
|
|
|
final Object _expected;
|
|
|
|
|
|
|
|
const FixedSamePropsMatcher(this._expected);
|
|
|
|
|
|
|
|
bool matches(actual, Map matchState) {
|
|
|
|
return compare(toData(_expected), toData(actual));
|
|
|
|
}
|
|
|
|
|
|
|
|
Description describeMismatch(item, Description mismatchDescription,
|
|
|
|
Map matchState, bool verbose) =>
|
|
|
|
mismatchDescription.add('is equal to ${toData(item)}. Expected: ${toData(_expected)}');
|
|
|
|
|
|
|
|
Description describe(Description description) =>
|
|
|
|
description.add('has different properties');
|
|
|
|
|
|
|
|
toData(obj) => new _FixedObjToData().call(obj);
|
|
|
|
compare(d1, d2) => new DeepCollectionEquality().equals(d1, d2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(tbosch): remove when https://github.com/vsavkin/guinness/issues/41
|
|
|
|
// is fixed
|
|
|
|
class _FixedObjToData {
|
|
|
|
final visitedObjects = new Set();
|
|
|
|
|
|
|
|
call(obj) {
|
|
|
|
if (visitedObjects.contains(obj)) return null;
|
|
|
|
visitedObjects.add(obj);
|
|
|
|
|
|
|
|
if (obj is num || obj is String || obj is bool) return obj;
|
|
|
|
if (obj is Iterable) return obj.map(call).toList();
|
|
|
|
if (obj is Map) return mapToData(obj);
|
|
|
|
return toDataUsingReflection(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
mapToData(obj) {
|
|
|
|
var res = {};
|
|
|
|
obj.forEach((k,v) {
|
|
|
|
res[call(k)] = call(v);
|
|
|
|
});
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
toDataUsingReflection(obj) {
|
|
|
|
final clazz = reflectClass(obj.runtimeType);
|
|
|
|
final instance = reflect(obj);
|
|
|
|
|
|
|
|
return clazz.declarations.values.fold({}, (map, decl) {
|
|
|
|
if (decl is VariableMirror && !decl.isPrivate && !decl.isStatic) {
|
|
|
|
final field = instance.getField(decl.simpleName);
|
|
|
|
final name = MirrorSystem.getName(decl.simpleName);
|
|
|
|
map[name] = call(field.reflectee);
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
});
|
|
|
|
}
|
2014-12-05 21:30:45 -05:00
|
|
|
}
|