You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
314 lines
9.4 KiB
314 lines
9.4 KiB
/**
|
|
* @license Angular v12.2.16
|
|
* (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
|