2015-07-15 20:18:06 -04:00
|
|
|
library angular2_testing.angular2_testing;
|
|
|
|
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
|
|
import 'package:angular2/angular2.dart';
|
|
|
|
import 'package:angular2/src/core/di/metadata.dart' show InjectMetadata;
|
2016-04-14 17:52:35 -04:00
|
|
|
import 'package:angular2/src/core/di/reflective_exceptions.dart' show NoAnnotationError;
|
2015-07-15 20:18:06 -04:00
|
|
|
import 'package:angular2/src/core/reflection/reflection.dart';
|
|
|
|
import 'package:angular2/src/core/reflection/reflection_capabilities.dart';
|
|
|
|
import 'package:angular2/src/testing/test_injector.dart';
|
|
|
|
export 'package:angular2/src/testing/test_component_builder.dart';
|
|
|
|
export 'package:angular2/src/testing/test_injector.dart' show inject;
|
2015-12-15 19:38:27 -05:00
|
|
|
import 'package:angular2/platform/testing/browser.dart';
|
2015-07-15 20:18:06 -04:00
|
|
|
|
|
|
|
/// One time initialization that must be done for Angular2 component
|
|
|
|
/// tests. Call before any test methods.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// main() {
|
|
|
|
/// initAngularTests();
|
|
|
|
/// group(...);
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
void initAngularTests() {
|
|
|
|
reflector.reflectionCapabilities = new ReflectionCapabilities();
|
2015-12-15 19:38:27 -05:00
|
|
|
setBaseTestProviders(TEST_BROWSER_PLATFORM_PROVIDERS, TEST_BROWSER_APPLICATION_PROVIDERS);
|
2015-07-15 20:18:06 -04:00
|
|
|
}
|
|
|
|
|
2015-12-08 22:03:21 -05:00
|
|
|
void _addTestInjectorTearDown() {
|
|
|
|
// Multiple resets are harmless.
|
|
|
|
tearDown(() {
|
|
|
|
_testInjector.reset();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-07-15 20:18:06 -04:00
|
|
|
/// Allows overriding default bindings defined in test_injector.dart.
|
|
|
|
///
|
|
|
|
/// The given function must return a list of DI providers.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// setUpProviders(() => [
|
|
|
|
/// provide(Compiler, useClass: MockCompiler),
|
|
|
|
/// provide(SomeToken, useValue: myValue),
|
|
|
|
/// ]);
|
|
|
|
/// ```
|
|
|
|
void setUpProviders(Iterable<Provider> providerFactory()) {
|
|
|
|
setUp(() {
|
2015-12-08 22:03:21 -05:00
|
|
|
try {
|
|
|
|
_testInjector.addProviders(providerFactory());
|
2015-12-02 13:35:51 -05:00
|
|
|
} catch (e) {
|
2015-07-15 20:18:06 -04:00
|
|
|
throw 'setUpProviders was called after the injector had '
|
|
|
|
'been used in a setUp or test block. This invalidates the '
|
|
|
|
'test injector';
|
|
|
|
}
|
|
|
|
});
|
2015-12-08 22:03:21 -05:00
|
|
|
|
|
|
|
_addTestInjectorTearDown();
|
2015-07-15 20:18:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dynamic _runInjectableFunction(Function fn) {
|
|
|
|
var params = reflector.parameters(fn);
|
|
|
|
List<dynamic> tokens = <dynamic>[];
|
|
|
|
for (var param in params) {
|
|
|
|
var token = null;
|
|
|
|
for (var paramMetadata in param) {
|
|
|
|
if (paramMetadata is Type) {
|
|
|
|
token = paramMetadata;
|
|
|
|
} else if (paramMetadata is InjectMetadata) {
|
|
|
|
token = paramMetadata.token;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (token == null) {
|
|
|
|
throw new NoAnnotationError(fn, params);
|
|
|
|
}
|
|
|
|
tokens.add(token);
|
|
|
|
}
|
|
|
|
|
2016-04-26 16:06:50 -04:00
|
|
|
return _testInjector.execute(tokens, fn);
|
2015-07-15 20:18:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Use the test injector to get bindings and run a function.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// ngSetUp((SomeToken token) {
|
|
|
|
/// token.init();
|
|
|
|
/// });
|
|
|
|
/// ```
|
|
|
|
void ngSetUp(Function fn) {
|
|
|
|
setUp(() async {
|
|
|
|
await _runInjectableFunction(fn);
|
|
|
|
});
|
2015-12-08 22:03:21 -05:00
|
|
|
|
|
|
|
_addTestInjectorTearDown();
|
2015-07-15 20:18:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a test which can use the test injector.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// ngTest('description', (SomeToken token) {
|
|
|
|
/// expect(token, equals('expected'));
|
|
|
|
/// });
|
|
|
|
/// ```
|
|
|
|
void ngTest(String description, Function fn,
|
|
|
|
{String testOn, Timeout timeout, skip, Map<String, dynamic> onPlatform}) {
|
|
|
|
test(description, () async {
|
|
|
|
await _runInjectableFunction(fn);
|
|
|
|
}, testOn: testOn, timeout: timeout, skip: skip, onPlatform: onPlatform);
|
2015-12-03 15:00:10 -05:00
|
|
|
|
2015-12-08 22:03:21 -05:00
|
|
|
_addTestInjectorTearDown();
|
2015-07-15 20:18:06 -04:00
|
|
|
}
|
|
|
|
|
2015-12-08 22:03:21 -05:00
|
|
|
final TestInjector _testInjector = getTestInjector();
|