How to use the @pollyjs/utils.EXPIRY_STRATEGIES.RECORD function in @pollyjs/utils

To help you get started, we’ve selected a few @pollyjs/utils examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Netflix / pollyjs / packages / @pollyjs / adapter / src / index.js View on Github external
async replay(pollyRequest) {
    const { config } = pollyRequest;
    const recordingEntry = await this.persister.findEntry(pollyRequest);

    if (recordingEntry) {
      await pollyRequest._emit('beforeReplay', recordingEntry);

      if (isExpired(recordingEntry.startedDateTime, config.expiresIn)) {
        const message =
          'Recording for the following request has expired.\n' +
          `${stringifyRequest(pollyRequest, null, 2)}`;

        switch (config.expiryStrategy) {
          // exit into the record flow if expiryStrategy is "record".
          case EXPIRY_STRATEGIES.RECORD:
            return this.record(pollyRequest);
          // throw an error and exit if expiryStrategy is "error".
          case EXPIRY_STRATEGIES.ERROR:
            this.assert(message);
            break;
          // log a warning and continue if expiryStrategy is "warn".
          case EXPIRY_STRATEGIES.WARN:
            console.warn(`[Polly] ${message}`);
            break;
          // throw an error if we encounter an unsupported expiryStrategy.
          default:
            this.assert(
              `Invalid config option passed for "expiryStrategy": "${config.expiryStrategy}"`
            );
            break;
        }
github Netflix / pollyjs / packages / @pollyjs / core / src / utils / merge-configs.js View on Github external
function deprecateRecordIfExpired(mergedConfig) {
  if (mergedConfig.hasOwnProperty('recordIfExpired')) {
    console.warn(
      '[Polly] config option "recordIfExpired" is deprecated. Please use "expiryStrategy".'
    );

    if (mergedConfig.recordIfExpired) {
      // replace recordIfExpired: true with expiryStrategy: record
      mergedConfig.expiryStrategy = EXPIRY_STRATEGIES.RECORD;
    } else {
      // replace recordIfExpired: false with expiryStrategy: warn
      mergedConfig.expiryStrategy = EXPIRY_STRATEGIES.WARN;
    }

    delete mergedConfig.recordIfExpired;
  }

  return mergedConfig;
}