/** * @license * Copyright 2020 Balena Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import * as nock from 'nock'; export interface ScopeOpts { optional?: boolean; persist?: boolean; } /** * Base class for tests using nock to intercept HTTP requests. * Subclasses include BalenaAPIMock, DockerMock and BuilderMock. */ export class NockMock { public readonly scope: nock.Scope; // Expose `scope` as `expect` to allow for better semantics in tests public readonly expect; protected static instanceCount = 0; constructor(public basePathPattern: string | RegExp) { if (NockMock.instanceCount === 0) { if (!nock.isActive()) { nock.activate(); } nock.emitter.on('no match', this.handleUnexpectedRequest); } else if (process.env.DEBUG) { console.error( `[debug] NockMock.constructor() instance count is ${NockMock.instanceCount}`, ); } NockMock.instanceCount += 1; this.scope = nock(this.basePathPattern); this.expect = this.scope; } public optGet( uri: string | RegExp | ((uri: string) => boolean), { optional = false, persist = false }: ScopeOpts, ): nock.Interceptor { const get = (persist ? this.scope.persist() : this.scope).get(uri); return optional ? get.optionally() : get; } public optDelete( uri: string | RegExp | ((uri: string) => boolean), { optional = false, persist = false }: ScopeOpts, ) { const del = (persist ? this.scope.persist() : this.scope).delete(uri); return optional ? del.optionally() : del; } public optPatch( uri: string | RegExp | ((uri: string) => boolean), { optional = false, persist = false }: ScopeOpts, ) { const patch = (persist ? this.scope.persist() : this.scope).patch(uri); return optional ? patch.optionally() : patch; } public optPost( uri: string | RegExp | ((uri: string) => boolean), { optional = false, persist = false }: ScopeOpts, ) { const post = (persist ? this.scope.persist() : this.scope).post(uri); return optional ? post.optionally() : post; } protected inspectNoOp(_uri: string, _requestBody: nock.Body): void { return undefined; } protected getInspectedReplyBodyFunction( inspectRequest: (uri: string, requestBody: nock.Body) => void, replyBody: nock.ReplyBody, ) { return function ( this: nock.ReplyFnContext, uri: string, requestBody: nock.Body, cb: (err: NodeJS.ErrnoException | null, result: nock.ReplyBody) => void, ) { try { inspectRequest(uri, requestBody); } catch (err) { cb(err, ''); } cb(null, replyBody); }; } public done() { try { // scope.done() will throw an error if there are expected api calls that have not happened. // So ensure that all expected calls have been made. this.scope.done(); } finally { const count = NockMock.instanceCount - 1; if (count < 0 && process.env.DEBUG) { console.error( `[debug] Warning: NockMock.instanceCount is negative (${count})`, ); } NockMock.instanceCount = Math.max(0, count); if (NockMock.instanceCount === 0) { // Remove 'no match' handler, for tests using nock without this module nock.emitter.removeAllListeners('no match'); nock.cleanAll(); nock.restore(); } else if (process.env.DEBUG) { console.error( `[debug] NockMock.done() instance count is ${NockMock.instanceCount}`, ); } } } protected handleUnexpectedRequest(req: any) { const { interceptorServerPort, } = require('./proxy-server') as typeof import('./proxy-server'); const o = req.options || {}; const u = o.uri || {}; const method = req.method; const proto = req.protocol || req.proto || o.proto || u.protocol; const host = req.host || req.headers?.host || o.host || u.host; const path = req.path || o.path || u.path; // Requests made by the local proxy/interceptor server are OK if (host === `127.0.0.1:${interceptorServerPort}`) { return; } console.error( `NockMock: Unexpected HTTP request: ${method} ${proto}//${host}${path}`, ); // Errors thrown here are not causing the tests to fail for some reason. // Possibly due to CLI global error handlers? (error.js) // (Also, nock should automatically throw an error, but also not happening) // For now, the console.error is sufficient (will fail the test) } // For debugging tests get unfulfilledCallCount(): number { return this.scope.pendingMocks().length; } public debug() { const scope = this.scope; let mocks = scope.pendingMocks(); console.error(`pending mocks ${mocks.length}: ${mocks}`); this.scope.on('request', function (_req, _interceptor, _body) { console.log(`>> REQUEST:` + _req.path); mocks = scope.pendingMocks(); console.error(`pending mocks ${mocks.length}: ${mocks}`); }); this.scope.on('replied', function (_req) { console.log(`<< REPLIED:` + _req.path); }); } }