| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- /**
- * @license Angular v8.1.0
- * (c) 2010-2019 Google LLC. https://angular.io/
- * License: MIT
- */
- import { __extends, __decorate, __param, __metadata } from 'tslib';
- import { Injectable, Inject, ɵstringify, NgModule, Directive, Component, Pipe, createPlatformFactory, COMPILER_OPTIONS, Injector, CompilerFactory } from '@angular/core';
- import { TestComponentRenderer, ɵMetadataOverrider, ɵTestingCompilerFactory } from '@angular/core/testing';
- import { ɵplatformCoreDynamic, ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS } from '@angular/platform-browser-dynamic';
- import { BrowserTestingModule } from '@angular/platform-browser/testing';
- import { DOCUMENT } from '@angular/common';
- import { ɵgetDOM } from '@angular/platform-browser';
- import { CompileReflector, PipeResolver, DirectiveResolver, NgModuleResolver, ERROR_COMPONENT_TYPE } from '@angular/compiler';
- import { MockPipeResolver, MockDirectiveResolver, MockNgModuleResolver } from '@angular/compiler/testing';
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * A DOM based implementation of the TestComponentRenderer.
- */
- var DOMTestComponentRenderer = /** @class */ (function (_super) {
- __extends(DOMTestComponentRenderer, _super);
- function DOMTestComponentRenderer(_doc) {
- var _this = _super.call(this) || this;
- _this._doc = _doc;
- return _this;
- }
- DOMTestComponentRenderer.prototype.insertRootElement = function (rootElId) {
- var rootEl = ɵgetDOM().firstChild(ɵgetDOM().content(ɵgetDOM().createTemplate("<div id=\"" + rootElId + "\"></div>")));
- // TODO(juliemr): can/should this be optional?
- var oldRoots = ɵgetDOM().querySelectorAll(this._doc, '[id^=root]');
- for (var i = 0; i < oldRoots.length; i++) {
- ɵgetDOM().remove(oldRoots[i]);
- }
- ɵgetDOM().appendChild(this._doc.body, rootEl);
- };
- DOMTestComponentRenderer = __decorate([
- Injectable(),
- __param(0, Inject(DOCUMENT)),
- __metadata("design:paramtypes", [Object])
- ], DOMTestComponentRenderer);
- return DOMTestComponentRenderer;
- }(TestComponentRenderer));
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- var COMPILER_PROVIDERS = [
- { provide: MockPipeResolver, deps: [CompileReflector] },
- { provide: PipeResolver, useExisting: MockPipeResolver },
- { provide: MockDirectiveResolver, deps: [CompileReflector] },
- { provide: DirectiveResolver, useExisting: MockDirectiveResolver },
- { provide: MockNgModuleResolver, deps: [CompileReflector] },
- { provide: NgModuleResolver, useExisting: MockNgModuleResolver },
- ];
- var TestingCompilerFactoryImpl = /** @class */ (function () {
- function TestingCompilerFactoryImpl(_injector, _compilerFactory) {
- this._injector = _injector;
- this._compilerFactory = _compilerFactory;
- }
- TestingCompilerFactoryImpl.prototype.createTestingCompiler = function (options) {
- var compiler = this._compilerFactory.createCompiler(options);
- return new TestingCompilerImpl(compiler, compiler.injector.get(MockDirectiveResolver), compiler.injector.get(MockPipeResolver), compiler.injector.get(MockNgModuleResolver));
- };
- return TestingCompilerFactoryImpl;
- }());
- var TestingCompilerImpl = /** @class */ (function () {
- function TestingCompilerImpl(_compiler, _directiveResolver, _pipeResolver, _moduleResolver) {
- this._compiler = _compiler;
- this._directiveResolver = _directiveResolver;
- this._pipeResolver = _pipeResolver;
- this._moduleResolver = _moduleResolver;
- this._overrider = new ɵMetadataOverrider();
- }
- Object.defineProperty(TestingCompilerImpl.prototype, "injector", {
- get: function () { return this._compiler.injector; },
- enumerable: true,
- configurable: true
- });
- TestingCompilerImpl.prototype.compileModuleSync = function (moduleType) {
- return this._compiler.compileModuleSync(moduleType);
- };
- TestingCompilerImpl.prototype.compileModuleAsync = function (moduleType) {
- return this._compiler.compileModuleAsync(moduleType);
- };
- TestingCompilerImpl.prototype.compileModuleAndAllComponentsSync = function (moduleType) {
- return this._compiler.compileModuleAndAllComponentsSync(moduleType);
- };
- TestingCompilerImpl.prototype.compileModuleAndAllComponentsAsync = function (moduleType) {
- return this._compiler.compileModuleAndAllComponentsAsync(moduleType);
- };
- TestingCompilerImpl.prototype.getComponentFactory = function (component) {
- return this._compiler.getComponentFactory(component);
- };
- TestingCompilerImpl.prototype.checkOverrideAllowed = function (type) {
- if (this._compiler.hasAotSummary(type)) {
- throw new Error(ɵstringify(type) + " was AOT compiled, so its metadata cannot be changed.");
- }
- };
- TestingCompilerImpl.prototype.overrideModule = function (ngModule, override) {
- this.checkOverrideAllowed(ngModule);
- var oldMetadata = this._moduleResolver.resolve(ngModule, false);
- this._moduleResolver.setNgModule(ngModule, this._overrider.overrideMetadata(NgModule, oldMetadata, override));
- this.clearCacheFor(ngModule);
- };
- TestingCompilerImpl.prototype.overrideDirective = function (directive, override) {
- this.checkOverrideAllowed(directive);
- var oldMetadata = this._directiveResolver.resolve(directive, false);
- this._directiveResolver.setDirective(directive, this._overrider.overrideMetadata(Directive, oldMetadata, override));
- this.clearCacheFor(directive);
- };
- TestingCompilerImpl.prototype.overrideComponent = function (component, override) {
- this.checkOverrideAllowed(component);
- var oldMetadata = this._directiveResolver.resolve(component, false);
- this._directiveResolver.setDirective(component, this._overrider.overrideMetadata(Component, oldMetadata, override));
- this.clearCacheFor(component);
- };
- TestingCompilerImpl.prototype.overridePipe = function (pipe, override) {
- this.checkOverrideAllowed(pipe);
- var oldMetadata = this._pipeResolver.resolve(pipe, false);
- this._pipeResolver.setPipe(pipe, this._overrider.overrideMetadata(Pipe, oldMetadata, override));
- this.clearCacheFor(pipe);
- };
- TestingCompilerImpl.prototype.loadAotSummaries = function (summaries) { this._compiler.loadAotSummaries(summaries); };
- TestingCompilerImpl.prototype.clearCache = function () { this._compiler.clearCache(); };
- TestingCompilerImpl.prototype.clearCacheFor = function (type) { this._compiler.clearCacheFor(type); };
- TestingCompilerImpl.prototype.getComponentFromError = function (error) { return error[ERROR_COMPONENT_TYPE] || null; };
- TestingCompilerImpl.prototype.getModuleId = function (moduleType) {
- return this._moduleResolver.resolve(moduleType, true).id;
- };
- return TestingCompilerImpl;
- }());
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- var ɵ0 = { providers: COMPILER_PROVIDERS };
- /**
- * Platform for dynamic tests
- *
- * @publicApi
- */
- var platformCoreDynamicTesting = createPlatformFactory(ɵplatformCoreDynamic, 'coreDynamicTesting', [
- { provide: COMPILER_OPTIONS, useValue: ɵ0, multi: true }, {
- provide: ɵTestingCompilerFactory,
- useClass: TestingCompilerFactoryImpl,
- deps: [Injector, CompilerFactory]
- }
- ]);
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @publicApi
- */
- var platformBrowserDynamicTesting = createPlatformFactory(platformCoreDynamicTesting, 'browserDynamicTesting', ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS);
- /**
- * NgModule for testing.
- *
- * @publicApi
- */
- var BrowserDynamicTestingModule = /** @class */ (function () {
- function BrowserDynamicTestingModule() {
- }
- BrowserDynamicTestingModule = __decorate([
- NgModule({
- exports: [BrowserTestingModule],
- providers: [
- { provide: TestComponentRenderer, useClass: DOMTestComponentRenderer },
- ]
- })
- ], BrowserDynamicTestingModule);
- return BrowserDynamicTestingModule;
- }());
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * Generated bundle index. Do not edit.
- */
- export { COMPILER_PROVIDERS as ɵangular_packages_platform_browser_dynamic_testing_testing_a, TestingCompilerFactoryImpl as ɵangular_packages_platform_browser_dynamic_testing_testing_b, platformBrowserDynamicTesting, BrowserDynamicTestingModule, DOMTestComponentRenderer as ɵDOMTestComponentRenderer, platformCoreDynamicTesting as ɵplatformCoreDynamicTesting };
- //# sourceMappingURL=testing.js.map
|