123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- /**
- * @license Angular v12.0.5
- * (c) 2010-2021 Google LLC. https://angular.io/
- * License: MIT
- */
- import { ResourceLoader, core, DirectiveResolver, NgModuleResolver, PipeResolver } from '@angular/compiler';
- /**
- * @license
- * Copyright Google LLC 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 mock implementation of {@link ResourceLoader} that allows outgoing requests to be mocked
- * and responded to within a single test, without going to the network.
- */
- class MockResourceLoader extends ResourceLoader {
- constructor() {
- super(...arguments);
- this._expectations = [];
- this._definitions = new Map();
- this._requests = [];
- }
- get(url) {
- const request = new _PendingRequest(url);
- this._requests.push(request);
- return request.getPromise();
- }
- hasPendingRequests() {
- return !!this._requests.length;
- }
- /**
- * Add an expectation for the given URL. Incoming requests will be checked against
- * the next expectation (in FIFO order). The `verifyNoOutstandingExpectations` method
- * can be used to check if any expectations have not yet been met.
- *
- * The response given will be returned if the expectation matches.
- */
- expect(url, response) {
- const expectation = new _Expectation(url, response);
- this._expectations.push(expectation);
- }
- /**
- * Add a definition for the given URL to return the given response. Unlike expectations,
- * definitions have no order and will satisfy any matching request at any time. Also
- * unlike expectations, unused definitions do not cause `verifyNoOutstandingExpectations`
- * to return an error.
- */
- when(url, response) {
- this._definitions.set(url, response);
- }
- /**
- * Process pending requests and verify there are no outstanding expectations. Also fails
- * if no requests are pending.
- */
- flush() {
- if (this._requests.length === 0) {
- throw new Error('No pending requests to flush');
- }
- do {
- this._processRequest(this._requests.shift());
- } while (this._requests.length > 0);
- this.verifyNoOutstandingExpectations();
- }
- /**
- * Throw an exception if any expectations have not been satisfied.
- */
- verifyNoOutstandingExpectations() {
- if (this._expectations.length === 0)
- return;
- const urls = [];
- for (let i = 0; i < this._expectations.length; i++) {
- const expectation = this._expectations[i];
- urls.push(expectation.url);
- }
- throw new Error(`Unsatisfied requests: ${urls.join(', ')}`);
- }
- _processRequest(request) {
- const url = request.url;
- if (this._expectations.length > 0) {
- const expectation = this._expectations[0];
- if (expectation.url == url) {
- remove(this._expectations, expectation);
- request.complete(expectation.response);
- return;
- }
- }
- if (this._definitions.has(url)) {
- const response = this._definitions.get(url);
- request.complete(response == null ? null : response);
- return;
- }
- throw new Error(`Unexpected request ${url}`);
- }
- }
- class _PendingRequest {
- constructor(url) {
- this.url = url;
- this.promise = new Promise((res, rej) => {
- this.resolve = res;
- this.reject = rej;
- });
- }
- complete(response) {
- if (response == null) {
- this.reject(`Failed to load ${this.url}`);
- }
- else {
- this.resolve(response);
- }
- }
- getPromise() {
- return this.promise;
- }
- }
- class _Expectation {
- constructor(url, response) {
- this.url = url;
- this.response = response;
- }
- }
- function remove(list, el) {
- const index = list.indexOf(el);
- if (index > -1) {
- list.splice(index, 1);
- }
- }
- /**
- * @license
- * Copyright Google LLC 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
- */
- class MockSchemaRegistry {
- constructor(existingProperties, attrPropMapping, existingElements, invalidProperties, invalidAttributes) {
- this.existingProperties = existingProperties;
- this.attrPropMapping = attrPropMapping;
- this.existingElements = existingElements;
- this.invalidProperties = invalidProperties;
- this.invalidAttributes = invalidAttributes;
- }
- hasProperty(tagName, property, schemas) {
- const value = this.existingProperties[property];
- return value === void 0 ? true : value;
- }
- hasElement(tagName, schemaMetas) {
- const value = this.existingElements[tagName.toLowerCase()];
- return value === void 0 ? true : value;
- }
- allKnownElementNames() {
- return Object.keys(this.existingElements);
- }
- securityContext(selector, property, isAttribute) {
- return core.SecurityContext.NONE;
- }
- getMappedPropName(attrName) {
- return this.attrPropMapping[attrName] || attrName;
- }
- getDefaultComponentElementName() {
- return 'ng-component';
- }
- validateProperty(name) {
- if (this.invalidProperties.indexOf(name) > -1) {
- return { error: true, msg: `Binding to property '${name}' is disallowed for security reasons` };
- }
- else {
- return { error: false };
- }
- }
- validateAttribute(name) {
- if (this.invalidAttributes.indexOf(name) > -1) {
- return {
- error: true,
- msg: `Binding to attribute '${name}' is disallowed for security reasons`
- };
- }
- else {
- return { error: false };
- }
- }
- normalizeAnimationStyleProperty(propName) {
- return propName;
- }
- normalizeAnimationStyleValue(camelCaseProp, userProvidedProp, val) {
- return { error: null, value: val.toString() };
- }
- }
- /**
- * @license
- * Copyright Google LLC 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
- */
- /**
- * An implementation of {@link DirectiveResolver} that allows overriding
- * various properties of directives.
- */
- class MockDirectiveResolver extends DirectiveResolver {
- constructor(reflector) {
- super(reflector);
- this._directives = new Map();
- }
- resolve(type, throwIfNotFound = true) {
- return this._directives.get(type) || super.resolve(type, throwIfNotFound);
- }
- /**
- * Overrides the {@link core.Directive} for a directive.
- */
- setDirective(type, metadata) {
- this._directives.set(type, metadata);
- }
- }
- /**
- * @license
- * Copyright Google LLC 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
- */
- class MockNgModuleResolver extends NgModuleResolver {
- constructor(reflector) {
- super(reflector);
- this._ngModules = new Map();
- }
- /**
- * Overrides the {@link NgModule} for a module.
- */
- setNgModule(type, metadata) {
- this._ngModules.set(type, metadata);
- }
- /**
- * Returns the {@link NgModule} for a module:
- * - Set the {@link NgModule} to the overridden view when it exists or fallback to the
- * default
- * `NgModuleResolver`, see `setNgModule`.
- */
- resolve(type, throwIfNotFound = true) {
- return this._ngModules.get(type) || super.resolve(type, throwIfNotFound);
- }
- }
- /**
- * @license
- * Copyright Google LLC 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
- */
- class MockPipeResolver extends PipeResolver {
- constructor(refector) {
- super(refector);
- this._pipes = new Map();
- }
- /**
- * Overrides the {@link Pipe} for a pipe.
- */
- setPipe(type, metadata) {
- this._pipes.set(type, metadata);
- }
- /**
- * Returns the {@link Pipe} for a pipe:
- * - Set the {@link Pipe} to the overridden view when it exists or fallback to the
- * default
- * `PipeResolver`, see `setPipe`.
- */
- resolve(type, throwIfNotFound = true) {
- let metadata = this._pipes.get(type);
- if (!metadata) {
- metadata = super.resolve(type, throwIfNotFound);
- }
- return metadata;
- }
- }
- /**
- * @license
- * Copyright Google LLC 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 LLC 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
- */
- // This file only reexports content of the `src` folder. Keep it that way.
- /**
- * @license
- * Copyright Google LLC 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 { MockDirectiveResolver, MockNgModuleResolver, MockPipeResolver, MockResourceLoader, MockSchemaRegistry };
- //# sourceMappingURL=testing.js.map
|