123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- /**
- * @license Angular v5.2.11
- * (c) 2010-2018 Google, Inc. https://angular.io/
- * License: MIT
- */
- import { HttpBackend, HttpClientModule, HttpErrorResponse, HttpEventType, HttpHeaders, HttpResponse } from '@angular/common/http';
- import { Injectable, NgModule } from '@angular/core';
- import { Observable } from 'rxjs/Observable';
-
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes} checked by tsc
- */
- /**
- * @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
- */
- /**
- * Defines a matcher for requests based on URL, method, or both.
- *
- * \@stable
- * @record
- */
-
- /**
- * Controller to be injected into tests, that allows for mocking and flushing
- * of requests.
- *
- * \@stable
- * @abstract
- */
- var HttpTestingController = /** @class */ (function () {
- function HttpTestingController() {
- }
- return HttpTestingController;
- }());
-
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes} checked by tsc
- */
- /**
- * @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 mock requests that was received and is ready to be answered.
- *
- * This interface allows access to the underlying `HttpRequest`, and allows
- * responding with `HttpEvent`s or `HttpErrorResponse`s.
- *
- * \@stable
- */
- var TestRequest = /** @class */ (function () {
- function TestRequest(request, observer) {
- this.request = request;
- this.observer = observer;
- /**
- * \@internal set by `HttpClientTestingBackend`
- */
- this._cancelled = false;
- }
- Object.defineProperty(TestRequest.prototype, "cancelled", {
- /**
- * Whether the request was cancelled after it was sent.
- */
- get: /**
- * Whether the request was cancelled after it was sent.
- * @return {?}
- */
- function () { return this._cancelled; },
- enumerable: true,
- configurable: true
- });
- /**
- * Resolve the request by returning a body plus additional HTTP information (such as response
- * headers) if provided.
- *
- * Both successful and unsuccessful responses can be delivered via `flush()`.
- */
- /**
- * Resolve the request by returning a body plus additional HTTP information (such as response
- * headers) if provided.
- *
- * Both successful and unsuccessful responses can be delivered via `flush()`.
- * @param {?} body
- * @param {?=} opts
- * @return {?}
- */
- TestRequest.prototype.flush = /**
- * Resolve the request by returning a body plus additional HTTP information (such as response
- * headers) if provided.
- *
- * Both successful and unsuccessful responses can be delivered via `flush()`.
- * @param {?} body
- * @param {?=} opts
- * @return {?}
- */
- function (body, opts) {
- if (opts === void 0) { opts = {}; }
- if (this.cancelled) {
- throw new Error("Cannot flush a cancelled request.");
- }
- var /** @type {?} */ url = this.request.urlWithParams;
- var /** @type {?} */ headers = (opts.headers instanceof HttpHeaders) ? opts.headers : new HttpHeaders(opts.headers);
- body = _maybeConvertBody(this.request.responseType, body);
- var /** @type {?} */ statusText = opts.statusText;
- var /** @type {?} */ status = opts.status !== undefined ? opts.status : 200;
- if (opts.status === undefined) {
- if (body === null) {
- status = 204;
- statusText = statusText || 'No Content';
- }
- else {
- statusText = statusText || 'OK';
- }
- }
- if (statusText === undefined) {
- throw new Error('statusText is required when setting a custom status.');
- }
- if (status >= 200 && status < 300) {
- this.observer.next(new HttpResponse({ body: body, headers: headers, status: status, statusText: statusText, url: url }));
- this.observer.complete();
- }
- else {
- this.observer.error(new HttpErrorResponse({ error: body, headers: headers, status: status, statusText: statusText, url: url }));
- }
- };
- /**
- * Resolve the request by returning an `ErrorEvent` (e.g. simulating a network failure).
- */
- /**
- * Resolve the request by returning an `ErrorEvent` (e.g. simulating a network failure).
- * @param {?} error
- * @param {?=} opts
- * @return {?}
- */
- TestRequest.prototype.error = /**
- * Resolve the request by returning an `ErrorEvent` (e.g. simulating a network failure).
- * @param {?} error
- * @param {?=} opts
- * @return {?}
- */
- function (error, opts) {
- if (opts === void 0) { opts = {}; }
- if (this.cancelled) {
- throw new Error("Cannot return an error for a cancelled request.");
- }
- if (opts.status && opts.status >= 200 && opts.status < 300) {
- throw new Error("error() called with a successful status.");
- }
- var /** @type {?} */ headers = (opts.headers instanceof HttpHeaders) ? opts.headers : new HttpHeaders(opts.headers);
- this.observer.error(new HttpErrorResponse({
- error: error,
- headers: headers,
- status: opts.status || 0,
- statusText: opts.statusText || '',
- url: this.request.urlWithParams,
- }));
- };
- /**
- * Deliver an arbitrary `HttpEvent` (such as a progress event) on the response stream for this
- * request.
- */
- /**
- * Deliver an arbitrary `HttpEvent` (such as a progress event) on the response stream for this
- * request.
- * @param {?} event
- * @return {?}
- */
- TestRequest.prototype.event = /**
- * Deliver an arbitrary `HttpEvent` (such as a progress event) on the response stream for this
- * request.
- * @param {?} event
- * @return {?}
- */
- function (event) {
- if (this.cancelled) {
- throw new Error("Cannot send events to a cancelled request.");
- }
- this.observer.next(event);
- };
- return TestRequest;
- }());
- /**
- * Helper function to convert a response body to an ArrayBuffer.
- * @param {?} body
- * @return {?}
- */
- function _toArrayBufferBody(body) {
- if (typeof ArrayBuffer === 'undefined') {
- throw new Error('ArrayBuffer responses are not supported on this platform.');
- }
- if (body instanceof ArrayBuffer) {
- return body;
- }
- throw new Error('Automatic conversion to ArrayBuffer is not supported for response type.');
- }
- /**
- * Helper function to convert a response body to a Blob.
- * @param {?} body
- * @return {?}
- */
- function _toBlob(body) {
- if (typeof Blob === 'undefined') {
- throw new Error('Blob responses are not supported on this platform.');
- }
- if (body instanceof Blob) {
- return body;
- }
- if (ArrayBuffer && body instanceof ArrayBuffer) {
- return new Blob([body]);
- }
- throw new Error('Automatic conversion to Blob is not supported for response type.');
- }
- /**
- * Helper function to convert a response body to JSON data.
- * @param {?} body
- * @param {?=} format
- * @return {?}
- */
- function _toJsonBody(body, format) {
- if (format === void 0) { format = 'JSON'; }
- if (typeof ArrayBuffer !== 'undefined' && body instanceof ArrayBuffer) {
- throw new Error("Automatic conversion to " + format + " is not supported for ArrayBuffers.");
- }
- if (typeof Blob !== 'undefined' && body instanceof Blob) {
- throw new Error("Automatic conversion to " + format + " is not supported for Blobs.");
- }
- if (typeof body === 'string' || typeof body === 'number' || typeof body === 'object' ||
- Array.isArray(body)) {
- return body;
- }
- throw new Error("Automatic conversion to " + format + " is not supported for response type.");
- }
- /**
- * Helper function to convert a response body to a string.
- * @param {?} body
- * @return {?}
- */
- function _toTextBody(body) {
- if (typeof body === 'string') {
- return body;
- }
- if (typeof ArrayBuffer !== 'undefined' && body instanceof ArrayBuffer) {
- throw new Error('Automatic conversion to text is not supported for ArrayBuffers.');
- }
- if (typeof Blob !== 'undefined' && body instanceof Blob) {
- throw new Error('Automatic conversion to text is not supported for Blobs.');
- }
- return JSON.stringify(_toJsonBody(body, 'text'));
- }
- /**
- * Convert a response body to the requested type.
- * @param {?} responseType
- * @param {?} body
- * @return {?}
- */
- function _maybeConvertBody(responseType, body) {
- if (body === null) {
- return null;
- }
- switch (responseType) {
- case 'arraybuffer':
- return _toArrayBufferBody(body);
- case 'blob':
- return _toBlob(body);
- case 'json':
- return _toJsonBody(body);
- case 'text':
- return _toTextBody(body);
- default:
- throw new Error("Unsupported responseType: " + responseType);
- }
- }
-
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes} checked by tsc
- */
- /**
- * @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 testing backend for `HttpClient` which both acts as an `HttpBackend`
- * and as the `HttpTestingController`.
- *
- * `HttpClientTestingBackend` works by keeping a list of all open requests.
- * As requests come in, they're added to the list. Users can assert that specific
- * requests were made and then flush them. In the end, a verify() method asserts
- * that no unexpected requests were made.
- *
- * \@stable
- */
- var HttpClientTestingBackend = /** @class */ (function () {
- function HttpClientTestingBackend() {
- /**
- * List of pending requests which have not yet been expected.
- */
- this.open = [];
- }
- /**
- * Handle an incoming request by queueing it in the list of open requests.
- */
- /**
- * Handle an incoming request by queueing it in the list of open requests.
- * @param {?} req
- * @return {?}
- */
- HttpClientTestingBackend.prototype.handle = /**
- * Handle an incoming request by queueing it in the list of open requests.
- * @param {?} req
- * @return {?}
- */
- function (req) {
- var _this = this;
- return new Observable(function (observer) {
- var /** @type {?} */ testReq = new TestRequest(req, observer);
- _this.open.push(testReq);
- observer.next(/** @type {?} */ ({ type: HttpEventType.Sent }));
- return function () { testReq._cancelled = true; };
- });
- };
- /**
- * Helper function to search for requests in the list of open requests.
- * @param {?} match
- * @return {?}
- */
- HttpClientTestingBackend.prototype._match = /**
- * Helper function to search for requests in the list of open requests.
- * @param {?} match
- * @return {?}
- */
- function (match) {
- if (typeof match === 'string') {
- return this.open.filter(function (testReq) { return testReq.request.urlWithParams === match; });
- }
- else if (typeof match === 'function') {
- return this.open.filter(function (testReq) { return match(testReq.request); });
- }
- else {
- return this.open.filter(function (testReq) {
- return (!match.method || testReq.request.method === match.method.toUpperCase()) &&
- (!match.url || testReq.request.urlWithParams === match.url);
- });
- }
- };
- /**
- * Search for requests in the list of open requests, and return all that match
- * without asserting anything about the number of matches.
- */
- /**
- * Search for requests in the list of open requests, and return all that match
- * without asserting anything about the number of matches.
- * @param {?} match
- * @return {?}
- */
- HttpClientTestingBackend.prototype.match = /**
- * Search for requests in the list of open requests, and return all that match
- * without asserting anything about the number of matches.
- * @param {?} match
- * @return {?}
- */
- function (match) {
- var _this = this;
- var /** @type {?} */ results = this._match(match);
- results.forEach(function (result) {
- var /** @type {?} */ index = _this.open.indexOf(result);
- if (index !== -1) {
- _this.open.splice(index, 1);
- }
- });
- return results;
- };
- /**
- * Expect that a single outstanding request matches the given matcher, and return
- * it.
- *
- * Requests returned through this API will no longer be in the list of open requests,
- * and thus will not match twice.
- */
- /**
- * Expect that a single outstanding request matches the given matcher, and return
- * it.
- *
- * Requests returned through this API will no longer be in the list of open requests,
- * and thus will not match twice.
- * @param {?} match
- * @param {?=} description
- * @return {?}
- */
- HttpClientTestingBackend.prototype.expectOne = /**
- * Expect that a single outstanding request matches the given matcher, and return
- * it.
- *
- * Requests returned through this API will no longer be in the list of open requests,
- * and thus will not match twice.
- * @param {?} match
- * @param {?=} description
- * @return {?}
- */
- function (match, description) {
- description = description || this.descriptionFromMatcher(match);
- var /** @type {?} */ matches = this.match(match);
- if (matches.length > 1) {
- throw new Error("Expected one matching request for criteria \"" + description + "\", found " + matches.length + " requests.");
- }
- if (matches.length === 0) {
- throw new Error("Expected one matching request for criteria \"" + description + "\", found none.");
- }
- return matches[0];
- };
- /**
- * Expect that no outstanding requests match the given matcher, and throw an error
- * if any do.
- */
- /**
- * Expect that no outstanding requests match the given matcher, and throw an error
- * if any do.
- * @param {?} match
- * @param {?=} description
- * @return {?}
- */
- HttpClientTestingBackend.prototype.expectNone = /**
- * Expect that no outstanding requests match the given matcher, and throw an error
- * if any do.
- * @param {?} match
- * @param {?=} description
- * @return {?}
- */
- function (match, description) {
- description = description || this.descriptionFromMatcher(match);
- var /** @type {?} */ matches = this.match(match);
- if (matches.length > 0) {
- throw new Error("Expected zero matching requests for criteria \"" + description + "\", found " + matches.length + ".");
- }
- };
- /**
- * Validate that there are no outstanding requests.
- */
- /**
- * Validate that there are no outstanding requests.
- * @param {?=} opts
- * @return {?}
- */
- HttpClientTestingBackend.prototype.verify = /**
- * Validate that there are no outstanding requests.
- * @param {?=} opts
- * @return {?}
- */
- function (opts) {
- if (opts === void 0) { opts = {}; }
- var /** @type {?} */ open = this.open;
- // It's possible that some requests may be cancelled, and this is expected.
- // The user can ask to ignore open requests which have been cancelled.
- if (opts.ignoreCancelled) {
- open = open.filter(function (testReq) { return !testReq.cancelled; });
- }
- if (open.length > 0) {
- // Show the methods and URLs of open requests in the error, for convenience.
- var /** @type {?} */ requests = open.map(function (testReq) {
- var /** @type {?} */ url = testReq.request.urlWithParams.split('?')[0];
- var /** @type {?} */ method = testReq.request.method;
- return method + " " + url;
- })
- .join(', ');
- throw new Error("Expected no open requests, found " + open.length + ": " + requests);
- }
- };
- /**
- * @param {?} matcher
- * @return {?}
- */
- HttpClientTestingBackend.prototype.descriptionFromMatcher = /**
- * @param {?} matcher
- * @return {?}
- */
- function (matcher) {
- if (typeof matcher === 'string') {
- return "Match URL: " + matcher;
- }
- else if (typeof matcher === 'object') {
- var /** @type {?} */ method = matcher.method || '(any)';
- var /** @type {?} */ url = matcher.url || '(any)';
- return "Match method: " + method + ", URL: " + url;
- }
- else {
- return "Match by function: " + matcher.name;
- }
- };
- HttpClientTestingBackend.decorators = [
- { type: Injectable },
- ];
- /** @nocollapse */
- HttpClientTestingBackend.ctorParameters = function () { return []; };
- return HttpClientTestingBackend;
- }());
-
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes} checked by tsc
- */
- /**
- * @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
- */
- /**
- * Configures `HttpClientTestingBackend` as the `HttpBackend` used by `HttpClient`.
- *
- * Inject `HttpTestingController` to expect and flush requests in your tests.
- *
- * \@stable
- */
- var HttpClientTestingModule = /** @class */ (function () {
- function HttpClientTestingModule() {
- }
- HttpClientTestingModule.decorators = [
- { type: NgModule, args: [{
- imports: [
- HttpClientModule,
- ],
- providers: [
- HttpClientTestingBackend,
- { provide: HttpBackend, useExisting: HttpClientTestingBackend },
- { provide: HttpTestingController, useExisting: HttpClientTestingBackend },
- ],
- },] },
- ];
- /** @nocollapse */
- HttpClientTestingModule.ctorParameters = function () { return []; };
- return HttpClientTestingModule;
- }());
-
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes} checked by tsc
- */
- /**
- * @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
- */
-
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes} checked by tsc
- */
- /**
- * Generated bundle index. Do not edit.
- */
-
- export { HttpTestingController, HttpClientTestingModule, TestRequest, HttpClientTestingBackend as ɵa };
- //# sourceMappingURL=testing.js.map
|