All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.tomakehurst.wiremock.verification.InMemoryRequestJournal Maven / Gradle / Ivy

/*
 * Copyright (C) 2011-2021 Thomas Akehurst
 *
 * 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.
 */
package com.github.tomakehurst.wiremock.verification;

import static com.github.tomakehurst.wiremock.matching.RequestPattern.thatMatch;
import static com.github.tomakehurst.wiremock.matching.RequestPattern.withRequstMatching;
import static com.google.common.collect.Iterables.*;

import com.github.tomakehurst.wiremock.common.Json;
import com.github.tomakehurst.wiremock.matching.RequestMatcherExtension;
import com.github.tomakehurst.wiremock.matching.RequestPattern;
import com.github.tomakehurst.wiremock.matching.StringValuePattern;
import com.github.tomakehurst.wiremock.stubbing.ServeEvent;
import com.github.tomakehurst.wiremock.stubbing.StubMapping;
import com.google.common.base.Function;
import com.google.common.base.Optional;
import com.google.common.base.Predicate;
import com.google.common.collect.FluentIterable;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.UUID;
import java.util.concurrent.ConcurrentLinkedQueue;

public class InMemoryRequestJournal implements RequestJournal {

  private final Queue serveEvents = new ConcurrentLinkedQueue();

  private final Optional maxEntries;
  private final Map customMatchers;

  public InMemoryRequestJournal(
      Optional maxEntries, Map customMatchers) {
    if (maxEntries.isPresent() && maxEntries.get() < 0) {
      throw new IllegalArgumentException(
          "Maximum number of entries of journal must be greater than zero");
    }
    this.maxEntries = maxEntries;
    this.customMatchers = customMatchers;
  }

  @Override
  public int countRequestsMatching(RequestPattern requestPattern) {
    return size(filter(getRequests(), thatMatch(requestPattern, customMatchers)));
  }

  @Override
  public List getRequestsMatching(RequestPattern requestPattern) {
    return ImmutableList.copyOf(filter(getRequests(), thatMatch(requestPattern, customMatchers)));
  }

  @Override
  public void requestReceived(ServeEvent serveEvent) {
    serveEvents.add(serveEvent);
    removeOldEntries();
  }

  @Override
  public void removeEvent(final UUID eventId) {
    removeServeEvents(
        new Predicate() {
          @Override
          public boolean apply(ServeEvent input) {
            return input.getId().equals(eventId);
          }
        });
  }

  @Override
  public List removeEventsMatching(RequestPattern requestPattern) {
    return removeServeEvents(withRequstMatching(requestPattern));
  }

  @Override
  public List removeServeEventsForStubsMatchingMetadata(
      StringValuePattern metadataPattern) {
    return removeServeEvents(withStubMetadataMatching(metadataPattern));
  }

  private List removeServeEvents(Predicate predicate) {
    List toDelete = FluentIterable.from(serveEvents).filter(predicate).toList();

    for (ServeEvent event : toDelete) {
      serveEvents.remove(event);
    }

    return toDelete;
  }

  @Override
  public List getAllServeEvents() {
    return ImmutableList.copyOf(serveEvents).reverse();
  }

  @Override
  public Optional getServeEvent(final UUID id) {
    return tryFind(
        serveEvents,
        new Predicate() {
          @Override
          public boolean apply(ServeEvent input) {
            return input.getId().equals(id);
          }
        });
  }

  @Override
  public void reset() {
    serveEvents.clear();
  }

  private Iterable getRequests() {
    return transform(
        serveEvents,
        new Function() {
          public LoggedRequest apply(ServeEvent input) {
            return input.getRequest();
          }
        });
  }

  private void removeOldEntries() {
    if (maxEntries.isPresent()) {
      while (serveEvents.size() > maxEntries.get()) {
        serveEvents.poll();
      }
    }
  }

  private static Predicate withStubMetadataMatching(
      final StringValuePattern metadataPattern) {
    return new Predicate() {
      @Override
      public boolean apply(ServeEvent serveEvent) {
        StubMapping stub = serveEvent.getStubMapping();
        if (stub != null) {
          String metadataJson = Json.write(stub.getMetadata());
          return metadataPattern.match(metadataJson).isExactMatch();
        }

        return false;
      }
    };
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy