From 591fe4f6b8d7ff57c4d1d92fbaf37e60355fe7d0 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 03:19:31 +0530 Subject: [PATCH 1/8] feat: attach Java dedup agent in sample Signed-off-by: Asish Kumar --- .github/workflows/dropwizard-dedup.yml | 94 +++++++++++ .github/workflows/java-dedup.yml | 44 ++++++ README.md | 1 + dropwizard-dedup/.dockerignore | 6 + dropwizard-dedup/.gitignore | 3 + dropwizard-dedup/Dockerfile | 15 ++ dropwizard-dedup/Dockerfile.classpath | 19 +++ dropwizard-dedup/Dockerfile.distroless | 16 ++ dropwizard-dedup/README.md | 24 +++ dropwizard-dedup/config.yml | 12 ++ dropwizard-dedup/docker-compose.classpath.yml | 4 + .../docker-compose.distroless.yml | 4 + .../docker-compose.restricted.yml | 7 + dropwizard-dedup/docker-compose.yml | 13 ++ dropwizard-dedup/keploy.yml | 91 +++++++++++ .../keploy/test-set-0/tests/test-1.yaml | 40 +++++ .../keploy/test-set-0/tests/test-10.yaml | 40 +++++ .../keploy/test-set-0/tests/test-11.yaml | 40 +++++ .../keploy/test-set-0/tests/test-12.yaml | 40 +++++ .../keploy/test-set-0/tests/test-13.yaml | 41 +++++ .../keploy/test-set-0/tests/test-14.yaml | 40 +++++ .../keploy/test-set-0/tests/test-15.yaml | 40 +++++ .../keploy/test-set-0/tests/test-16.yaml | 40 +++++ .../keploy/test-set-0/tests/test-2.yaml | 40 +++++ .../keploy/test-set-0/tests/test-3.yaml | 40 +++++ .../keploy/test-set-0/tests/test-4.yaml | 40 +++++ .../keploy/test-set-0/tests/test-5.yaml | 40 +++++ .../keploy/test-set-0/tests/test-6.yaml | 40 +++++ .../keploy/test-set-0/tests/test-7.yaml | 40 +++++ .../keploy/test-set-0/tests/test-8.yaml | 40 +++++ .../keploy/test-set-0/tests/test-9.yaml | 40 +++++ dropwizard-dedup/pom.xml | 149 ++++++++++++++++++ .../DropwizardDedupApplication.java | 43 +++++ .../DropwizardDedupConfiguration.java | 6 + .../dropwizarddedup/core/CatalogService.java | 97 ++++++++++++ .../dropwizarddedup/core/OrderRequest.java | 53 +++++++ .../errors/ApiExceptionMapper.java | 21 +++ .../health/ApplicationHealthCheck.java | 11 ++ .../resources/InventoryResource.java | 71 +++++++++ .../resources/OrderResource.java | 58 +++++++ .../resources/PlatformResource.java | 39 +++++ java-dedup/Dockerfile | 3 +- java-dedup/Dockerfile.classpath | 3 +- java-dedup/Dockerfile.distroless | 3 +- java-dedup/README.md | 12 +- java-dedup/pom.xml | 46 +++++- .../javadedup/JavaDedupApplication.java | 3 - 47 files changed, 1595 insertions(+), 17 deletions(-) create mode 100644 .github/workflows/dropwizard-dedup.yml create mode 100644 .github/workflows/java-dedup.yml create mode 100644 dropwizard-dedup/.dockerignore create mode 100644 dropwizard-dedup/.gitignore create mode 100644 dropwizard-dedup/Dockerfile create mode 100644 dropwizard-dedup/Dockerfile.classpath create mode 100644 dropwizard-dedup/Dockerfile.distroless create mode 100644 dropwizard-dedup/README.md create mode 100644 dropwizard-dedup/config.yml create mode 100644 dropwizard-dedup/docker-compose.classpath.yml create mode 100644 dropwizard-dedup/docker-compose.distroless.yml create mode 100644 dropwizard-dedup/docker-compose.restricted.yml create mode 100644 dropwizard-dedup/docker-compose.yml create mode 100644 dropwizard-dedup/keploy.yml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-1.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-10.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-11.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-12.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-13.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-14.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-15.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-16.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-2.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-3.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-4.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-5.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-6.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-7.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-8.yaml create mode 100644 dropwizard-dedup/keploy/test-set-0/tests/test-9.yaml create mode 100644 dropwizard-dedup/pom.xml create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupApplication.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupConfiguration.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/CatalogService.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/OrderRequest.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/errors/ApiExceptionMapper.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/health/ApplicationHealthCheck.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/InventoryResource.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/OrderResource.java create mode 100644 dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/PlatformResource.java diff --git a/.github/workflows/dropwizard-dedup.yml b/.github/workflows/dropwizard-dedup.yml new file mode 100644 index 00000000..55b19dbc --- /dev/null +++ b/.github/workflows/dropwizard-dedup.yml @@ -0,0 +1,94 @@ +name: Dropwizard Dedup Sample + +on: + pull_request: + branches: [main] + push: + branches: [main] + +jobs: + build: + name: JDK ${{ matrix.java-version }} + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + java-version: ["8", "17", "21"] + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up JDK ${{ matrix.java-version }} + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: ${{ matrix.java-version }} + cache: maven + + - name: Build dropwizard-dedup without Keploy compile dependency + working-directory: dropwizard-dedup + run: mvn -B -DskipTests clean package + + - name: Verify Keploy is not a compile-time dependency + working-directory: dropwizard-dedup + run: | + set -euo pipefail + mvn -B dependency:tree -Dincludes=io.keploy:keploy-sdk -DoutputFile=target/keploy-dependency-tree.txt + if grep -q "io.keploy:keploy-sdk" target/keploy-dependency-tree.txt; then + cat target/keploy-dependency-tree.txt + exit 1 + fi + if grep -R "io.keploy\\.dedup\\|io.keploy\\.servlet\\|KeployDedupAgent\\|KeployMiddleware" src/main/java; then + exit 1 + fi + + - name: Smoke Dropwizard runtime with JaCoCo + working-directory: dropwizard-dedup + run: | + set -euo pipefail + smoke_http_port=$((19080 + ${{ matrix.java-version }})) + smoke_admin_port=$((20080 + ${{ matrix.java-version }})) + + DW_HTTP_PORT="${smoke_http_port}" DW_ADMIN_PORT="${smoke_admin_port}" \ + java -javaagent:target/jacocoagent.jar=destfile=target/smoke-jacoco.exec \ + -jar target/dropwizard-dedup-0.0.1-SNAPSHOT.jar server config.yml \ + > target/dropwizard-smoke.log 2>&1 & + app_pid=$! + + cleanup() { + kill "${app_pid}" >/dev/null 2>&1 || true + wait "${app_pid}" >/dev/null 2>&1 || true + } + trap cleanup EXIT + + ready=0 + for i in $(seq 1 60); do + if curl -fsS "http://127.0.0.1:${smoke_http_port}/healthz" >/dev/null; then + ready=1 + break + fi + if ! kill -0 "${app_pid}" >/dev/null 2>&1; then + cat target/dropwizard-smoke.log + exit 1 + fi + sleep 1 + done + if [ "${ready}" != "1" ]; then + cat target/dropwizard-smoke.log + exit 1 + fi + + curl -fsS "http://127.0.0.1:${smoke_http_port}/catalog?category=electronics&limit=1" | grep -q '"source":"warehouse-b"' + curl -fsS -H "X-Tenant: flipkart" -H "X-Request-Id: smoke-1" \ + "http://127.0.0.1:${smoke_http_port}/headers" | grep -q '"tenant":"flipkart"' + curl -fsS -X POST "http://127.0.0.1:${smoke_http_port}/orders" \ + -H "Content-Type: application/json" \ + -d '{"customer":"smoke","sku":"BK-1","quantity":2,"priority":true}' | grep -q '"route":"air"' + curl -fsS "http://127.0.0.1:${smoke_http_port}/platform/content/html" | grep -q '

dropwizard

' + test "$(curl -sS -o /tmp/dropwizard-missing.json -w '%{http_code}' "http://127.0.0.1:${smoke_http_port}/catalog/MISSING")" = "404" + grep -q '"error":"not_found"' /tmp/dropwizard-missing.json + + cleanup + trap - EXIT + test -s target/smoke-jacoco.exec diff --git a/.github/workflows/java-dedup.yml b/.github/workflows/java-dedup.yml new file mode 100644 index 00000000..de8a4628 --- /dev/null +++ b/.github/workflows/java-dedup.yml @@ -0,0 +1,44 @@ +name: Java Dedup Sample + +on: + pull_request: + branches: [main] + push: + branches: [main] + +jobs: + build: + name: JDK ${{ matrix.java-version }} + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + java-version: ["8", "17", "21"] + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up JDK ${{ matrix.java-version }} + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: ${{ matrix.java-version }} + cache: maven + + - name: Build java-dedup without Keploy compile dependency + working-directory: java-dedup + run: mvn -B -DskipTests clean package + + - name: Verify Keploy is not a compile-time dependency + working-directory: java-dedup + run: | + set -euo pipefail + mvn -B dependency:tree -Dincludes=io.keploy:keploy-sdk -DoutputFile=target/keploy-dependency-tree.txt + if grep -q "io.keploy:keploy-sdk" target/keploy-dependency-tree.txt; then + cat target/keploy-dependency-tree.txt + exit 1 + fi + if grep -R "io.keploy\\.dedup\\|io.keploy\\.servlet\\|KeployDedupAgent\\|KeployMiddleware" src/main/java; then + exit 1 + fi diff --git a/README.md b/README.md index 4be947f3..497f9d37 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ This repo contains the sample for [Keploy's](https://keploy.io) Java Application 5. [Springboot PetClinic](https://github.com/keploy/samples-java/tree/main/spring-petclinic) - This is a Pet Clinic app where you can record testcases and mocks by interacting with the UI, and then test them using Keploy. 6. [SAP Demo (Customer 360)](https://github.com/keploy/samples-java/tree/main/sap-demo-java) - A Spring Boot "Customer 360" API that fronts SAP S/4HANA Cloud (Business Partner + Sales Order OData) and a local PostgreSQL store. Includes docker-compose, a kind-based k8s deploy, and Tosca-style flow scripts suitable for recording end-to-end Keploy testcases against PostgreSQL + outbound SAP HTTPS. 7. [Java Dynamic Deduplication](https://github.com/keploy/samples-java/tree/main/java-dedup) - A Spring Boot sample used by CI to validate Enterprise Java dynamic dedup in native, Docker, and restricted Docker replay runs. CI uses checked-in fixtures and does not record this sample in the pipeline. +8. [Dropwizard Dynamic Deduplication](https://github.com/keploy/samples-java/tree/main/dropwizard-dedup) - A Dropwizard/Jersey sample used by Enterprise CI to validate that Java dynamic dedup works outside Spring Boot with the runtime Java agent, checked-in HTTP fixtures, native launch, classpath launch, Docker, distroless, and restricted Docker. ## Community Support ❤️ diff --git a/dropwizard-dedup/.dockerignore b/dropwizard-dedup/.dockerignore new file mode 100644 index 00000000..2420f97d --- /dev/null +++ b/dropwizard-dedup/.dockerignore @@ -0,0 +1,6 @@ +target +keploy/reports +dedupData.yaml +duplicates.yaml +replay-*.log +dedup-*.log diff --git a/dropwizard-dedup/.gitignore b/dropwizard-dedup/.gitignore new file mode 100644 index 00000000..eea631b8 --- /dev/null +++ b/dropwizard-dedup/.gitignore @@ -0,0 +1,3 @@ +/target/ +/*.log +/META-INF/ diff --git a/dropwizard-dedup/Dockerfile b/dropwizard-dedup/Dockerfile new file mode 100644 index 00000000..16994ad4 --- /dev/null +++ b/dropwizard-dedup/Dockerfile @@ -0,0 +1,15 @@ +ARG JAVA_VERSION=8 +FROM eclipse-temurin:${JAVA_VERSION}-jre + +WORKDIR /app + +RUN groupadd --gid 10001 appuser \ + && useradd --uid 10001 --gid 10001 --home-dir /home/appuser --create-home --shell /usr/sbin/nologin appuser + +COPY --chown=10001:10001 target/dropwizard-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar +COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar +COPY --chown=10001:10001 config.yml /app/config.yml +EXPOSE 8080 +USER 10001:10001 +ENTRYPOINT ["java", "-javaagent:/app/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar", "server", "/app/config.yml"] diff --git a/dropwizard-dedup/Dockerfile.classpath b/dropwizard-dedup/Dockerfile.classpath new file mode 100644 index 00000000..0e26748d --- /dev/null +++ b/dropwizard-dedup/Dockerfile.classpath @@ -0,0 +1,19 @@ +ARG JAVA_VERSION=8 +FROM eclipse-temurin:${JAVA_VERSION}-jre + +WORKDIR /app + +RUN groupadd --gid 10001 appuser \ + && useradd --uid 10001 --gid 10001 --home-dir /home/appuser --create-home --shell /usr/sbin/nologin appuser + +COPY --chown=10001:10001 target/classes /app/classes +COPY --chown=10001:10001 target/dependency /app/libs +COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar +COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar +COPY --chown=10001:10001 config.yml /app/config.yml + +ENV KEPLOY_JAVA_CLASS_DIRS=/app/classes + +EXPOSE 8080 +USER 10001:10001 +ENTRYPOINT ["java", "-javaagent:/app/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-cp", "/app/classes:/app/libs/*", "io.keploy.samples.dropwizarddedup.DropwizardDedupApplication", "server", "/app/config.yml"] diff --git a/dropwizard-dedup/Dockerfile.distroless b/dropwizard-dedup/Dockerfile.distroless new file mode 100644 index 00000000..d999f71a --- /dev/null +++ b/dropwizard-dedup/Dockerfile.distroless @@ -0,0 +1,16 @@ +FROM eclipse-temurin:17-jre AS base + +FROM gcr.io/distroless/java17-debian12:nonroot +WORKDIR /app + +COPY --from=base /opt/java/openjdk /opt/java/openjdk +COPY --chown=nonroot:nonroot target/dropwizard-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=nonroot:nonroot target/keploy-sdk.jar /app/keploy-sdk.jar +COPY --chown=nonroot:nonroot target/jacocoagent.jar /app/jacocoagent.jar +COPY --chown=nonroot:nonroot config.yml /app/config.yml + +ENV JAVA_HOME=/opt/java/openjdk +ENV PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + +EXPOSE 8080 +ENTRYPOINT ["java", "-javaagent:/app/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar", "server", "/app/config.yml"] diff --git a/dropwizard-dedup/README.md b/dropwizard-dedup/README.md new file mode 100644 index 00000000..e674341c --- /dev/null +++ b/dropwizard-dedup/README.md @@ -0,0 +1,24 @@ +# Dropwizard Dynamic Deduplication Sample + +This sample validates that Keploy Java dynamic deduplication works for a non-Spring Java service. The app is a Dropwizard/Jersey HTTP service and does not import or depend on the Keploy SDK at compile time. + +Build without Keploy on the compile classpath: + +```bash +mvn -B -DskipTests clean package +``` + +Build with the runtime Java agent copied into `target/keploy-sdk.jar`: + +```bash +mvn -B -DskipTests -Dkeploy.agent.version=2.0.1 clean package +``` + +Run with the agent: + +```bash +java \ + -javaagent:target/keploy-sdk.jar \ + -javaagent:target/jacocoagent.jar=destfile=/tmp/jacoco.exec \ + -jar target/dropwizard-dedup-0.0.1-SNAPSHOT.jar server config.yml +``` diff --git a/dropwizard-dedup/config.yml b/dropwizard-dedup/config.yml new file mode 100644 index 00000000..540bcebc --- /dev/null +++ b/dropwizard-dedup/config.yml @@ -0,0 +1,12 @@ +server: + applicationConnectors: + - type: http + port: ${DW_HTTP_PORT:-8080} + adminConnectors: + - type: http + port: ${DW_ADMIN_PORT:-8081} + +logging: + level: WARN + appenders: + - type: console diff --git a/dropwizard-dedup/docker-compose.classpath.yml b/dropwizard-dedup/docker-compose.classpath.yml new file mode 100644 index 00000000..6c2b31c9 --- /dev/null +++ b/dropwizard-dedup/docker-compose.classpath.yml @@ -0,0 +1,4 @@ +services: + dropwizard-dedup: + build: + dockerfile: Dockerfile.classpath diff --git a/dropwizard-dedup/docker-compose.distroless.yml b/dropwizard-dedup/docker-compose.distroless.yml new file mode 100644 index 00000000..42cf8edb --- /dev/null +++ b/dropwizard-dedup/docker-compose.distroless.yml @@ -0,0 +1,4 @@ +services: + dropwizard-dedup: + build: + dockerfile: Dockerfile.distroless diff --git a/dropwizard-dedup/docker-compose.restricted.yml b/dropwizard-dedup/docker-compose.restricted.yml new file mode 100644 index 00000000..4db205be --- /dev/null +++ b/dropwizard-dedup/docker-compose.restricted.yml @@ -0,0 +1,7 @@ +services: + dropwizard-dedup: + read_only: true + cap_drop: + - ALL + security_opt: + - no-new-privileges:true diff --git a/dropwizard-dedup/docker-compose.yml b/dropwizard-dedup/docker-compose.yml new file mode 100644 index 00000000..f39df96e --- /dev/null +++ b/dropwizard-dedup/docker-compose.yml @@ -0,0 +1,13 @@ +services: + dropwizard-dedup: + image: ${JAVA_DEDUP_IMAGE:-dropwizard-dedup:local} + build: + context: . + dockerfile: Dockerfile + args: + JAVA_VERSION: ${JAVA_VERSION:-8} + environment: + KEPLOY_JAVA_DEDUP_DIAGNOSTICS: ${KEPLOY_JAVA_DEDUP_DIAGNOSTICS:-} + container_name: dedup-java + ports: + - "${JAVA_DEDUP_HOST_PORT:-8080}:8080" diff --git a/dropwizard-dedup/keploy.yml b/dropwizard-dedup/keploy.yml new file mode 100644 index 00000000..c756c59c --- /dev/null +++ b/dropwizard-dedup/keploy.yml @@ -0,0 +1,91 @@ +# Generated by Keploy (3-dev) +path: "" +appId: 0 +appName: "" +command: "" +templatize: + testSets: [] +port: 0 +proxyPort: 16789 +incomingProxyPort: 36789 +dnsPort: 26789 +debug: false +disableANSI: false +disableTele: false +generateGithubActions: false +containerName: "" +networkName: "" +buildDelay: 30 +test: + selectedTests: {} + ignoredTests: {} + globalNoise: + global: {} + test-sets: {} + replaceWith: + global: {} + test-sets: {} + delay: 5 + host: "localhost" + port: 0 + grpcPort: 0 + ssePort: 0 + protocol: + http: + port: 0 + sse: + port: 0 + grpc: + port: 0 + apiTimeout: 5 + skipCoverage: false + coverageReportPath: "" + ignoreOrdering: true + mongoPassword: "default@123" + language: "" + removeUnusedMocks: false + fallBackOnMiss: false + jacocoAgentPath: "" + basePath: "" + mocking: true + disableLineCoverage: false + disableMockUpload: false + useLocalMock: false + updateTemplate: false + mustPass: false + maxFailAttempts: 5 + maxFlakyChecks: 1 + protoFile: "" + protoDir: "" + protoInclude: [] + compareAll: false + updateTestMapping: false + disableAutoHeaderNoise: false + strictMockWindow: true + dedup: false + freezeTime: false + fuzzyMatch: false +record: + recordTimer: 0s + filters: [] + sync: false + memoryLimit: 0 +configPath: "" +bypassRules: [] +disableMapping: true +contract: + driven: "consumer" + mappings: + servicesMapping: {} + self: "s1" + services: [] + tests: [] + path: "" + download: false + generate: false +inCi: false +cmdType: "native" +enableTesting: false +inDocker: false +keployContainer: "keploy-v3" +keployNetwork: "keploy-network" diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-1.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-1.yaml new file mode 100644 index 00000000..c4b0e3b0 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-1.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-1 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/healthz \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-10.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-10.yaml new file mode 100644 index 00000000..4bd626c5 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-10.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-10 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-42 + header: + Accept: '*/*' + Content-Type: application/json + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: '{"status":"shipped"}' + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"orderId":"ORD-42","status":"shipped","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-42 \ + --header 'Content-Type: application/json' \ + --data '{"status":"shipped"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-11.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-11.yaml new file mode 100644 index 00000000..de51c8d4 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-11.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-11 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-42 + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"orderId":"ORD-42","deleted":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request DELETE \ + --url http://127.0.0.1:8080/orders/ORD-42 \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-12.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-12.yaml new file mode 100644 index 00000000..ea23727b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-12.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-12 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/reports/2026/q1.csv?download=true + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"requested_file":"/reports/2026/q1.csv","download":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/reports/2026/q1.csv?download=true' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-13.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-13.yaml new file mode 100644 index 00000000..73ff3a84 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-13.yaml @@ -0,0 +1,41 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-13 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/headers + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + X-Request-Id: req-123 + X-Tenant: flipkart + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"tenant":"flipkart","requestId":"req-123"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/headers \ + --header 'X-Tenant: flipkart' \ + --header 'X-Request-Id: req-123' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-14.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-14.yaml new file mode 100644 index 00000000..bd4816ce --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-14.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-14 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/platform/routes/us-east/az1 + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"region":"us-east","zone":"az1","target":"us-east-az1-api"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/platform/routes/us-east/az1 \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-15.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-15.yaml new file mode 100644 index 00000000..e1e92e97 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-15.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-15 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/platform/content/html + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: text/html + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '

dropwizard

' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/platform/content/html \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-16.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-16.yaml new file mode 100644 index 00000000..64a1f78b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-16.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-16 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/MISSING + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 404 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/MISSING \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-2.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-2.yaml new file mode 100644 index 00000000..efdcd8d0 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-2.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-2 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=books&limit=2 + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"category":"books","limit":2,"items":[{"sku":"BK-1","name":"Clean Architecture","category":"books","status":"available","price":"32.50"},{"sku":"BK-2","name":"Effective Java","category":"books","status":"available","price":"45.00"}],"source":"warehouse-a"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=books&limit=2' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-3.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-3.yaml new file mode 100644 index 00000000..3b8329f5 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-3.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-3 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=electronics&limit=1 + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"category":"electronics","limit":1,"items":[{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"}],"source":"warehouse-b"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=electronics&limit=1' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-4.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-4.yaml new file mode 100644 index 00000000..09ab199a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-4.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-4 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/BK-1 + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"sku":"BK-1","name":"Clean Architecture","category":"books","status":"available","price":"32.50"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/BK-1 \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-5.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-5.yaml new file mode 100644 index 00000000..3c21108d --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-5.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-5 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=phone&sort=price + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"term":"phone","sort":"price","ranking":"discount-first","hits":[{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"},{"sku":"BK-1","name":"Clean Architecture","category":"books","status":"available","price":"32.50"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=phone&sort=price' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-6.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-6.yaml new file mode 100644 index 00000000..0dde8163 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-6.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-6 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=phone&sort=relevance + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"term":"phone","sort":"relevance","ranking":"relevance-first","hits":[{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"},{"sku":"BK-1","name":"Clean Architecture","category":"books","status":"available","price":"32.50"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=phone&sort=relevance' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-7.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-7.yaml new file mode 100644 index 00000000..dabcb77b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-7.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-7 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Accept: '*/*' + Content-Type: application/json + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: '{"customer":"ashish","sku":"BK-1","quantity":2,"priority":false}' + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 201 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"orderId":"ORD-STANDARD","customer":"ashish","sku":"BK-1","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Content-Type: application/json' \ + --data '{"customer":"ashish","sku":"BK-1","quantity":2,"priority":false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-8.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-8.yaml new file mode 100644 index 00000000..5ce2ae60 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-8.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-8 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Accept: '*/*' + Content-Type: application/json + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: '{"customer":"flipkart","sku":"EL-1","quantity":1,"priority":true}' + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 201 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"orderId":"ORD-PRIORITY","customer":"flipkart","sku":"EL-1","quantity":1,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Content-Type: application/json' \ + --data '{"customer":"flipkart","sku":"EL-1","quantity":1,"priority":true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-9.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-9.yaml new file mode 100644 index 00000000..1a4619ae --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-9.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-9 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-42?expand=true + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-30T04:48:59Z + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Thu, 30 Apr 2026 04:48:59 GMT + body: '{"orderId":"ORD-42","status":"packed","expand":true,"audit":["created","paid","packed"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T04:48:59Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + created: 1777524539 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/orders/ORD-42?expand=true' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' diff --git a/dropwizard-dedup/pom.xml b/dropwizard-dedup/pom.xml new file mode 100644 index 00000000..d8100ebc --- /dev/null +++ b/dropwizard-dedup/pom.xml @@ -0,0 +1,149 @@ + + + 4.0.0 + + io.keploy.samples + dropwizard-dedup + 0.0.1-SNAPSHOT + dropwizard-dedup + Keploy Java dynamic deduplication Dropwizard sample + + + 2.1.12 + 0.8.12 + 1.8 + 1.8 + UTF-8 + + + + + + io.dropwizard + dropwizard-dependencies + ${dropwizard.version} + pom + import + + + + + + + io.dropwizard + dropwizard-core + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + org.apache.maven.plugins + maven-shade-plugin + 3.5.3 + + false + + + + io.keploy.samples.dropwizarddedup.DropwizardDedupApplication + + + + + + package + + shade + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + copy-jacoco-agent + package + + copy + + + + + org.jacoco + org.jacoco.agent + ${jacoco.version} + runtime + jar + ${project.build.directory} + jacocoagent.jar + + + + + + copy-runtime-dependencies + package + + copy-dependencies + + + runtime + ${project.build.directory}/dependency + + + + + + + + + + copy-keploy-agent + + + keploy.agent.version + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + copy-keploy-java-agent + package + + copy + + + + + io.keploy + keploy-sdk + ${keploy.agent.version} + ${project.build.directory} + keploy-sdk.jar + + + + + + + + + + + diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupApplication.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupApplication.java new file mode 100644 index 00000000..21e46788 --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupApplication.java @@ -0,0 +1,43 @@ +package io.keploy.samples.dropwizarddedup; + +import io.dropwizard.Application; +import io.dropwizard.configuration.EnvironmentVariableSubstitutor; +import io.dropwizard.configuration.SubstitutingSourceProvider; +import io.dropwizard.setup.Bootstrap; +import io.dropwizard.setup.Environment; +import io.keploy.samples.dropwizarddedup.core.CatalogService; +import io.keploy.samples.dropwizarddedup.errors.ApiExceptionMapper; +import io.keploy.samples.dropwizarddedup.health.ApplicationHealthCheck; +import io.keploy.samples.dropwizarddedup.resources.InventoryResource; +import io.keploy.samples.dropwizarddedup.resources.OrderResource; +import io.keploy.samples.dropwizarddedup.resources.PlatformResource; + +public class DropwizardDedupApplication extends Application { + + public static void main(String[] args) throws Exception { + new DropwizardDedupApplication().run(args); + } + + @Override + public String getName() { + return "dropwizard-dedup"; + } + + @Override + public void initialize(Bootstrap bootstrap) { + bootstrap.setConfigurationSourceProvider(new SubstitutingSourceProvider( + bootstrap.getConfigurationSourceProvider(), + new EnvironmentVariableSubstitutor(false) + )); + } + + @Override + public void run(DropwizardDedupConfiguration configuration, Environment environment) { + CatalogService catalogService = new CatalogService(); + environment.jersey().register(new InventoryResource(catalogService)); + environment.jersey().register(new OrderResource(catalogService)); + environment.jersey().register(new PlatformResource()); + environment.jersey().register(new ApiExceptionMapper()); + environment.healthChecks().register("application", new ApplicationHealthCheck()); + } +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupConfiguration.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupConfiguration.java new file mode 100644 index 00000000..77ec425e --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/DropwizardDedupConfiguration.java @@ -0,0 +1,6 @@ +package io.keploy.samples.dropwizarddedup; + +import io.dropwizard.Configuration; + +public class DropwizardDedupConfiguration extends Configuration { +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/CatalogService.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/CatalogService.java new file mode 100644 index 00000000..c842d704 --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/CatalogService.java @@ -0,0 +1,97 @@ +package io.keploy.samples.dropwizarddedup.core; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + +public class CatalogService { + + public Map catalog(String category, int limit) { + Map response = map( + "category", category, + "limit", limit + ); + response.put("items", selectItems(category, limit)); + response.put("source", category.equals("electronics") ? "warehouse-b" : "warehouse-a"); + return response; + } + + public Map item(String sku) { + if ("BK-1".equals(sku)) { + return item("BK-1", "Clean Architecture", "books", "available", "32.50"); + } + if ("EL-1".equals(sku)) { + return item("EL-1", "Noise Cancelling Headphones", "electronics", "backorder", "199.99"); + } + return null; + } + + public Map search(String term, String sort) { + Map response = map("term", term, "sort", sort); + response.put("ranking", "price".equals(sort) ? "discount-first" : "relevance-first"); + response.put("hits", Arrays.asList( + item("EL-1", "Noise Cancelling Headphones", "electronics", "backorder", "199.99"), + item("BK-1", "Clean Architecture", "books", "available", "32.50") + )); + return response; + } + + public Map order(String customer, String sku, int quantity, boolean priority) { + Map response = map( + "orderId", priority ? "ORD-PRIORITY" : "ORD-STANDARD", + "customer", customer, + "sku", sku, + "quantity", quantity, + "priority", priority, + "route", priority ? "air" : "ground" + ); + response.put("checks", Arrays.asList("inventory", "pricing", priority ? "expedite" : "standard")); + return response; + } + + public Map orderStatus(String orderId, boolean expand) { + Map response = map( + "orderId", orderId, + "status", "packed", + "expand", expand + ); + if (expand) { + response.put("audit", Arrays.asList("created", "paid", "packed")); + } + return response; + } + + public Map updateOrder(String orderId, String status) { + return map("orderId", orderId, "status", status, "updated", true); + } + + public Map deleteOrder(String orderId) { + return map("orderId", orderId, "deleted", true); + } + + private List> selectItems(String category, int limit) { + List> items = new ArrayList>(); + if ("electronics".equals(category)) { + items.add(item("EL-1", "Noise Cancelling Headphones", "electronics", "backorder", "199.99")); + items.add(item("EL-2", "USB-C Dock", "electronics", "available", "89.00")); + } else { + items.add(item("BK-1", "Clean Architecture", "books", "available", "32.50")); + items.add(item("BK-2", "Effective Java", "books", "available", "45.00")); + } + return items.subList(0, Math.min(Math.max(limit, 0), items.size())); + } + + private Map item(String sku, String name, String category, String status, String price) { + return map("sku", sku, "name", name, "category", category, "status", status, "price", price); + } + + public static Map map(Object... values) { + Map response = new LinkedHashMap(); + for (int i = 0; i < values.length; i += 2) { + response.put(String.valueOf(values[i]), values[i + 1]); + } + return response; + } +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/OrderRequest.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/OrderRequest.java new file mode 100644 index 00000000..79f28afe --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/core/OrderRequest.java @@ -0,0 +1,53 @@ +package io.keploy.samples.dropwizarddedup.core; + +import com.fasterxml.jackson.annotation.JsonProperty; + +public class OrderRequest { + private String customer; + private String sku; + private int quantity; + private boolean priority; + private String status; + + public String getCustomer() { + return customer; + } + + public void setCustomer(String customer) { + this.customer = customer; + } + + public String getSku() { + return sku; + } + + public void setSku(String sku) { + this.sku = sku; + } + + public int getQuantity() { + return quantity; + } + + public void setQuantity(int quantity) { + this.quantity = quantity; + } + + @JsonProperty("priority") + public boolean isPriority() { + return priority; + } + + @JsonProperty("priority") + public void setPriority(boolean priority) { + this.priority = priority; + } + + public String getStatus() { + return status == null ? "packed" : status; + } + + public void setStatus(String status) { + this.status = status; + } +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/errors/ApiExceptionMapper.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/errors/ApiExceptionMapper.java new file mode 100644 index 00000000..d6b365f1 --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/errors/ApiExceptionMapper.java @@ -0,0 +1,21 @@ +package io.keploy.samples.dropwizarddedup.errors; + +import io.keploy.samples.dropwizarddedup.core.CatalogService; + +import javax.ws.rs.WebApplicationException; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.ws.rs.ext.ExceptionMapper; + +public class ApiExceptionMapper implements ExceptionMapper { + + @Override + public Response toResponse(WebApplicationException exception) { + Response source = exception.getResponse(); + int status = source == null ? 500 : source.getStatus(); + return Response.status(status) + .type(MediaType.APPLICATION_JSON_TYPE) + .entity(CatalogService.map("error", status == 404 ? "not_found" : "request_failed", "status", status)) + .build(); + } +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/health/ApplicationHealthCheck.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/health/ApplicationHealthCheck.java new file mode 100644 index 00000000..36e62a7d --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/health/ApplicationHealthCheck.java @@ -0,0 +1,11 @@ +package io.keploy.samples.dropwizarddedup.health; + +import com.codahale.metrics.health.HealthCheck; + +public class ApplicationHealthCheck extends HealthCheck { + + @Override + protected Result check() { + return Result.healthy(); + } +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/InventoryResource.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/InventoryResource.java new file mode 100644 index 00000000..bba1376d --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/InventoryResource.java @@ -0,0 +1,71 @@ +package io.keploy.samples.dropwizarddedup.resources; + +import io.keploy.samples.dropwizarddedup.core.CatalogService; + +import javax.ws.rs.GET; +import javax.ws.rs.HeaderParam; +import javax.ws.rs.NotFoundException; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.MediaType; +import java.util.Map; + +@Path("/") +@Produces(MediaType.APPLICATION_JSON) +public class InventoryResource { + + private final CatalogService catalogService; + + public InventoryResource(CatalogService catalogService) { + this.catalogService = catalogService; + } + + @GET + @Path("/healthz") + public Map healthz() { + return CatalogService.map("healthy", true); + } + + @GET + @Path("/catalog") + public Map catalog(@QueryParam("category") String category, + @QueryParam("limit") Integer limit) { + return catalogService.catalog(category == null ? "books" : category, limit == null ? 2 : limit); + } + + @GET + @Path("/catalog/{sku}") + public Map item(@PathParam("sku") String sku) { + Map item = catalogService.item(sku); + if (item == null) { + throw new NotFoundException(); + } + return item; + } + + @GET + @Path("/search") + public Map search(@QueryParam("term") String term, + @QueryParam("sort") String sort) { + return catalogService.search(term == null ? "" : term, sort == null ? "relevance" : sort); + } + + @GET + @Path("/files/{path: .+}") + public Map file(@PathParam("path") String path, + @QueryParam("download") boolean download) { + return CatalogService.map("requested_file", "/" + path, "download", download); + } + + @GET + @Path("/headers") + public Map headers(@HeaderParam("X-Tenant") String tenant, + @HeaderParam("X-Request-Id") String requestId) { + return CatalogService.map( + "tenant", tenant == null ? "default" : tenant, + "requestId", requestId == null ? "missing" : requestId + ); + } +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/OrderResource.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/OrderResource.java new file mode 100644 index 00000000..be85f176 --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/OrderResource.java @@ -0,0 +1,58 @@ +package io.keploy.samples.dropwizarddedup.resources; + +import io.keploy.samples.dropwizarddedup.core.CatalogService; +import io.keploy.samples.dropwizarddedup.core.OrderRequest; + +import javax.ws.rs.DELETE; +import javax.ws.rs.GET; +import javax.ws.rs.POST; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import java.util.Map; + +@Path("/orders") +@Produces(MediaType.APPLICATION_JSON) +public class OrderResource { + + private final CatalogService catalogService; + + public OrderResource(CatalogService catalogService) { + this.catalogService = catalogService; + } + + @POST + public Response create(OrderRequest request) { + Map response = catalogService.order( + request.getCustomer(), + request.getSku(), + request.getQuantity(), + request.isPriority() + ); + return Response.status(Response.Status.CREATED).entity(response).build(); + } + + @GET + @Path("/{orderId}") + public Map status(@PathParam("orderId") String orderId, + @QueryParam("expand") boolean expand) { + return catalogService.orderStatus(orderId, expand); + } + + @PUT + @Path("/{orderId}") + public Map update(@PathParam("orderId") String orderId, + OrderRequest request) { + return catalogService.updateOrder(orderId, request.getStatus()); + } + + @DELETE + @Path("/{orderId}") + public Map delete(@PathParam("orderId") String orderId) { + return catalogService.deleteOrder(orderId); + } +} diff --git a/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/PlatformResource.java b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/PlatformResource.java new file mode 100644 index 00000000..e845b4ea --- /dev/null +++ b/dropwizard-dedup/src/main/java/io/keploy/samples/dropwizarddedup/resources/PlatformResource.java @@ -0,0 +1,39 @@ +package io.keploy.samples.dropwizarddedup.resources; + +import io.keploy.samples.dropwizarddedup.core.CatalogService; + +import javax.ws.rs.GET; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import java.util.Map; + +@Path("/platform") +public class PlatformResource { + + @GET + @Path("/routes/{region}/{zone}") + @Produces(MediaType.APPLICATION_JSON) + public Map route(@PathParam("region") String region, + @PathParam("zone") String zone) { + return CatalogService.map("region", region, "zone", zone, "target", region + "-" + zone + "-api"); + } + + @POST + @Path("/events") + @Produces(MediaType.APPLICATION_JSON) + public Map event(Map event) { + Object type = event.get("type"); + return CatalogService.map("accepted", true, "type", type == null ? "unknown" : type, "normalized", true); + } + + @GET + @Path("/content/html") + @Produces(MediaType.TEXT_HTML) + public Response html() { + return Response.ok("

dropwizard

", MediaType.TEXT_HTML_TYPE).build(); + } +} diff --git a/java-dedup/Dockerfile b/java-dedup/Dockerfile index dd7e4aa2..947337c5 100644 --- a/java-dedup/Dockerfile +++ b/java-dedup/Dockerfile @@ -7,7 +7,8 @@ RUN groupadd --gid 10001 appuser \ && useradd --uid 10001 --gid 10001 --home-dir /home/appuser --create-home --shell /usr/sbin/nologin appuser COPY --chown=10001:10001 target/java-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar EXPOSE 8080 USER 10001:10001 -ENTRYPOINT ["java", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar"] +ENTRYPOINT ["java", "-javaagent:/app/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar"] diff --git a/java-dedup/Dockerfile.classpath b/java-dedup/Dockerfile.classpath index 942daa2e..83eb9382 100644 --- a/java-dedup/Dockerfile.classpath +++ b/java-dedup/Dockerfile.classpath @@ -8,10 +8,11 @@ RUN groupadd --gid 10001 appuser \ COPY --chown=10001:10001 target/classes /app/classes COPY --chown=10001:10001 target/dependency /app/libs +COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar ENV KEPLOY_JAVA_CLASS_DIRS=/app/classes EXPOSE 8080 USER 10001:10001 -ENTRYPOINT ["java", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-cp", "/app/classes:/app/libs/*", "io.keploy.samples.javadedup.JavaDedupApplication"] +ENTRYPOINT ["java", "-javaagent:/app/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-cp", "/app/classes:/app/libs/*", "io.keploy.samples.javadedup.JavaDedupApplication"] diff --git a/java-dedup/Dockerfile.distroless b/java-dedup/Dockerfile.distroless index a2923857..31e60eb8 100644 --- a/java-dedup/Dockerfile.distroless +++ b/java-dedup/Dockerfile.distroless @@ -3,8 +3,9 @@ FROM gcr.io/distroless/java17-debian12:nonroot WORKDIR /app COPY --chown=10001:10001 target/java-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar EXPOSE 8080 USER 10001:10001 -ENTRYPOINT ["java", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar"] +ENTRYPOINT ["java", "-javaagent:/app/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar"] diff --git a/java-dedup/README.md b/java-dedup/README.md index ac085223..cff87cf8 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -4,21 +4,23 @@ A Spring Boot application used by Keploy CI to validate Java dynamic deduplicati CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup`. -The Java SDK reads JaCoCo coverage in-process via `org.jacoco.agent.rt.RT.getAgent().getExecutionData(...)`, so attaching the JaCoCo Java agent is enough — no TCP server, no port choice, no `--pass-through-ports`. +The Keploy Java SDK is attached as a Java agent at replay time. The sample does not compile against `io.keploy:keploy-sdk` and does not import Keploy classes in application code. + +The SDK reads JaCoCo coverage in-process via `org.jacoco.agent.rt.RT.getAgent().getExecutionData(...)`, so attach both agents when running dynamic deduplication: the Keploy agent for the control/data socket protocol, and the JaCoCo agent for runtime coverage. ## Setup ```bash -mvn -B -DskipTests clean package +mvn -B -DskipTests -Dkeploy.agent.version=2.0.1 clean package ``` -This builds the sample against the released Keploy Java SDK, produces `target/java-dedup-0.0.1-SNAPSHOT.jar`, and copies `target/jacocoagent.jar` next to it. +This produces `target/java-dedup-0.0.1-SNAPSHOT.jar`, copies `target/keploy-sdk.jar`, and copies `target/jacocoagent.jar` next to it. Use the released Keploy Java SDK version that includes Java-agent support. ## Run dedup natively ```bash keploy test \ - -c "java -javaagent:target/jacocoagent.jar -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ + -c "java -javaagent:target/keploy-sdk.jar -javaagent:target/jacocoagent.jar -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ --dedup --language java --delay 1 \ --health-url "http://127.0.0.1:8080/healthz" \ --health-poll-timeout 30s \ @@ -64,4 +66,4 @@ keploy dedup --path . During direct `docker run`, Enterprise injects the same shared `/tmp` volume into the app container. Do not pass your own `/tmp` mount in the app command. -The CI pipeline also validates additional production-style Docker layouts for the same app, including direct Docker run, exploded classpath, restricted runtime, and distroless packaging. +The CI pipeline also validates additional production-style layouts for the same app, including native classpath, direct Docker run, Docker Compose, exploded classpath images, restricted runtime, restricted classpath, and distroless packaging. diff --git a/java-dedup/pom.xml b/java-dedup/pom.xml index 1a1c00a6..34b6b33f 100644 --- a/java-dedup/pom.xml +++ b/java-dedup/pom.xml @@ -19,7 +19,6 @@ 1.8 - 2.0.0 0.8.12 @@ -28,11 +27,6 @@ org.springframework.boot spring-boot-starter-web - - io.keploy - keploy-sdk - ${keploy.sdk.version} - @@ -81,4 +75,44 @@ + + + + copy-keploy-agent + + + keploy.agent.version + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.6.1 + + + copy-keploy-java-agent + package + + copy + + + + + io.keploy + keploy-sdk + ${keploy.agent.version} + ${project.build.directory} + keploy-sdk.jar + + + + + + + + + + diff --git a/java-dedup/src/main/java/io/keploy/samples/javadedup/JavaDedupApplication.java b/java-dedup/src/main/java/io/keploy/samples/javadedup/JavaDedupApplication.java index f9a4dee2..c97f9633 100644 --- a/java-dedup/src/main/java/io/keploy/samples/javadedup/JavaDedupApplication.java +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/JavaDedupApplication.java @@ -1,12 +1,9 @@ package io.keploy.samples.javadedup; -import io.keploy.servlet.KeployMiddleware; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Import; @SpringBootApplication -@Import(KeployMiddleware.class) public class JavaDedupApplication { public static void main(String[] args) { From 347d2e65cabfd1703f196ec5091623438eb5394e Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 11:05:30 +0530 Subject: [PATCH 2/8] test: require checked-in dedup fixtures Signed-off-by: Asish Kumar --- .github/workflows/dropwizard-dedup.yml | 9 +++++++++ .github/workflows/java-dedup.yml | 9 +++++++++ dropwizard-dedup/README.md | 2 ++ java-dedup/README.md | 2 +- 4 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dropwizard-dedup.yml b/.github/workflows/dropwizard-dedup.yml index 55b19dbc..2d1c1cb4 100644 --- a/.github/workflows/dropwizard-dedup.yml +++ b/.github/workflows/dropwizard-dedup.yml @@ -26,6 +26,15 @@ jobs: java-version: ${{ matrix.java-version }} cache: maven + - name: Verify checked-in replay fixtures + working-directory: dropwizard-dedup + run: | + set -euo pipefail + fixture_count="$(find keploy -path '*/tests/test-*.yaml' -size +100c | wc -l | tr -d ' ')" + tracked_count="$(git ls-files 'keploy/test-set-*/tests/test-*.yaml' | wc -l | tr -d ' ')" + test "${fixture_count}" = "16" + test "${tracked_count}" = "16" + - name: Build dropwizard-dedup without Keploy compile dependency working-directory: dropwizard-dedup run: mvn -B -DskipTests clean package diff --git a/.github/workflows/java-dedup.yml b/.github/workflows/java-dedup.yml index de8a4628..8ae55d11 100644 --- a/.github/workflows/java-dedup.yml +++ b/.github/workflows/java-dedup.yml @@ -26,6 +26,15 @@ jobs: java-version: ${{ matrix.java-version }} cache: maven + - name: Verify checked-in replay fixtures + working-directory: java-dedup + run: | + set -euo pipefail + fixture_count="$(find keploy -path '*/tests/test-*.yaml' -size +100c | wc -l | tr -d ' ')" + tracked_count="$(git ls-files 'keploy/test-set-*/tests/test-*.yaml' | wc -l | tr -d ' ')" + test "${fixture_count}" = "1000" + test "${tracked_count}" = "1000" + - name: Build java-dedup without Keploy compile dependency working-directory: java-dedup run: mvn -B -DskipTests clean package diff --git a/dropwizard-dedup/README.md b/dropwizard-dedup/README.md index e674341c..4e1a1d36 100644 --- a/dropwizard-dedup/README.md +++ b/dropwizard-dedup/README.md @@ -2,6 +2,8 @@ This sample validates that Keploy Java dynamic deduplication works for a non-Spring Java service. The app is a Dropwizard/Jersey HTTP service and does not import or depend on the Keploy SDK at compile time. +CI does not record this sample. The `keploy/` directory contains checked-in fixtures, so Enterprise CI only builds the app and runs replay with `--dedup`. When the sample behavior changes, record the fixtures locally and push the updated `keploy/` files. + Build without Keploy on the compile classpath: ```bash diff --git a/java-dedup/README.md b/java-dedup/README.md index cff87cf8..93b4c784 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -2,7 +2,7 @@ A Spring Boot application used by Keploy CI to validate Java dynamic deduplication. It mirrors the Go dedup sample by exposing a broad set of endpoints and committing 1000 replay fixtures across four testsets. -CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup`. +CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup`. When the sample behavior changes, record the fixtures locally and push the updated `keploy/` files. The Keploy Java SDK is attached as a Java agent at replay time. The sample does not compile against `io.keploy:keploy-sdk` and does not import Keploy classes in application code. From b8c92a745e99dcdc5b58a7d9e1dceca2573f9bdd Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 11:33:51 +0530 Subject: [PATCH 3/8] test: reduce java dedup fixtures Signed-off-by: Asish Kumar --- .github/workflows/java-dedup.yml | 4 +- java-dedup/README.md | 10 ++--- .../keploy/test-set-0/tests/test-102.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-103.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-104.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-105.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-106.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-107.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-108.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-109.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-110.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-111.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-112.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-113.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-114.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-115.yaml | 40 ------------------ .../keploy/test-set-0/tests/test-116.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-117.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-118.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-119.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-120.yaml | 40 ------------------ .../keploy/test-set-0/tests/test-121.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-122.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-123.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-124.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-125.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-126.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-127.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-128.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-129.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-130.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-131.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-132.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-133.yaml | 40 ------------------ .../keploy/test-set-0/tests/test-134.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-135.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-136.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-137.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-138.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-139.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-140.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-141.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-142.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-143.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-144.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-145.yaml | 42 ------------------- .../keploy/test-set-0/tests/test-146.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-147.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-148.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-149.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-150.yaml | 42 ------------------- .../keploy/test-set-0/tests/test-151.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-152.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-153.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-154.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-155.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-156.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-157.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-158.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-159.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-160.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-161.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-162.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-163.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-164.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-165.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-166.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-167.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-168.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-169.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-170.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-171.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-172.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-173.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-174.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-175.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-176.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-177.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-178.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-179.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-180.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-181.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-182.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-183.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-184.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-185.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-186.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-187.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-188.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-189.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-190.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-191.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-192.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-193.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-194.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-195.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-196.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-197.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-198.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-199.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-200.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-201.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-202.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-203.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-204.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-205.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-206.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-207.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-208.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-209.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-210.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-211.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-212.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-213.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-214.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-215.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-216.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-217.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-218.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-219.yaml | 40 ------------------ .../keploy/test-set-0/tests/test-220.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-221.yaml | 40 ------------------ .../keploy/test-set-0/tests/test-222.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-223.yaml | 42 ------------------- .../keploy/test-set-0/tests/test-224.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-225.yaml | 40 ------------------ .../keploy/test-set-0/tests/test-226.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-227.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-228.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-229.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-230.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-231.yaml | 40 ------------------ .../keploy/test-set-0/tests/test-232.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-233.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-234.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-235.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-236.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-237.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-238.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-239.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-240.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-241.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-242.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-243.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-244.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-245.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-246.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-247.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-248.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-249.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-250.yaml | 39 ----------------- .../keploy/test-set-0/tests/test-251.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-102.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-103.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-104.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-105.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-106.yaml | 40 ------------------ .../keploy/test-set-1/tests/test-107.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-108.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-109.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-110.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-111.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-112.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-113.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-114.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-115.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-116.yaml | 42 ------------------- .../keploy/test-set-1/tests/test-117.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-118.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-119.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-120.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-121.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-122.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-123.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-124.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-125.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-126.yaml | 40 ------------------ .../keploy/test-set-1/tests/test-127.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-128.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-129.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-130.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-131.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-132.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-133.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-134.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-135.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-136.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-137.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-138.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-139.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-140.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-141.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-142.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-143.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-144.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-145.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-146.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-147.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-148.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-149.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-150.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-151.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-152.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-153.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-154.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-155.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-156.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-157.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-158.yaml | 40 ------------------ .../keploy/test-set-1/tests/test-159.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-160.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-161.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-162.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-163.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-164.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-165.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-166.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-167.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-168.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-169.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-170.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-171.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-172.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-173.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-174.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-175.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-176.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-177.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-178.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-179.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-180.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-181.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-182.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-183.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-184.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-185.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-186.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-187.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-188.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-189.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-190.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-191.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-192.yaml | 40 ------------------ .../keploy/test-set-1/tests/test-193.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-194.yaml | 40 ------------------ .../keploy/test-set-1/tests/test-195.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-196.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-197.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-198.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-199.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-200.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-201.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-202.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-203.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-204.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-205.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-206.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-207.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-208.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-209.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-210.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-211.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-212.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-213.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-214.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-215.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-216.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-217.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-218.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-219.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-220.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-221.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-222.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-223.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-224.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-225.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-226.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-227.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-228.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-229.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-230.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-231.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-232.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-233.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-234.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-235.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-236.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-237.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-238.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-239.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-240.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-241.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-242.yaml | 40 ------------------ .../keploy/test-set-1/tests/test-243.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-244.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-245.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-246.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-247.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-248.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-249.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-250.yaml | 39 ----------------- .../keploy/test-set-1/tests/test-251.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-102.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-103.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-104.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-105.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-106.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-107.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-108.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-109.yaml | 42 ------------------- .../keploy/test-set-2/tests/test-110.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-111.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-112.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-113.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-114.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-115.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-116.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-117.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-118.yaml | 40 ------------------ .../keploy/test-set-2/tests/test-119.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-120.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-121.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-122.yaml | 42 ------------------- .../keploy/test-set-2/tests/test-123.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-124.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-125.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-126.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-127.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-128.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-129.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-130.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-131.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-132.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-133.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-134.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-135.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-136.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-137.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-138.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-139.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-140.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-141.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-142.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-143.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-144.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-145.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-146.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-147.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-148.yaml | 40 ------------------ .../keploy/test-set-2/tests/test-149.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-150.yaml | 42 ------------------- .../keploy/test-set-2/tests/test-151.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-152.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-153.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-154.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-155.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-156.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-157.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-158.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-159.yaml | 40 ------------------ .../keploy/test-set-2/tests/test-160.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-161.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-162.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-163.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-164.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-165.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-166.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-167.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-168.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-169.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-170.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-171.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-172.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-173.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-174.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-175.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-176.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-177.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-178.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-179.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-180.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-181.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-182.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-183.yaml | 40 ------------------ .../keploy/test-set-2/tests/test-184.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-185.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-186.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-187.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-188.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-189.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-190.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-191.yaml | 42 ------------------- .../keploy/test-set-2/tests/test-192.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-193.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-194.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-195.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-196.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-197.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-198.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-199.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-200.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-201.yaml | 40 ------------------ .../keploy/test-set-2/tests/test-202.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-203.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-204.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-205.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-206.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-207.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-208.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-209.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-210.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-211.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-212.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-213.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-214.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-215.yaml | 42 ------------------- .../keploy/test-set-2/tests/test-216.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-217.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-218.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-219.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-220.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-221.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-222.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-223.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-224.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-225.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-226.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-227.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-228.yaml | 42 ------------------- .../keploy/test-set-2/tests/test-229.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-230.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-231.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-232.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-233.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-234.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-235.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-236.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-237.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-238.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-239.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-240.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-241.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-242.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-243.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-244.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-245.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-246.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-247.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-248.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-249.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-250.yaml | 39 ----------------- .../keploy/test-set-2/tests/test-251.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-102.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-103.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-104.yaml | 42 ------------------- .../keploy/test-set-3/tests/test-105.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-106.yaml | 40 ------------------ .../keploy/test-set-3/tests/test-107.yaml | 42 ------------------- .../keploy/test-set-3/tests/test-108.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-109.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-110.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-111.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-112.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-113.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-114.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-115.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-116.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-117.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-118.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-119.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-120.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-121.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-122.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-123.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-124.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-125.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-126.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-127.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-128.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-129.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-130.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-131.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-132.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-133.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-134.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-135.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-136.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-137.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-138.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-139.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-140.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-141.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-142.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-143.yaml | 42 ------------------- .../keploy/test-set-3/tests/test-144.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-145.yaml | 40 ------------------ .../keploy/test-set-3/tests/test-146.yaml | 40 ------------------ .../keploy/test-set-3/tests/test-147.yaml | 42 ------------------- .../keploy/test-set-3/tests/test-148.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-149.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-150.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-151.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-152.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-153.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-154.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-155.yaml | 42 ------------------- .../keploy/test-set-3/tests/test-156.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-157.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-158.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-159.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-160.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-161.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-162.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-163.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-164.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-165.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-166.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-167.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-168.yaml | 40 ------------------ .../keploy/test-set-3/tests/test-169.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-170.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-171.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-172.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-173.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-174.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-175.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-176.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-177.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-178.yaml | 40 ------------------ .../keploy/test-set-3/tests/test-179.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-180.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-181.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-182.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-183.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-184.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-185.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-186.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-187.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-188.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-189.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-190.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-191.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-192.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-193.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-194.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-195.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-196.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-197.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-198.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-199.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-200.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-201.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-202.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-203.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-204.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-205.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-206.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-207.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-208.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-209.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-210.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-211.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-212.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-213.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-214.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-215.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-216.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-217.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-218.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-219.yaml | 40 ------------------ .../keploy/test-set-3/tests/test-220.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-221.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-222.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-223.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-224.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-225.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-226.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-227.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-228.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-229.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-230.yaml | 42 ------------------- .../keploy/test-set-3/tests/test-231.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-232.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-233.yaml | 42 ------------------- .../keploy/test-set-3/tests/test-234.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-235.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-236.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-237.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-238.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-239.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-240.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-241.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-242.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-243.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-244.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-245.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-246.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-247.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-248.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-249.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-250.yaml | 39 ----------------- .../keploy/test-set-3/tests/test-251.yaml | 39 ----------------- java-dedup/run_random_1000.sh | 2 +- 603 files changed, 8 insertions(+), 23483 deletions(-) delete mode 100644 java-dedup/keploy/test-set-0/tests/test-102.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-103.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-104.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-105.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-106.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-107.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-108.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-109.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-110.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-111.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-112.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-113.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-114.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-115.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-116.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-117.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-118.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-119.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-120.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-121.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-122.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-123.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-124.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-125.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-126.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-127.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-128.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-129.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-130.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-131.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-132.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-133.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-134.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-135.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-136.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-137.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-138.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-139.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-140.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-141.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-142.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-143.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-144.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-145.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-146.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-147.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-148.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-149.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-150.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-151.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-152.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-153.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-154.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-155.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-156.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-157.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-158.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-159.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-160.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-161.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-162.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-163.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-164.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-165.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-166.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-167.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-168.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-169.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-170.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-171.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-172.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-173.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-174.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-175.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-176.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-177.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-178.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-179.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-180.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-181.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-182.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-183.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-184.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-185.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-186.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-187.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-188.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-189.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-190.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-191.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-192.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-193.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-194.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-195.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-196.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-197.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-198.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-199.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-200.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-201.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-202.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-203.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-204.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-205.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-206.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-207.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-208.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-209.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-210.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-211.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-212.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-213.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-214.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-215.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-216.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-217.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-218.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-219.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-220.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-221.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-222.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-223.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-224.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-225.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-226.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-227.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-228.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-229.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-230.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-231.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-232.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-233.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-234.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-235.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-236.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-237.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-238.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-239.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-240.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-241.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-242.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-243.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-244.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-245.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-246.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-247.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-248.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-249.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-250.yaml delete mode 100644 java-dedup/keploy/test-set-0/tests/test-251.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-102.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-103.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-104.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-105.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-106.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-107.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-108.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-109.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-110.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-111.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-112.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-113.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-114.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-115.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-116.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-117.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-118.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-119.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-120.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-121.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-122.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-123.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-124.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-125.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-126.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-127.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-128.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-129.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-130.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-131.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-132.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-133.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-134.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-135.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-136.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-137.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-138.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-139.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-140.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-141.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-142.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-143.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-144.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-145.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-146.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-147.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-148.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-149.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-150.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-151.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-152.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-153.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-154.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-155.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-156.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-157.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-158.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-159.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-160.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-161.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-162.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-163.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-164.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-165.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-166.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-167.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-168.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-169.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-170.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-171.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-172.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-173.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-174.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-175.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-176.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-177.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-178.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-179.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-180.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-181.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-182.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-183.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-184.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-185.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-186.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-187.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-188.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-189.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-190.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-191.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-192.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-193.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-194.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-195.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-196.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-197.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-198.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-199.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-200.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-201.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-202.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-203.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-204.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-205.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-206.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-207.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-208.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-209.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-210.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-211.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-212.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-213.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-214.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-215.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-216.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-217.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-218.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-219.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-220.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-221.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-222.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-223.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-224.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-225.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-226.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-227.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-228.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-229.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-230.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-231.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-232.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-233.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-234.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-235.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-236.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-237.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-238.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-239.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-240.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-241.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-242.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-243.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-244.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-245.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-246.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-247.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-248.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-249.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-250.yaml delete mode 100644 java-dedup/keploy/test-set-1/tests/test-251.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-102.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-103.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-104.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-105.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-106.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-107.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-108.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-109.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-110.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-111.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-112.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-113.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-114.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-115.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-116.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-117.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-118.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-119.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-120.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-121.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-122.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-123.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-124.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-125.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-126.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-127.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-128.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-129.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-130.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-131.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-132.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-133.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-134.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-135.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-136.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-137.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-138.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-139.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-140.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-141.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-142.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-143.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-144.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-145.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-146.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-147.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-148.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-149.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-150.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-151.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-152.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-153.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-154.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-155.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-156.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-157.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-158.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-159.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-160.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-161.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-162.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-163.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-164.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-165.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-166.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-167.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-168.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-169.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-170.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-171.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-172.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-173.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-174.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-175.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-176.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-177.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-178.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-179.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-180.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-181.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-182.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-183.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-184.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-185.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-186.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-187.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-188.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-189.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-190.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-191.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-192.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-193.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-194.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-195.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-196.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-197.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-198.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-199.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-200.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-201.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-202.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-203.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-204.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-205.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-206.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-207.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-208.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-209.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-210.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-211.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-212.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-213.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-214.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-215.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-216.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-217.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-218.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-219.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-220.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-221.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-222.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-223.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-224.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-225.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-226.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-227.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-228.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-229.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-230.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-231.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-232.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-233.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-234.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-235.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-236.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-237.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-238.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-239.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-240.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-241.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-242.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-243.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-244.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-245.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-246.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-247.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-248.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-249.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-250.yaml delete mode 100644 java-dedup/keploy/test-set-2/tests/test-251.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-102.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-103.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-104.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-105.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-106.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-107.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-108.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-109.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-110.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-111.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-112.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-113.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-114.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-115.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-116.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-117.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-118.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-119.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-120.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-121.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-122.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-123.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-124.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-125.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-126.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-127.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-128.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-129.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-130.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-131.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-132.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-133.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-134.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-135.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-136.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-137.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-138.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-139.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-140.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-141.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-142.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-143.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-144.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-145.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-146.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-147.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-148.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-149.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-150.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-151.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-152.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-153.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-154.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-155.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-156.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-157.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-158.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-159.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-160.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-161.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-162.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-163.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-164.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-165.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-166.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-167.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-168.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-169.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-170.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-171.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-172.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-173.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-174.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-175.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-176.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-177.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-178.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-179.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-180.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-181.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-182.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-183.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-184.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-185.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-186.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-187.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-188.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-189.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-190.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-191.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-192.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-193.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-194.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-195.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-196.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-197.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-198.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-199.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-200.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-201.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-202.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-203.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-204.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-205.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-206.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-207.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-208.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-209.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-210.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-211.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-212.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-213.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-214.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-215.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-216.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-217.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-218.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-219.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-220.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-221.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-222.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-223.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-224.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-225.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-226.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-227.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-228.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-229.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-230.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-231.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-232.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-233.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-234.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-235.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-236.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-237.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-238.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-239.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-240.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-241.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-242.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-243.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-244.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-245.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-246.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-247.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-248.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-249.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-250.yaml delete mode 100644 java-dedup/keploy/test-set-3/tests/test-251.yaml diff --git a/.github/workflows/java-dedup.yml b/.github/workflows/java-dedup.yml index 8ae55d11..071d35eb 100644 --- a/.github/workflows/java-dedup.yml +++ b/.github/workflows/java-dedup.yml @@ -32,8 +32,8 @@ jobs: set -euo pipefail fixture_count="$(find keploy -path '*/tests/test-*.yaml' -size +100c | wc -l | tr -d ' ')" tracked_count="$(git ls-files 'keploy/test-set-*/tests/test-*.yaml' | wc -l | tr -d ' ')" - test "${fixture_count}" = "1000" - test "${tracked_count}" = "1000" + test "${fixture_count}" = "400" + test "${tracked_count}" = "400" - name: Build java-dedup without Keploy compile dependency working-directory: java-dedup diff --git a/java-dedup/README.md b/java-dedup/README.md index 93b4c784..f8b05670 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -1,8 +1,8 @@ # Java Dynamic Deduplication Sample -A Spring Boot application used by Keploy CI to validate Java dynamic deduplication. It mirrors the Go dedup sample by exposing a broad set of endpoints and committing 1000 replay fixtures across four testsets. +A Spring Boot application used by Keploy CI to validate Java dynamic deduplication. It mirrors the Go dedup sample by exposing a broad set of endpoints and committing 400 replay fixtures across four testsets. -CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup`. When the sample behavior changes, record the fixtures locally and push the updated `keploy/` files. +CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup --skip-app-restart`. When the sample behavior changes, record the fixtures locally and push the updated `keploy/` files. The Keploy Java SDK is attached as a Java agent at replay time. The sample does not compile against `io.keploy:keploy-sdk` and does not import Keploy classes in application code. @@ -21,7 +21,7 @@ This produces `target/java-dedup-0.0.1-SNAPSHOT.jar`, copies `target/keploy-sdk. ```bash keploy test \ -c "java -javaagent:target/keploy-sdk.jar -javaagent:target/jacocoagent.jar -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ - --dedup --language java --delay 1 \ + --dedup --skip-app-restart --language java --delay 1 \ --health-url "http://127.0.0.1:8080/healthz" \ --health-poll-timeout 30s \ --disableMockUpload --disableReportUpload @@ -37,7 +37,7 @@ keploy test \ -c "docker compose up" \ --container-name "dedup-java" \ --host "127.0.0.1" \ - --dedup --language java --delay 1 \ + --dedup --skip-app-restart --language java --delay 1 \ --health-url "http://127.0.0.1:8080/healthz" \ --health-poll-timeout 30s \ --disableMockUpload --disableReportUpload @@ -56,7 +56,7 @@ keploy test \ -c "docker run --rm --name dedup-java -p 8080:8080 java-dedup:local" \ --container-name "dedup-java" \ --host "127.0.0.1" \ - --dedup --language java --delay 1 \ + --dedup --skip-app-restart --language java --delay 1 \ --health-url "http://127.0.0.1:8080/healthz" \ --health-poll-timeout 30s \ --disableMockUpload --disableReportUpload diff --git a/java-dedup/keploy/test-set-0/tests/test-102.yaml b/java-dedup/keploy/test-set-0/tests/test-102.yaml deleted file mode 100644 index ec18140b..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-102.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-102 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.322102113+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.324511112+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-103.yaml b/java-dedup/keploy/test-set-0/tests/test-103.yaml deleted file mode 100644 index 4c8546b8..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-103.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-103 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.333013067+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.335524182+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-104.yaml b/java-dedup/keploy/test-set-0/tests/test-104.yaml deleted file mode 100644 index 07b8464e..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-104.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-104 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.344257037+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.346468884+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-105.yaml b/java-dedup/keploy/test-set-0/tests/test-105.yaml deleted file mode 100644 index 07b5ecfc..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-105.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-105 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.354841905+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.357237035+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-106.yaml b/java-dedup/keploy/test-set-0/tests/test-106.yaml deleted file mode 100644 index 78f7a984..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-106.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-106 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.365291128+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.367623521+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-107.yaml b/java-dedup/keploy/test-set-0/tests/test-107.yaml deleted file mode 100644 index 1fc6d8b7..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-107.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-107 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.374835609+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.377182542+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-108.yaml b/java-dedup/keploy/test-set-0/tests/test-108.yaml deleted file mode 100644 index df110583..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-108.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-108 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.385304792+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.388019649+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-109.yaml b/java-dedup/keploy/test-set-0/tests/test-109.yaml deleted file mode 100644 index db29e45a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-109.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-109 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.396645928+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.399186132+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-110.yaml b/java-dedup/keploy/test-set-0/tests/test-110.yaml deleted file mode 100644 index f1c1a4f6..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-110.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-110 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.408016773+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.410194562+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-111.yaml b/java-dedup/keploy/test-set-0/tests/test-111.yaml deleted file mode 100644 index 10ac7726..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-111.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-111 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.418426558+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.421117146+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-112.yaml b/java-dedup/keploy/test-set-0/tests/test-112.yaml deleted file mode 100644 index e5cd8fba..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-112.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-112 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.430554581+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.433900301+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-113.yaml b/java-dedup/keploy/test-set-0/tests/test-113.yaml deleted file mode 100644 index 22bc6054..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-113.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-113 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.443041599+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.445710988+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-114.yaml b/java-dedup/keploy/test-set-0/tests/test-114.yaml deleted file mode 100644 index 9e2194f0..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-114.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-114 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.453556311+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.456143912+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-115.yaml b/java-dedup/keploy/test-set-0/tests/test-115.yaml deleted file mode 100644 index a3b9d0c4..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-115.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-115 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.46483147+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.467251068+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-116.yaml b/java-dedup/keploy/test-set-0/tests/test-116.yaml deleted file mode 100644 index 99bd5cfe..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-116.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-116 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.475646167+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.478163992+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-117.yaml b/java-dedup/keploy/test-set-0/tests/test-117.yaml deleted file mode 100644 index 15fdd496..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-117.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-117 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.485356562+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.487870376+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-118.yaml b/java-dedup/keploy/test-set-0/tests/test-118.yaml deleted file mode 100644 index e4a173d0..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-118.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-118 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.49471869+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.49757921+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-119.yaml b/java-dedup/keploy/test-set-0/tests/test-119.yaml deleted file mode 100644 index 16d9a332..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-119.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-119 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.50621475+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.508735575+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-120.yaml b/java-dedup/keploy/test-set-0/tests/test-120.yaml deleted file mode 100644 index 12dbf9b0..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-120.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-120 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.516078918+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.518319765+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-121.yaml b/java-dedup/keploy/test-set-0/tests/test-121.yaml deleted file mode 100644 index 8cfbfd15..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-121.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-121 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.52776529+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.530472537+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-122.yaml b/java-dedup/keploy/test-set-0/tests/test-122.yaml deleted file mode 100644 index 8134f128..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-122.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-122 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.539599505+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.543160566+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-123.yaml b/java-dedup/keploy/test-set-0/tests/test-123.yaml deleted file mode 100644 index d8930d84..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-123.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-123 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.552512425+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.555632445+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-124.yaml b/java-dedup/keploy/test-set-0/tests/test-124.yaml deleted file mode 100644 index 3b6673a0..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-124.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-124 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.564029624+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.566703373+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-125.yaml b/java-dedup/keploy/test-set-0/tests/test-125.yaml deleted file mode 100644 index 6a32a3dd..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-125.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-125 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.575681868+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.578268789+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-126.yaml b/java-dedup/keploy/test-set-0/tests/test-126.yaml deleted file mode 100644 index 24c08cac..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-126.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-126 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.587528263+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.590899072+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-127.yaml b/java-dedup/keploy/test-set-0/tests/test-127.yaml deleted file mode 100644 index 5544cd67..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-127.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-127 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.600238102+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.603467027+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-128.yaml b/java-dedup/keploy/test-set-0/tests/test-128.yaml deleted file mode 100644 index ba9ece77..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-128.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-128 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.611826688+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.615675926+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-129.yaml b/java-dedup/keploy/test-set-0/tests/test-129.yaml deleted file mode 100644 index 73c29037..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-129.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-129 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.623574127+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.626422928+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-130.yaml b/java-dedup/keploy/test-set-0/tests/test-130.yaml deleted file mode 100644 index 4662d43a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-130.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-130 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.634222982+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.637499485+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-131.yaml b/java-dedup/keploy/test-set-0/tests/test-131.yaml deleted file mode 100644 index 6f4a69b1..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-131.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-131 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.646560976+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.649793961+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-132.yaml b/java-dedup/keploy/test-set-0/tests/test-132.yaml deleted file mode 100644 index 37beb204..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-132.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-132 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.658532496+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.660814641+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-133.yaml b/java-dedup/keploy/test-set-0/tests/test-133.yaml deleted file mode 100644 index b13e050f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-133.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-133 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.670059625+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.672356838+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-134.yaml b/java-dedup/keploy/test-set-0/tests/test-134.yaml deleted file mode 100644 index 91782bc2..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-134.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-134 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.682031005+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.684674594+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-135.yaml b/java-dedup/keploy/test-set-0/tests/test-135.yaml deleted file mode 100644 index 29072305..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-135.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-135 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.693935667+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.697295677+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-136.yaml b/java-dedup/keploy/test-set-0/tests/test-136.yaml deleted file mode 100644 index feae2e7d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-136.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-136 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.705142308+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.708012348+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-137.yaml b/java-dedup/keploy/test-set-0/tests/test-137.yaml deleted file mode 100644 index 8cf93d7f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-137.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-137 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.715541304+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.718154405+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-138.yaml b/java-dedup/keploy/test-set-0/tests/test-138.yaml deleted file mode 100644 index e6a97452..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-138.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-138 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.726700707+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.729387275+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-139.yaml b/java-dedup/keploy/test-set-0/tests/test-139.yaml deleted file mode 100644 index fbc5282c..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-139.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-139 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.738040504+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.740401825+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-140.yaml b/java-dedup/keploy/test-set-0/tests/test-140.yaml deleted file mode 100644 index 148905de..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-140.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-140 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.74841552+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.750780092+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-141.yaml b/java-dedup/keploy/test-set-0/tests/test-141.yaml deleted file mode 100644 index b7479922..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-141.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-141 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.758824045+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.761476795+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-142.yaml b/java-dedup/keploy/test-set-0/tests/test-142.yaml deleted file mode 100644 index c9e9a5c4..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-142.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-142 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.769764959+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.772185258+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-143.yaml b/java-dedup/keploy/test-set-0/tests/test-143.yaml deleted file mode 100644 index 8199a876..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-143.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-143 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.781855483+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.78481185+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-144.yaml b/java-dedup/keploy/test-set-0/tests/test-144.yaml deleted file mode 100644 index 8abf1225..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-144.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-144 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.793966397+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.796572059+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-145.yaml b/java-dedup/keploy/test-set-0/tests/test-145.yaml deleted file mode 100644 index 32d88eaf..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-145.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-145 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.805234467+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.807936274+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-146.yaml b/java-dedup/keploy/test-set-0/tests/test-146.yaml deleted file mode 100644 index 203d2528..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-146.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-146 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.816273985+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.818481063+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-147.yaml b/java-dedup/keploy/test-set-0/tests/test-147.yaml deleted file mode 100644 index 667a292d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-147.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-147 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.82717112+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.829387068+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-148.yaml b/java-dedup/keploy/test-set-0/tests/test-148.yaml deleted file mode 100644 index 33fe7aa3..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-148.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-148 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.83746405+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.839775274+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-149.yaml b/java-dedup/keploy/test-set-0/tests/test-149.yaml deleted file mode 100644 index c482c67b..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-149.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-149 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.848037118+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.850311983+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-150.yaml b/java-dedup/keploy/test-set-0/tests/test-150.yaml deleted file mode 100644 index e115d983..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-150.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-150 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.857206574+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.859708741+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-151.yaml b/java-dedup/keploy/test-set-0/tests/test-151.yaml deleted file mode 100644 index c9f9d1b6..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-151.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-151 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.867949326+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.870643474+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-152.yaml b/java-dedup/keploy/test-set-0/tests/test-152.yaml deleted file mode 100644 index 782e4454..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-152.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-152 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.878368141+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.880592408+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-153.yaml b/java-dedup/keploy/test-set-0/tests/test-153.yaml deleted file mode 100644 index c9facba9..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-153.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-153 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.888834873+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.891256082+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-154.yaml b/java-dedup/keploy/test-set-0/tests/test-154.yaml deleted file mode 100644 index c2c9e487..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-154.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-154 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.899660592+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.902290042+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-155.yaml b/java-dedup/keploy/test-set-0/tests/test-155.yaml deleted file mode 100644 index 407f39bc..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-155.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-155 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.911201289+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.913658567+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-156.yaml b/java-dedup/keploy/test-set-0/tests/test-156.yaml deleted file mode 100644 index d3c82429..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-156.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-156 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.92219454+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.925103788+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-157.yaml b/java-dedup/keploy/test-set-0/tests/test-157.yaml deleted file mode 100644 index decf429d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-157.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-157 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.934982716+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.937660994+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-158.yaml b/java-dedup/keploy/test-set-0/tests/test-158.yaml deleted file mode 100644 index 7d4950e6..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-158.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-158 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.945194308+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.947840569+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-159.yaml b/java-dedup/keploy/test-set-0/tests/test-159.yaml deleted file mode 100644 index d57c42a7..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-159.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-159 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.960083788+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.962425709+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-160.yaml b/java-dedup/keploy/test-set-0/tests/test-160.yaml deleted file mode 100644 index 0b0a05ec..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-160.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-160 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.971782009+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.974261894+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-161.yaml b/java-dedup/keploy/test-set-0/tests/test-161.yaml deleted file mode 100644 index 641ff73e..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-161.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-161 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.9818066+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.984289985+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-162.yaml b/java-dedup/keploy/test-set-0/tests/test-162.yaml deleted file mode 100644 index 89ac640a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-162.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-162 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.991137559+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:16.993944022+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015096 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-163.yaml b/java-dedup/keploy/test-set-0/tests/test-163.yaml deleted file mode 100644 index 6d1464b3..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-163.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-163 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.002036364+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.004350088+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-164.yaml b/java-dedup/keploy/test-set-0/tests/test-164.yaml deleted file mode 100644 index 9e9aa5f1..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-164.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-164 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.01338068+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.016098935+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-165.yaml b/java-dedup/keploy/test-set-0/tests/test-165.yaml deleted file mode 100644 index 7821cc9b..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-165.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-165 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.02532475+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.028088385+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-166.yaml b/java-dedup/keploy/test-set-0/tests/test-166.yaml deleted file mode 100644 index 2c3bffd7..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-166.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-166 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.03657691+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.038994729+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-167.yaml b/java-dedup/keploy/test-set-0/tests/test-167.yaml deleted file mode 100644 index 7f03f334..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-167.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-167 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.046391439+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.048178564+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-168.yaml b/java-dedup/keploy/test-set-0/tests/test-168.yaml deleted file mode 100644 index 30c139c8..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-168.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-168 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.055632102+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.057983234+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-169.yaml b/java-dedup/keploy/test-set-0/tests/test-169.yaml deleted file mode 100644 index 21326774..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-169.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-169 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.066775496+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.069105169+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-170.yaml b/java-dedup/keploy/test-set-0/tests/test-170.yaml deleted file mode 100644 index 1bcc91a8..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-170.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-170 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.075936433+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.078344923+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-171.yaml b/java-dedup/keploy/test-set-0/tests/test-171.yaml deleted file mode 100644 index 4536d6e4..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-171.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-171 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.087623624+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.090898327+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-172.yaml b/java-dedup/keploy/test-set-0/tests/test-172.yaml deleted file mode 100644 index f6dfc147..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-172.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-172 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.098009029+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.100834402+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-173.yaml b/java-dedup/keploy/test-set-0/tests/test-173.yaml deleted file mode 100644 index 355c8852..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-173.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-173 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.109668013+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.112140589+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-174.yaml b/java-dedup/keploy/test-set-0/tests/test-174.yaml deleted file mode 100644 index 7441bf6a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-174.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-174 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.119459523+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.121937619+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-175.yaml b/java-dedup/keploy/test-set-0/tests/test-175.yaml deleted file mode 100644 index 2363a2b6..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-175.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-175 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.129408606+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.131812026+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-176.yaml b/java-dedup/keploy/test-set-0/tests/test-176.yaml deleted file mode 100644 index 3e9868e9..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-176.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-176 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.140113929+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.142393863+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-177.yaml b/java-dedup/keploy/test-set-0/tests/test-177.yaml deleted file mode 100644 index 12efca7d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-177.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-177 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.149540444+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.151594078+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-178.yaml b/java-dedup/keploy/test-set-0/tests/test-178.yaml deleted file mode 100644 index 921e4f42..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-178.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-178 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.1603895+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.163846707+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-179.yaml b/java-dedup/keploy/test-set-0/tests/test-179.yaml deleted file mode 100644 index 28f24653..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-179.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-179 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.172111951+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.174783829+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-180.yaml b/java-dedup/keploy/test-set-0/tests/test-180.yaml deleted file mode 100644 index c01040b2..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-180.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-180 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.183706556+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.18718436+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-181.yaml b/java-dedup/keploy/test-set-0/tests/test-181.yaml deleted file mode 100644 index 551ce59f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-181.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-181 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.19601954+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.198517305+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-182.yaml b/java-dedup/keploy/test-set-0/tests/test-182.yaml deleted file mode 100644 index 2cf00138..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-182.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-182 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.207315149+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.209753057+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-183.yaml b/java-dedup/keploy/test-set-0/tests/test-183.yaml deleted file mode 100644 index b409c442..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-183.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-183 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.21898876+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.221414318+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-184.yaml b/java-dedup/keploy/test-set-0/tests/test-184.yaml deleted file mode 100644 index 410ec67e..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-184.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-184 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.230307427+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.233046602+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-185.yaml b/java-dedup/keploy/test-set-0/tests/test-185.yaml deleted file mode 100644 index 20fe8f4f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-185.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-185 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.242130432+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.24480428+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-186.yaml b/java-dedup/keploy/test-set-0/tests/test-186.yaml deleted file mode 100644 index 473a5992..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-186.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-186 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.252581635+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.25533147+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-187.yaml b/java-dedup/keploy/test-set-0/tests/test-187.yaml deleted file mode 100644 index 4be81315..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-187.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-187 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.263146573+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.265535763+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-188.yaml b/java-dedup/keploy/test-set-0/tests/test-188.yaml deleted file mode 100644 index e8a12aaa..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-188.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-188 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.274493048+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.276931106+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-189.yaml b/java-dedup/keploy/test-set-0/tests/test-189.yaml deleted file mode 100644 index f0cc66e4..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-189.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-189 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.286135662+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.288524261+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-190.yaml b/java-dedup/keploy/test-set-0/tests/test-190.yaml deleted file mode 100644 index ff8f8c4a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-190.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-190 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.296236209+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.298467845+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-191.yaml b/java-dedup/keploy/test-set-0/tests/test-191.yaml deleted file mode 100644 index b62055cb..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-191.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-191 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.309096871+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.311623175+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-192.yaml b/java-dedup/keploy/test-set-0/tests/test-192.yaml deleted file mode 100644 index 9d7f905a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-192.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-192 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.321045221+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.323732639+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-193.yaml b/java-dedup/keploy/test-set-0/tests/test-193.yaml deleted file mode 100644 index 1de22de6..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-193.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-193 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.332165627+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.334657382+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-194.yaml b/java-dedup/keploy/test-set-0/tests/test-194.yaml deleted file mode 100644 index 3a704539..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-194.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-194 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.341997486+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.344477801+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-195.yaml b/java-dedup/keploy/test-set-0/tests/test-195.yaml deleted file mode 100644 index 744e1932..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-195.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-195 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.352353322+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.354813069+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-196.yaml b/java-dedup/keploy/test-set-0/tests/test-196.yaml deleted file mode 100644 index 77063008..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-196.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-196 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.363235907+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.36602401+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-197.yaml b/java-dedup/keploy/test-set-0/tests/test-197.yaml deleted file mode 100644 index 29f1ad2f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-197.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-197 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.374936958+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.377407724+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-198.yaml b/java-dedup/keploy/test-set-0/tests/test-198.yaml deleted file mode 100644 index 669e30d4..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-198.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-198 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.386311402+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.38872527+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-199.yaml b/java-dedup/keploy/test-set-0/tests/test-199.yaml deleted file mode 100644 index 33fb94ff..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-199.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-199 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.397020804+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.399273309+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-200.yaml b/java-dedup/keploy/test-set-0/tests/test-200.yaml deleted file mode 100644 index 89ffecfa..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-200.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-200 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.408434886+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.410880654+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-201.yaml b/java-dedup/keploy/test-set-0/tests/test-201.yaml deleted file mode 100644 index 24e547ec..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-201.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-201 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.419742653+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.422252518+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-202.yaml b/java-dedup/keploy/test-set-0/tests/test-202.yaml deleted file mode 100644 index 1785e873..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-202.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-202 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.431280951+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.433885162+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-203.yaml b/java-dedup/keploy/test-set-0/tests/test-203.yaml deleted file mode 100644 index c9d6f5b8..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-203.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-203 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.443613054+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.446399818+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-204.yaml b/java-dedup/keploy/test-set-0/tests/test-204.yaml deleted file mode 100644 index ddcef289..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-204.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-204 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.456373631+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.460083906+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-205.yaml b/java-dedup/keploy/test-set-0/tests/test-205.yaml deleted file mode 100644 index d9ee8c31..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-205.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-205 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.468965764+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.471577415+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-206.yaml b/java-dedup/keploy/test-set-0/tests/test-206.yaml deleted file mode 100644 index 56b2d042..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-206.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-206 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.480467004+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.48318371+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-207.yaml b/java-dedup/keploy/test-set-0/tests/test-207.yaml deleted file mode 100644 index ffb00855..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-207.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-207 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.492629675+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.49538532+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-208.yaml b/java-dedup/keploy/test-set-0/tests/test-208.yaml deleted file mode 100644 index 51fc0256..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-208.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-208 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.505120082+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.50802725+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-209.yaml b/java-dedup/keploy/test-set-0/tests/test-209.yaml deleted file mode 100644 index a1d33a9a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-209.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-209 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.51786746+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.520816686+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-210.yaml b/java-dedup/keploy/test-set-0/tests/test-210.yaml deleted file mode 100644 index 31b8018f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-210.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-210 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.530418394+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.532998246+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-211.yaml b/java-dedup/keploy/test-set-0/tests/test-211.yaml deleted file mode 100644 index dc733491..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-211.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-211 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.54223287+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.544762325+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-212.yaml b/java-dedup/keploy/test-set-0/tests/test-212.yaml deleted file mode 100644 index e665ff32..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-212.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-212 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.554836383+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.557812258+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-213.yaml b/java-dedup/keploy/test-set-0/tests/test-213.yaml deleted file mode 100644 index a874fca0..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-213.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-213 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.566764574+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.56973264+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-214.yaml b/java-dedup/keploy/test-set-0/tests/test-214.yaml deleted file mode 100644 index 69aeec76..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-214.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-214 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.580301929+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.583467146+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-215.yaml b/java-dedup/keploy/test-set-0/tests/test-215.yaml deleted file mode 100644 index a4c4aee0..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-215.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-215 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.592131523+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.594628788+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-216.yaml b/java-dedup/keploy/test-set-0/tests/test-216.yaml deleted file mode 100644 index fa965b3a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-216.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-216 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.603571815+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.605964725+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-217.yaml b/java-dedup/keploy/test-set-0/tests/test-217.yaml deleted file mode 100644 index 52ec434b..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-217.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-217 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.615785524+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.619192701+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-218.yaml b/java-dedup/keploy/test-set-0/tests/test-218.yaml deleted file mode 100644 index 4f5931cd..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-218.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-218 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.628232383+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.630937459+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-219.yaml b/java-dedup/keploy/test-set-0/tests/test-219.yaml deleted file mode 100644 index 2667e913..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-219.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-219 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.639634316+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.641875653+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-220.yaml b/java-dedup/keploy/test-set-0/tests/test-220.yaml deleted file mode 100644 index 7e344716..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-220.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-220 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.65053169+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.65339874+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-221.yaml b/java-dedup/keploy/test-set-0/tests/test-221.yaml deleted file mode 100644 index 83274971..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-221.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-221 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.662930632+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.665294593+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-222.yaml b/java-dedup/keploy/test-set-0/tests/test-222.yaml deleted file mode 100644 index f3bd9092..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-222.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-222 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.674531427+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.676797501+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-223.yaml b/java-dedup/keploy/test-set-0/tests/test-223.yaml deleted file mode 100644 index 78bdc13d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-223.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-223 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.686313294+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.689163135+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-224.yaml b/java-dedup/keploy/test-set-0/tests/test-224.yaml deleted file mode 100644 index fd855178..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-224.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-224 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.699104879+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.701546836+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-225.yaml b/java-dedup/keploy/test-set-0/tests/test-225.yaml deleted file mode 100644 index d1002e79..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-225.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-225 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.711077758+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.713302405+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-226.yaml b/java-dedup/keploy/test-set-0/tests/test-226.yaml deleted file mode 100644 index e267a724..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-226.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-226 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.722312528+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.728395663+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-227.yaml b/java-dedup/keploy/test-set-0/tests/test-227.yaml deleted file mode 100644 index 3a81117a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-227.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-227 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.737233414+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.739578166+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-228.yaml b/java-dedup/keploy/test-set-0/tests/test-228.yaml deleted file mode 100644 index b4a0f41f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-228.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-228 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.74906371+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.7516765+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-229.yaml b/java-dedup/keploy/test-set-0/tests/test-229.yaml deleted file mode 100644 index d8de5cc9..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-229.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-229 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.760233522+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.76268982+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-230.yaml b/java-dedup/keploy/test-set-0/tests/test-230.yaml deleted file mode 100644 index d1259db4..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-230.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-230 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.771305999+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.774731096+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-231.yaml b/java-dedup/keploy/test-set-0/tests/test-231.yaml deleted file mode 100644 index 895c0301..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-231.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-231 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.782186414+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.784567265+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-232.yaml b/java-dedup/keploy/test-set-0/tests/test-232.yaml deleted file mode 100644 index 25d4b48f..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-232.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-232 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.791822431+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.794181203+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-233.yaml b/java-dedup/keploy/test-set-0/tests/test-233.yaml deleted file mode 100644 index bdba514d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-233.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-233 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.801148651+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.803474993+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-234.yaml b/java-dedup/keploy/test-set-0/tests/test-234.yaml deleted file mode 100644 index 1c28336b..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-234.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-234 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.812264836+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.814668876+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-235.yaml b/java-dedup/keploy/test-set-0/tests/test-235.yaml deleted file mode 100644 index 1348977d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-235.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-235 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.823715407+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.826718922+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-236.yaml b/java-dedup/keploy/test-set-0/tests/test-236.yaml deleted file mode 100644 index 03571375..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-236.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-236 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.834780024+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.837347356+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-237.yaml b/java-dedup/keploy/test-set-0/tests/test-237.yaml deleted file mode 100644 index 9549aa51..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-237.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-237 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.845792014+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.848314688+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-238.yaml b/java-dedup/keploy/test-set-0/tests/test-238.yaml deleted file mode 100644 index fb1e1c3d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-238.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-238 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.855886511+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.858505882+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-239.yaml b/java-dedup/keploy/test-set-0/tests/test-239.yaml deleted file mode 100644 index 3bdc24e2..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-239.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-239 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.867139231+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.869588698+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-240.yaml b/java-dedup/keploy/test-set-0/tests/test-240.yaml deleted file mode 100644 index 619aabae..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-240.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-240 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.878477057+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.880772541+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-241.yaml b/java-dedup/keploy/test-set-0/tests/test-241.yaml deleted file mode 100644 index ed312076..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-241.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-241 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.889733645+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.892541628+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-242.yaml b/java-dedup/keploy/test-set-0/tests/test-242.yaml deleted file mode 100644 index aeb9165a..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-242.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-242 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.899897751+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.902005802+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-243.yaml b/java-dedup/keploy/test-set-0/tests/test-243.yaml deleted file mode 100644 index 146f0d0c..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-243.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-243 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.911267135+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.913579829+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-244.yaml b/java-dedup/keploy/test-set-0/tests/test-244.yaml deleted file mode 100644 index 8293210b..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-244.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-244 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.920913691+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.925704671+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-245.yaml b/java-dedup/keploy/test-set-0/tests/test-245.yaml deleted file mode 100644 index 96808875..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-245.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-245 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.935443083+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.938209968+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-246.yaml b/java-dedup/keploy/test-set-0/tests/test-246.yaml deleted file mode 100644 index 85798b17..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-246.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-246 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.945874508+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.948375483+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-247.yaml b/java-dedup/keploy/test-set-0/tests/test-247.yaml deleted file mode 100644 index f1a4fff7..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-247.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-247 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.95588301+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.958421353+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-248.yaml b/java-dedup/keploy/test-set-0/tests/test-248.yaml deleted file mode 100644 index 01be1e38..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-248.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-248 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.967507153+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.970058196+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-249.yaml b/java-dedup/keploy/test-set-0/tests/test-249.yaml deleted file mode 100644 index 2fd48ba4..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-249.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-249 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.977909218+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.980657962+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-250.yaml b/java-dedup/keploy/test-set-0/tests/test-250.yaml deleted file mode 100644 index 3980725d..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-250.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-250 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.990992211+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:17.994080441+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015097 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-251.yaml b/java-dedup/keploy/test-set-0/tests/test-251.yaml deleted file mode 100644 index 5ebff6fc..00000000 --- a/java-dedup/keploy/test-set-0/tests/test-251.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-251 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:18.003518256+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:48:18.005594789+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015098 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-102.yaml b/java-dedup/keploy/test-set-1/tests/test-102.yaml deleted file mode 100644 index f0d0da8a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-102.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-102 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.65815846+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.660478006+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-103.yaml b/java-dedup/keploy/test-set-1/tests/test-103.yaml deleted file mode 100644 index 818e430f..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-103.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-103 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.667441657+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.669943557+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-104.yaml b/java-dedup/keploy/test-set-1/tests/test-104.yaml deleted file mode 100644 index 501b71fd..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-104.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-104 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.677357217+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.679674984+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-105.yaml b/java-dedup/keploy/test-set-1/tests/test-105.yaml deleted file mode 100644 index 81011f57..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-105.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-105 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.686228564+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.688218735+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-106.yaml b/java-dedup/keploy/test-set-1/tests/test-106.yaml deleted file mode 100644 index 901ccec6..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-106.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-106 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.695255403+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.697027094+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-107.yaml b/java-dedup/keploy/test-set-1/tests/test-107.yaml deleted file mode 100644 index ac3d8eb0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-107.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-107 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.703920758+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.70610522+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-108.yaml b/java-dedup/keploy/test-set-1/tests/test-108.yaml deleted file mode 100644 index 22d57b9a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-108.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-108 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.713348299+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.715643837+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-109.yaml b/java-dedup/keploy/test-set-1/tests/test-109.yaml deleted file mode 100644 index 83748820..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-109.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-109 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.724208286+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.72662049+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-110.yaml b/java-dedup/keploy/test-set-1/tests/test-110.yaml deleted file mode 100644 index c8579ff9..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-110.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-110 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.734250221+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.736664444+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-111.yaml b/java-dedup/keploy/test-set-1/tests/test-111.yaml deleted file mode 100644 index a61a7b2a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-111.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-111 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.744903728+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.747640946+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-112.yaml b/java-dedup/keploy/test-set-1/tests/test-112.yaml deleted file mode 100644 index c96288a0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-112.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-112 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.755515637+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.757990877+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-113.yaml b/java-dedup/keploy/test-set-1/tests/test-113.yaml deleted file mode 100644 index 2b91da78..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-113.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-113 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.765440525+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.767354151+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-114.yaml b/java-dedup/keploy/test-set-1/tests/test-114.yaml deleted file mode 100644 index bf5cba9f..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-114.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-114 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.774873006+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.777127207+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-115.yaml b/java-dedup/keploy/test-set-1/tests/test-115.yaml deleted file mode 100644 index 6636fd3b..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-115.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-115 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.784871013+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.786603336+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-116.yaml b/java-dedup/keploy/test-set-1/tests/test-116.yaml deleted file mode 100644 index eb4fb55b..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-116.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-116 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.793313568+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.796039696+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-117.yaml b/java-dedup/keploy/test-set-1/tests/test-117.yaml deleted file mode 100644 index bf836367..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-117.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-117 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.802965309+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.805324734+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-118.yaml b/java-dedup/keploy/test-set-1/tests/test-118.yaml deleted file mode 100644 index d39136c3..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-118.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-118 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.812168131+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.814751566+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-119.yaml b/java-dedup/keploy/test-set-1/tests/test-119.yaml deleted file mode 100644 index 94364670..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-119.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-119 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.82276291+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.825355354+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-120.yaml b/java-dedup/keploy/test-set-1/tests/test-120.yaml deleted file mode 100644 index e4d48b1e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-120.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-120 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.832728198+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.835237026+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-121.yaml b/java-dedup/keploy/test-set-1/tests/test-121.yaml deleted file mode 100644 index 6bc9a1ba..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-121.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-121 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.841282318+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.843786027+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-122.yaml b/java-dedup/keploy/test-set-1/tests/test-122.yaml deleted file mode 100644 index eefe25c0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-122.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-122 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.850340905+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.852539227+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-123.yaml b/java-dedup/keploy/test-set-1/tests/test-123.yaml deleted file mode 100644 index f238390d..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-123.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-123 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.859298447+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.861681761+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-124.yaml b/java-dedup/keploy/test-set-1/tests/test-124.yaml deleted file mode 100644 index 21f162eb..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-124.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-124 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.867981842+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.870153245+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-125.yaml b/java-dedup/keploy/test-set-1/tests/test-125.yaml deleted file mode 100644 index 92a02c40..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-125.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-125 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.876978292+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.878633519+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-126.yaml b/java-dedup/keploy/test-set-1/tests/test-126.yaml deleted file mode 100644 index f08a27ee..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-126.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-126 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.884964288+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.886916181+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-127.yaml b/java-dedup/keploy/test-set-1/tests/test-127.yaml deleted file mode 100644 index 22b73a3c..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-127.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-127 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.894880147+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.897108498+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-128.yaml b/java-dedup/keploy/test-set-1/tests/test-128.yaml deleted file mode 100644 index 6d7d5870..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-128.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-128 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.903273624+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.905946026+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-129.yaml b/java-dedup/keploy/test-set-1/tests/test-129.yaml deleted file mode 100644 index 1edeef30..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-129.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-129 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.912213158+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.914546684+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-130.yaml b/java-dedup/keploy/test-set-1/tests/test-130.yaml deleted file mode 100644 index 771832eb..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-130.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-130 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.922317789+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.924747791+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-131.yaml b/java-dedup/keploy/test-set-1/tests/test-131.yaml deleted file mode 100644 index 2658cd41..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-131.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-131 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.934758906+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.937616719+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-132.yaml b/java-dedup/keploy/test-set-1/tests/test-132.yaml deleted file mode 100644 index 08c37176..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-132.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-132 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.946528324+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.948531875+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-133.yaml b/java-dedup/keploy/test-set-1/tests/test-133.yaml deleted file mode 100644 index 4c939a94..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-133.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-133 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.955583702+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.957518885+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-134.yaml b/java-dedup/keploy/test-set-1/tests/test-134.yaml deleted file mode 100644 index 1542d485..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-134.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-134 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.964478887+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.966675969+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-135.yaml b/java-dedup/keploy/test-set-1/tests/test-135.yaml deleted file mode 100644 index 0a9422c5..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-135.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-135 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.974667354+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.977153703+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-136.yaml b/java-dedup/keploy/test-set-1/tests/test-136.yaml deleted file mode 100644 index 515c56a0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-136.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-136 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.983176356+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.984960367+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-137.yaml b/java-dedup/keploy/test-set-1/tests/test-137.yaml deleted file mode 100644 index 2e16ba05..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-137.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-137 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.991735246+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:36.993230549+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015176 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-138.yaml b/java-dedup/keploy/test-set-1/tests/test-138.yaml deleted file mode 100644 index 54ae4d12..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-138.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-138 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.999989289+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.001742461+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-139.yaml b/java-dedup/keploy/test-set-1/tests/test-139.yaml deleted file mode 100644 index b0d903b1..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-139.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-139 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.008234263+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.010399587+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-140.yaml b/java-dedup/keploy/test-set-1/tests/test-140.yaml deleted file mode 100644 index 1767cdd0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-140.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-140 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.017336899+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.019606407+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-141.yaml b/java-dedup/keploy/test-set-1/tests/test-141.yaml deleted file mode 100644 index 4a820cea..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-141.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-141 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.027120444+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.029198061+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-142.yaml b/java-dedup/keploy/test-set-1/tests/test-142.yaml deleted file mode 100644 index 8d82d129..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-142.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-142 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.036910579+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.039057254+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-143.yaml b/java-dedup/keploy/test-set-1/tests/test-143.yaml deleted file mode 100644 index 4dfb0277..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-143.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-143 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.046260534+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.048637848+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-144.yaml b/java-dedup/keploy/test-set-1/tests/test-144.yaml deleted file mode 100644 index 06d0d11c..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-144.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-144 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.055891515+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.057898137+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-145.yaml b/java-dedup/keploy/test-set-1/tests/test-145.yaml deleted file mode 100644 index 688e7fe6..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-145.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-145 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.064424976+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.066457126+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-146.yaml b/java-dedup/keploy/test-set-1/tests/test-146.yaml deleted file mode 100644 index 8e115e8e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-146.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-146 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.072632901+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.074783536+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-147.yaml b/java-dedup/keploy/test-set-1/tests/test-147.yaml deleted file mode 100644 index f61487cd..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-147.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-147 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.080662974+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.082505942+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-148.yaml b/java-dedup/keploy/test-set-1/tests/test-148.yaml deleted file mode 100644 index c454a3a5..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-148.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-148 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.089499113+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.091532822+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-149.yaml b/java-dedup/keploy/test-set-1/tests/test-149.yaml deleted file mode 100644 index 308fe8df..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-149.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-149 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.097826822+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.099591114+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-150.yaml b/java-dedup/keploy/test-set-1/tests/test-150.yaml deleted file mode 100644 index 16c1d618..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-150.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-150 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.106804253+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.108589464+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-151.yaml b/java-dedup/keploy/test-set-1/tests/test-151.yaml deleted file mode 100644 index b47f2fbf..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-151.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-151 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.114954721+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.116928094+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-152.yaml b/java-dedup/keploy/test-set-1/tests/test-152.yaml deleted file mode 100644 index 72e6037e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-152.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-152 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.123052272+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.12556727+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-153.yaml b/java-dedup/keploy/test-set-1/tests/test-153.yaml deleted file mode 100644 index c6ac47f1..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-153.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-153 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.132298311+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.134192407+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-154.yaml b/java-dedup/keploy/test-set-1/tests/test-154.yaml deleted file mode 100644 index a8741afd..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-154.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-154 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.141267242+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.143136139+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-155.yaml b/java-dedup/keploy/test-set-1/tests/test-155.yaml deleted file mode 100644 index 497560be..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-155.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-155 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.149428769+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.151267557+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-156.yaml b/java-dedup/keploy/test-set-1/tests/test-156.yaml deleted file mode 100644 index 285c7885..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-156.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-156 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.15775044+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.159685543+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-157.yaml b/java-dedup/keploy/test-set-1/tests/test-157.yaml deleted file mode 100644 index 56194140..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-157.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-157 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.167559564+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.169394973+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-158.yaml b/java-dedup/keploy/test-set-1/tests/test-158.yaml deleted file mode 100644 index a67650ec..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-158.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-158 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.177674074+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.179537732+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-159.yaml b/java-dedup/keploy/test-set-1/tests/test-159.yaml deleted file mode 100644 index 0f8b866e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-159.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-159 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.188163389+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.19061236+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-160.yaml b/java-dedup/keploy/test-set-1/tests/test-160.yaml deleted file mode 100644 index b380f5c1..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-160.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-160 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.198831305+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.20096415+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-161.yaml b/java-dedup/keploy/test-set-1/tests/test-161.yaml deleted file mode 100644 index 80f4c724..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-161.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-161 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.207378135+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.209613615+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-162.yaml b/java-dedup/keploy/test-set-1/tests/test-162.yaml deleted file mode 100644 index c08858ff..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-162.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-162 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.216522038+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.218810517+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-163.yaml b/java-dedup/keploy/test-set-1/tests/test-163.yaml deleted file mode 100644 index 1af5fdd1..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-163.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-163 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.226970504+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.229033432+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-164.yaml b/java-dedup/keploy/test-set-1/tests/test-164.yaml deleted file mode 100644 index 790f015e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-164.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-164 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.237302446+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.239729048+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-165.yaml b/java-dedup/keploy/test-set-1/tests/test-165.yaml deleted file mode 100644 index d519e407..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-165.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-165 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.247689603+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.25002578+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-166.yaml b/java-dedup/keploy/test-set-1/tests/test-166.yaml deleted file mode 100644 index ff307b9f..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-166.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-166 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.258434826+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.260857319+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-167.yaml b/java-dedup/keploy/test-set-1/tests/test-167.yaml deleted file mode 100644 index d4c9346d..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-167.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-167 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.267922275+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.270009722+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-168.yaml b/java-dedup/keploy/test-set-1/tests/test-168.yaml deleted file mode 100644 index 2d438c60..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-168.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-168 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.276454936+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.278785912+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-169.yaml b/java-dedup/keploy/test-set-1/tests/test-169.yaml deleted file mode 100644 index d48cbb8e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-169.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-169 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.285416668+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.2873868+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-170.yaml b/java-dedup/keploy/test-set-1/tests/test-170.yaml deleted file mode 100644 index 93d0ac59..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-170.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-170 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.293739818+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.295774627+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-171.yaml b/java-dedup/keploy/test-set-1/tests/test-171.yaml deleted file mode 100644 index bb618ba8..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-171.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-171 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.303624889+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.306316079+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-172.yaml b/java-dedup/keploy/test-set-1/tests/test-172.yaml deleted file mode 100644 index 06377cc6..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-172.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-172 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.314837001+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.317732091+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-173.yaml b/java-dedup/keploy/test-set-1/tests/test-173.yaml deleted file mode 100644 index 843bcc8e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-173.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-173 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.325990345+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.328386069+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-174.yaml b/java-dedup/keploy/test-set-1/tests/test-174.yaml deleted file mode 100644 index db9b5ffb..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-174.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-174 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.335816228+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.33915312+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-175.yaml b/java-dedup/keploy/test-set-1/tests/test-175.yaml deleted file mode 100644 index bdd3062a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-175.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-175 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.347429633+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.349566817+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-176.yaml b/java-dedup/keploy/test-set-1/tests/test-176.yaml deleted file mode 100644 index 3d1782d5..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-176.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-176 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.358729149+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.361005689+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-177.yaml b/java-dedup/keploy/test-set-1/tests/test-177.yaml deleted file mode 100644 index bfc918ab..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-177.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-177 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.36796594+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.370173001+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-178.yaml b/java-dedup/keploy/test-set-1/tests/test-178.yaml deleted file mode 100644 index 62facf24..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-178.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-178 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.376676312+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.378685023+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-179.yaml b/java-dedup/keploy/test-set-1/tests/test-179.yaml deleted file mode 100644 index 3886b583..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-179.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-179 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.386444958+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.388139913+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-180.yaml b/java-dedup/keploy/test-set-1/tests/test-180.yaml deleted file mode 100644 index cf3e29bf..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-180.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-180 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.394415104+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.396254313+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-181.yaml b/java-dedup/keploy/test-set-1/tests/test-181.yaml deleted file mode 100644 index d8fc98b3..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-181.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-181 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.402300104+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.40394593+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-182.yaml b/java-dedup/keploy/test-set-1/tests/test-182.yaml deleted file mode 100644 index 2a3a08a4..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-182.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-182 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.412998829+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.415238369+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-183.yaml b/java-dedup/keploy/test-set-1/tests/test-183.yaml deleted file mode 100644 index 4e33c4fa..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-183.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-183 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.422268937+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.424560135+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-184.yaml b/java-dedup/keploy/test-set-1/tests/test-184.yaml deleted file mode 100644 index 692e7e17..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-184.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-184 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.432223034+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.434363939+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-185.yaml b/java-dedup/keploy/test-set-1/tests/test-185.yaml deleted file mode 100644 index e0799e8a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-185.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-185 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.440976815+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.443406877+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-186.yaml b/java-dedup/keploy/test-set-1/tests/test-186.yaml deleted file mode 100644 index d961dcef..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-186.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-186 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.45100185+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.453664291+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-187.yaml b/java-dedup/keploy/test-set-1/tests/test-187.yaml deleted file mode 100644 index 841ca96f..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-187.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-187 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.462208492+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.464382076+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-188.yaml b/java-dedup/keploy/test-set-1/tests/test-188.yaml deleted file mode 100644 index 2babb4d9..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-188.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-188 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.472052025+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.474379771+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-189.yaml b/java-dedup/keploy/test-set-1/tests/test-189.yaml deleted file mode 100644 index 36ecab29..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-189.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-189 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.480832325+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.48341923+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-190.yaml b/java-dedup/keploy/test-set-1/tests/test-190.yaml deleted file mode 100644 index 6ac56635..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-190.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-190 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.490198369+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.492036576+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-191.yaml b/java-dedup/keploy/test-set-1/tests/test-191.yaml deleted file mode 100644 index 9408b92d..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-191.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-191 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.498059959+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.499941605+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-192.yaml b/java-dedup/keploy/test-set-1/tests/test-192.yaml deleted file mode 100644 index 4ee4796b..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-192.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-192 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.505494428+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.508362371+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-193.yaml b/java-dedup/keploy/test-set-1/tests/test-193.yaml deleted file mode 100644 index a4c2e624..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-193.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-193 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.515563002+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.518013672+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-194.yaml b/java-dedup/keploy/test-set-1/tests/test-194.yaml deleted file mode 100644 index bf9b2213..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-194.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-194 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.527447973+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.529636546+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-195.yaml b/java-dedup/keploy/test-set-1/tests/test-195.yaml deleted file mode 100644 index dcaa9762..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-195.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-195 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.537364863+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.53988727+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-196.yaml b/java-dedup/keploy/test-set-1/tests/test-196.yaml deleted file mode 100644 index ebacefe7..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-196.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-196 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.547515212+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.550072078+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-197.yaml b/java-dedup/keploy/test-set-1/tests/test-197.yaml deleted file mode 100644 index b5f772b2..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-197.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-197 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.557897801+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.560534073+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-198.yaml b/java-dedup/keploy/test-set-1/tests/test-198.yaml deleted file mode 100644 index 7c6c19eb..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-198.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-198 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.569836959+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.572128388+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-199.yaml b/java-dedup/keploy/test-set-1/tests/test-199.yaml deleted file mode 100644 index bfb2a837..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-199.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-199 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.579477102+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.581415825+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-200.yaml b/java-dedup/keploy/test-set-1/tests/test-200.yaml deleted file mode 100644 index 6c461fdb..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-200.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-200 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.589798983+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.592273723+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-201.yaml b/java-dedup/keploy/test-set-1/tests/test-201.yaml deleted file mode 100644 index 8943408b..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-201.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-201 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.600527457+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.602780025+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-202.yaml b/java-dedup/keploy/test-set-1/tests/test-202.yaml deleted file mode 100644 index f32715ea..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-202.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-202 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.611039459+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.613546767+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-203.yaml b/java-dedup/keploy/test-set-1/tests/test-203.yaml deleted file mode 100644 index fd5d233c..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-203.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-203 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.621505744+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.623826901+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-204.yaml b/java-dedup/keploy/test-set-1/tests/test-204.yaml deleted file mode 100644 index 3823b41b..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-204.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-204 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.63305888+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.635540631+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-205.yaml b/java-dedup/keploy/test-set-1/tests/test-205.yaml deleted file mode 100644 index 968bae4a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-205.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-205 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.643787024+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.646736073+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-206.yaml b/java-dedup/keploy/test-set-1/tests/test-206.yaml deleted file mode 100644 index 77a8af17..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-206.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-206 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.654376824+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.657192629+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-207.yaml b/java-dedup/keploy/test-set-1/tests/test-207.yaml deleted file mode 100644 index 34c50ed0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-207.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-207 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.664382578+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.666905877+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-208.yaml b/java-dedup/keploy/test-set-1/tests/test-208.yaml deleted file mode 100644 index d2e6aca6..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-208.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-208 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.675070083+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.677620801+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-209.yaml b/java-dedup/keploy/test-set-1/tests/test-209.yaml deleted file mode 100644 index 603c14f8..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-209.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-209 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.687325379+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.689732652+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-210.yaml b/java-dedup/keploy/test-set-1/tests/test-210.yaml deleted file mode 100644 index adbda33f..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-210.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-210 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.69833707+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.701854313+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-211.yaml b/java-dedup/keploy/test-set-1/tests/test-211.yaml deleted file mode 100644 index 6ab8eaa1..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-211.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-211 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.709357301+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.711647738+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-212.yaml b/java-dedup/keploy/test-set-1/tests/test-212.yaml deleted file mode 100644 index 5e0bdec6..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-212.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-212 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.719876423+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.72197363+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-213.yaml b/java-dedup/keploy/test-set-1/tests/test-213.yaml deleted file mode 100644 index 6b6e3e49..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-213.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-213 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.730255602+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.732451365+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-214.yaml b/java-dedup/keploy/test-set-1/tests/test-214.yaml deleted file mode 100644 index ddef060a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-214.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-214 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.739873804+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.742237669+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-215.yaml b/java-dedup/keploy/test-set-1/tests/test-215.yaml deleted file mode 100644 index bd0f33a7..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-215.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-215 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.749726837+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.751979986+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-216.yaml b/java-dedup/keploy/test-set-1/tests/test-216.yaml deleted file mode 100644 index 77bd9398..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-216.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-216 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.759523801+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.761993732+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-217.yaml b/java-dedup/keploy/test-set-1/tests/test-217.yaml deleted file mode 100644 index d37308c5..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-217.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-217 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.771104517+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.773319378+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-218.yaml b/java-dedup/keploy/test-set-1/tests/test-218.yaml deleted file mode 100644 index dac4ff44..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-218.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-218 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.780841514+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.782864204+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-219.yaml b/java-dedup/keploy/test-set-1/tests/test-219.yaml deleted file mode 100644 index a4b8800e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-219.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-219 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.789904141+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.791992608+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-220.yaml b/java-dedup/keploy/test-set-1/tests/test-220.yaml deleted file mode 100644 index 9b7c0169..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-220.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-220 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.800508+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.80301463+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-221.yaml b/java-dedup/keploy/test-set-1/tests/test-221.yaml deleted file mode 100644 index c56c4906..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-221.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-221 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.811784459+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.814203192+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-222.yaml b/java-dedup/keploy/test-set-1/tests/test-222.yaml deleted file mode 100644 index 18a06aa0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-222.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-222 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.822701395+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.825297389+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-223.yaml b/java-dedup/keploy/test-set-1/tests/test-223.yaml deleted file mode 100644 index 3c881c34..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-223.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-223 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.840687245+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.844929627+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-224.yaml b/java-dedup/keploy/test-set-1/tests/test-224.yaml deleted file mode 100644 index 78603046..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-224.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-224 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.854144937+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.857957357+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-225.yaml b/java-dedup/keploy/test-set-1/tests/test-225.yaml deleted file mode 100644 index 9358c26b..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-225.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-225 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.86600876+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.868412793+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-226.yaml b/java-dedup/keploy/test-set-1/tests/test-226.yaml deleted file mode 100644 index b1fb83bb..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-226.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-226 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.876469425+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.878663208+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-227.yaml b/java-dedup/keploy/test-set-1/tests/test-227.yaml deleted file mode 100644 index 445d446a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-227.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-227 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.888281201+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.890708782+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-228.yaml b/java-dedup/keploy/test-set-1/tests/test-228.yaml deleted file mode 100644 index 64d9867d..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-228.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-228 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.899527461+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.901963463+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-229.yaml b/java-dedup/keploy/test-set-1/tests/test-229.yaml deleted file mode 100644 index 12938a1e..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-229.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-229 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.910663756+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.913357236+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-230.yaml b/java-dedup/keploy/test-set-1/tests/test-230.yaml deleted file mode 100644 index d9daf897..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-230.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-230 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.921969653+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.924169716+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-231.yaml b/java-dedup/keploy/test-set-1/tests/test-231.yaml deleted file mode 100644 index b8483174..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-231.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-231 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.934849361+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.936842573+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-232.yaml b/java-dedup/keploy/test-set-1/tests/test-232.yaml deleted file mode 100644 index 0788d716..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-232.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-232 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.944603838+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.946962013+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-233.yaml b/java-dedup/keploy/test-set-1/tests/test-233.yaml deleted file mode 100644 index fa749c05..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-233.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-233 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.95423666+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.956346297+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-234.yaml b/java-dedup/keploy/test-set-1/tests/test-234.yaml deleted file mode 100644 index 91f308b5..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-234.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-234 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.965442901+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.967659083+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-235.yaml b/java-dedup/keploy/test-set-1/tests/test-235.yaml deleted file mode 100644 index d5a0a6cf..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-235.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-235 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.976830606+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.978684993+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-236.yaml b/java-dedup/keploy/test-set-1/tests/test-236.yaml deleted file mode 100644 index 6f4f2f4f..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-236.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-236 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.986755725+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.988925658+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-237.yaml b/java-dedup/keploy/test-set-1/tests/test-237.yaml deleted file mode 100644 index 3ffe7e92..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-237.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-237 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.996198346+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:37.998445826+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015177 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-238.yaml b/java-dedup/keploy/test-set-1/tests/test-238.yaml deleted file mode 100644 index f5c03fb0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-238.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-238 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.004848801+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.007242985+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-239.yaml b/java-dedup/keploy/test-set-1/tests/test-239.yaml deleted file mode 100644 index 0a2e0ef8..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-239.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-239 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.016233185+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.018645547+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-240.yaml b/java-dedup/keploy/test-set-1/tests/test-240.yaml deleted file mode 100644 index 3f349a9a..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-240.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-240 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.026815234+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.028799636+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-241.yaml b/java-dedup/keploy/test-set-1/tests/test-241.yaml deleted file mode 100644 index 555143c1..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-241.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-241 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.037305778+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.03952635+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-242.yaml b/java-dedup/keploy/test-set-1/tests/test-242.yaml deleted file mode 100644 index 981e96ad..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-242.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-242 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.046153365+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.048007652+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-243.yaml b/java-dedup/keploy/test-set-1/tests/test-243.yaml deleted file mode 100644 index 7590d71c..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-243.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-243 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.054825599+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.056794241+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-244.yaml b/java-dedup/keploy/test-set-1/tests/test-244.yaml deleted file mode 100644 index ce0c1ff7..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-244.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-244 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.065309183+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.067645139+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-245.yaml b/java-dedup/keploy/test-set-1/tests/test-245.yaml deleted file mode 100644 index 010484f1..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-245.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-245 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.074726454+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.076568273+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-246.yaml b/java-dedup/keploy/test-set-1/tests/test-246.yaml deleted file mode 100644 index 64dc6e2f..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-246.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-246 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.082037779+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.083905496+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-247.yaml b/java-dedup/keploy/test-set-1/tests/test-247.yaml deleted file mode 100644 index cbae74e0..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-247.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-247 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.08988331+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.092253385+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-248.yaml b/java-dedup/keploy/test-set-1/tests/test-248.yaml deleted file mode 100644 index 5e10b256..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-248.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-248 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.099071742+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.101032105+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-249.yaml b/java-dedup/keploy/test-set-1/tests/test-249.yaml deleted file mode 100644 index fb5639da..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-249.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-249 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.108179168+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.110464376+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-250.yaml b/java-dedup/keploy/test-set-1/tests/test-250.yaml deleted file mode 100644 index 5fd541c4..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-250.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-250 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.119767873+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.122375106+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-251.yaml b/java-dedup/keploy/test-set-1/tests/test-251.yaml deleted file mode 100644 index c7caa756..00000000 --- a/java-dedup/keploy/test-set-1/tests/test-251.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-251 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:38.132711247+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:37 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:49:38.135052553+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015178 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-102.yaml b/java-dedup/keploy/test-set-2/tests/test-102.yaml deleted file mode 100644 index 6895bd3f..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-102.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-102 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.245335167+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.247762228+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-103.yaml b/java-dedup/keploy/test-set-2/tests/test-103.yaml deleted file mode 100644 index 6da18b4d..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-103.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-103 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.255498825+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.258147558+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-104.yaml b/java-dedup/keploy/test-set-2/tests/test-104.yaml deleted file mode 100644 index bc047c58..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-104.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-104 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.265668123+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.26783571+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-105.yaml b/java-dedup/keploy/test-set-2/tests/test-105.yaml deleted file mode 100644 index a8f53717..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-105.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-105 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.2764749+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.279351186+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-106.yaml b/java-dedup/keploy/test-set-2/tests/test-106.yaml deleted file mode 100644 index fcec0594..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-106.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-106 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.288911936+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.291952424+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-107.yaml b/java-dedup/keploy/test-set-2/tests/test-107.yaml deleted file mode 100644 index 4d647ea1..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-107.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-107 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.300449332+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.303678632+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-108.yaml b/java-dedup/keploy/test-set-2/tests/test-108.yaml deleted file mode 100644 index a1fa1205..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-108.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-108 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.312075919+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.314969014+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-109.yaml b/java-dedup/keploy/test-set-2/tests/test-109.yaml deleted file mode 100644 index 430eea78..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-109.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-109 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.322766023+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.325511738+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-110.yaml b/java-dedup/keploy/test-set-2/tests/test-110.yaml deleted file mode 100644 index c29ddba2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-110.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-110 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.334644253+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.337442148+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-111.yaml b/java-dedup/keploy/test-set-2/tests/test-111.yaml deleted file mode 100644 index 8a990e50..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-111.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-111 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.34480527+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.347391283+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-112.yaml b/java-dedup/keploy/test-set-2/tests/test-112.yaml deleted file mode 100644 index cdee58de..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-112.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-112 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.354392851+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.356906863+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-113.yaml b/java-dedup/keploy/test-set-2/tests/test-113.yaml deleted file mode 100644 index 52db6737..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-113.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-113 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.364779833+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.367206533+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-114.yaml b/java-dedup/keploy/test-set-2/tests/test-114.yaml deleted file mode 100644 index e8b74c1c..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-114.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-114 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.374367563+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.376833514+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-115.yaml b/java-dedup/keploy/test-set-2/tests/test-115.yaml deleted file mode 100644 index fe421e89..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-115.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-115 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.385755717+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.388723834+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-116.yaml b/java-dedup/keploy/test-set-2/tests/test-116.yaml deleted file mode 100644 index ea3501bc..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-116.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-116 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.397755648+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.400618774+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-117.yaml b/java-dedup/keploy/test-set-2/tests/test-117.yaml deleted file mode 100644 index fa3791fa..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-117.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-117 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.409140521+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.411862146+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-118.yaml b/java-dedup/keploy/test-set-2/tests/test-118.yaml deleted file mode 100644 index 12d67288..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-118.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-118 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.420322262+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.426599461+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-119.yaml b/java-dedup/keploy/test-set-2/tests/test-119.yaml deleted file mode 100644 index f10288e2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-119.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-119 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.439417183+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.442070136+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-120.yaml b/java-dedup/keploy/test-set-2/tests/test-120.yaml deleted file mode 100644 index d5dcc0d3..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-120.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-120 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.448737401+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.451237902+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-121.yaml b/java-dedup/keploy/test-set-2/tests/test-121.yaml deleted file mode 100644 index a4035b9c..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-121.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-121 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.459044701+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.46140922+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-122.yaml b/java-dedup/keploy/test-set-2/tests/test-122.yaml deleted file mode 100644 index 12a1793f..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-122.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-122 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.469190139+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.471886212+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-123.yaml b/java-dedup/keploy/test-set-2/tests/test-123.yaml deleted file mode 100644 index 533d65fe..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-123.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-123 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.482642218+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.485385003+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-124.yaml b/java-dedup/keploy/test-set-2/tests/test-124.yaml deleted file mode 100644 index 7cc7d809..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-124.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-124 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.493669407+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.495953046+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-125.yaml b/java-dedup/keploy/test-set-2/tests/test-125.yaml deleted file mode 100644 index 7079702c..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-125.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-125 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.503887996+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.506562679+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-126.yaml b/java-dedup/keploy/test-set-2/tests/test-126.yaml deleted file mode 100644 index c2e2139a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-126.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-126 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.515773425+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.51851112+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-127.yaml b/java-dedup/keploy/test-set-2/tests/test-127.yaml deleted file mode 100644 index 4f0c8a0a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-127.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-127 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.530670783+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.53357269+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-128.yaml b/java-dedup/keploy/test-set-2/tests/test-128.yaml deleted file mode 100644 index d0788c6a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-128.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-128 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.542859896+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.5470831+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-129.yaml b/java-dedup/keploy/test-set-2/tests/test-129.yaml deleted file mode 100644 index a88f09ae..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-129.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-129 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.5557416+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.558400113+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-130.yaml b/java-dedup/keploy/test-set-2/tests/test-130.yaml deleted file mode 100644 index e6267e77..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-130.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-130 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.566711608+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.569694676+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-131.yaml b/java-dedup/keploy/test-set-2/tests/test-131.yaml deleted file mode 100644 index 425c8730..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-131.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-131 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.577412882+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.580003405+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-132.yaml b/java-dedup/keploy/test-set-2/tests/test-132.yaml deleted file mode 100644 index 4c5c64b9..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-132.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-132 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.591205717+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.59382136+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-133.yaml b/java-dedup/keploy/test-set-2/tests/test-133.yaml deleted file mode 100644 index d2552c57..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-133.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-133 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.606959614+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.609692229+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-134.yaml b/java-dedup/keploy/test-set-2/tests/test-134.yaml deleted file mode 100644 index e1426de2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-134.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-134 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.617586249+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.620075431+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-135.yaml b/java-dedup/keploy/test-set-2/tests/test-135.yaml deleted file mode 100644 index a4be077e..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-135.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-135 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.626959707+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.629319187+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-136.yaml b/java-dedup/keploy/test-set-2/tests/test-136.yaml deleted file mode 100644 index b0645948..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-136.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-136 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.637927855+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.640386426+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-137.yaml b/java-dedup/keploy/test-set-2/tests/test-137.yaml deleted file mode 100644 index bed8cbb1..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-137.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-137 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.648757532+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.651091531+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-138.yaml b/java-dedup/keploy/test-set-2/tests/test-138.yaml deleted file mode 100644 index 08a3d256..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-138.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-138 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.659591179+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.661785286+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-139.yaml b/java-dedup/keploy/test-set-2/tests/test-139.yaml deleted file mode 100644 index db1e9950..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-139.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-139 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.669134029+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.671295446+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-140.yaml b/java-dedup/keploy/test-set-2/tests/test-140.yaml deleted file mode 100644 index d4d15b43..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-140.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-140 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.6788224+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.68118268+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-141.yaml b/java-dedup/keploy/test-set-2/tests/test-141.yaml deleted file mode 100644 index 27075972..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-141.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-141 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.690113603+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.69303712+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-142.yaml b/java-dedup/keploy/test-set-2/tests/test-142.yaml deleted file mode 100644 index 1a23ae17..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-142.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-142 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.702452429+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.70493295+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-143.yaml b/java-dedup/keploy/test-set-2/tests/test-143.yaml deleted file mode 100644 index a15035a7..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-143.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-143 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.713992564+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.716267242+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-144.yaml b/java-dedup/keploy/test-set-2/tests/test-144.yaml deleted file mode 100644 index 0f9b6398..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-144.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-144 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.725461248+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.728546797+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-145.yaml b/java-dedup/keploy/test-set-2/tests/test-145.yaml deleted file mode 100644 index 30d151df..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-145.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-145 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.73747343+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.740075652+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-146.yaml b/java-dedup/keploy/test-set-2/tests/test-146.yaml deleted file mode 100644 index 47790a54..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-146.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-146 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.748120624+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.750737447+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-147.yaml b/java-dedup/keploy/test-set-2/tests/test-147.yaml deleted file mode 100644 index c6ff8bdb..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-147.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-147 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.75963553+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.761951658+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-148.yaml b/java-dedup/keploy/test-set-2/tests/test-148.yaml deleted file mode 100644 index 96a2ea53..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-148.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-148 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.770406874+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.772873426+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-149.yaml b/java-dedup/keploy/test-set-2/tests/test-149.yaml deleted file mode 100644 index c46af4f7..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-149.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-149 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.780180488+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.78266158+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-150.yaml b/java-dedup/keploy/test-set-2/tests/test-150.yaml deleted file mode 100644 index 8fa73570..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-150.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-150 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.791237907+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.794334997+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-151.yaml b/java-dedup/keploy/test-set-2/tests/test-151.yaml deleted file mode 100644 index 5a2beebc..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-151.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-151 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.803177298+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.80577461+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-152.yaml b/java-dedup/keploy/test-set-2/tests/test-152.yaml deleted file mode 100644 index a572a4aa..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-152.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-152 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.814191767+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.816797459+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-153.yaml b/java-dedup/keploy/test-set-2/tests/test-153.yaml deleted file mode 100644 index d36f11ba..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-153.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-153 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.824635459+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.827234031+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-154.yaml b/java-dedup/keploy/test-set-2/tests/test-154.yaml deleted file mode 100644 index b7399b92..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-154.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-154 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.835623768+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.838127989+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-155.yaml b/java-dedup/keploy/test-set-2/tests/test-155.yaml deleted file mode 100644 index c4d24faf..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-155.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-155 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.847110381+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.84940136+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-156.yaml b/java-dedup/keploy/test-set-2/tests/test-156.yaml deleted file mode 100644 index f4e89023..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-156.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-156 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.857522113+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.859891913+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-157.yaml b/java-dedup/keploy/test-set-2/tests/test-157.yaml deleted file mode 100644 index 40a92287..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-157.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-157 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.868506221+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.871256897+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-158.yaml b/java-dedup/keploy/test-set-2/tests/test-158.yaml deleted file mode 100644 index 7d1ea4e5..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-158.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-158 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.880726856+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.883103255+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-159.yaml b/java-dedup/keploy/test-set-2/tests/test-159.yaml deleted file mode 100644 index ab7491cb..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-159.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-159 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.891445491+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.893806221+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-160.yaml b/java-dedup/keploy/test-set-2/tests/test-160.yaml deleted file mode 100644 index 37bbbe2d..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-160.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-160 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.902015143+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.9048186+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-161.yaml b/java-dedup/keploy/test-set-2/tests/test-161.yaml deleted file mode 100644 index 36f946be..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-161.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-161 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.914300328+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.916655098+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-162.yaml b/java-dedup/keploy/test-set-2/tests/test-162.yaml deleted file mode 100644 index 3bd473b7..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-162.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-162 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.925424588+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.928575868+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-163.yaml b/java-dedup/keploy/test-set-2/tests/test-163.yaml deleted file mode 100644 index 19a65e8a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-163.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-163 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.937342229+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.939886941+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-164.yaml b/java-dedup/keploy/test-set-2/tests/test-164.yaml deleted file mode 100644 index 5563c3c4..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-164.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-164 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.947789601+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.950069759+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-165.yaml b/java-dedup/keploy/test-set-2/tests/test-165.yaml deleted file mode 100644 index a1d096ca..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-165.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-165 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.956928366+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.959502938+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-166.yaml b/java-dedup/keploy/test-set-2/tests/test-166.yaml deleted file mode 100644 index 2f59d050..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-166.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-166 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.968256239+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.970919492+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-167.yaml b/java-dedup/keploy/test-set-2/tests/test-167.yaml deleted file mode 100644 index e38741a2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-167.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-167 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.978200514+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.980558193+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-168.yaml b/java-dedup/keploy/test-set-2/tests/test-168.yaml deleted file mode 100644 index 94cecf91..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-168.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-168 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.988772218+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:41.991112866+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015241 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-169.yaml b/java-dedup/keploy/test-set-2/tests/test-169.yaml deleted file mode 100644 index 6e582052..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-169.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-169 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.999338871+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.00172159+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-170.yaml b/java-dedup/keploy/test-set-2/tests/test-170.yaml deleted file mode 100644 index dfd9ae5a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-170.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-170 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.009396375+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.011758255+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-171.yaml b/java-dedup/keploy/test-set-2/tests/test-171.yaml deleted file mode 100644 index 6d17d049..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-171.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-171 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.01947504+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.022275865+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-172.yaml b/java-dedup/keploy/test-set-2/tests/test-172.yaml deleted file mode 100644 index 4eb66be3..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-172.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-172 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.031358258+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.033849828+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-173.yaml b/java-dedup/keploy/test-set-2/tests/test-173.yaml deleted file mode 100644 index 983accfc..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-173.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-173 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.042765218+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.045188489+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-174.yaml b/java-dedup/keploy/test-set-2/tests/test-174.yaml deleted file mode 100644 index d0821ffa..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-174.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-174 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.053992289+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.056340457+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-175.yaml b/java-dedup/keploy/test-set-2/tests/test-175.yaml deleted file mode 100644 index 3cec9066..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-175.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-175 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.065066676+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.067551417+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-176.yaml b/java-dedup/keploy/test-set-2/tests/test-176.yaml deleted file mode 100644 index 2a0ebda0..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-176.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-176 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.075897789+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.078596994+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-177.yaml b/java-dedup/keploy/test-set-2/tests/test-177.yaml deleted file mode 100644 index dfd52a46..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-177.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-177 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.087068818+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.089421568+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-178.yaml b/java-dedup/keploy/test-set-2/tests/test-178.yaml deleted file mode 100644 index f387a579..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-178.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-178 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.096628037+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.099448302+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-179.yaml b/java-dedup/keploy/test-set-2/tests/test-179.yaml deleted file mode 100644 index 4c7355f3..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-179.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-179 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.108635645+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.111229339+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-180.yaml b/java-dedup/keploy/test-set-2/tests/test-180.yaml deleted file mode 100644 index 3a801d3c..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-180.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-180 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.121288253+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.123921816+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-181.yaml b/java-dedup/keploy/test-set-2/tests/test-181.yaml deleted file mode 100644 index 40a2aea4..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-181.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-181 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.132414421+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.136020095+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-182.yaml b/java-dedup/keploy/test-set-2/tests/test-182.yaml deleted file mode 100644 index 98d782f2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-182.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-182 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.144849405+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.147282875+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-183.yaml b/java-dedup/keploy/test-set-2/tests/test-183.yaml deleted file mode 100644 index da7aaa63..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-183.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-183 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.1557623+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.157657404+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-184.yaml b/java-dedup/keploy/test-set-2/tests/test-184.yaml deleted file mode 100644 index d74cccfb..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-184.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-184 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.166605305+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.169038384+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-185.yaml b/java-dedup/keploy/test-set-2/tests/test-185.yaml deleted file mode 100644 index ef952831..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-185.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-185 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.176854972+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.179213742+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-186.yaml b/java-dedup/keploy/test-set-2/tests/test-186.yaml deleted file mode 100644 index e0bccc3f..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-186.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-186 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.189023613+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.19280883+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-187.yaml b/java-dedup/keploy/test-set-2/tests/test-187.yaml deleted file mode 100644 index a2269c36..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-187.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-187 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.200768108+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.203413011+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-188.yaml b/java-dedup/keploy/test-set-2/tests/test-188.yaml deleted file mode 100644 index a6134974..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-188.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-188 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.212739337+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.215327349+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-189.yaml b/java-dedup/keploy/test-set-2/tests/test-189.yaml deleted file mode 100644 index 51265bb6..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-189.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-189 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.223071595+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.225440804+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-190.yaml b/java-dedup/keploy/test-set-2/tests/test-190.yaml deleted file mode 100644 index e2e142cb..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-190.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-190 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.232442001+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.234993692+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-191.yaml b/java-dedup/keploy/test-set-2/tests/test-191.yaml deleted file mode 100644 index e2d75aa1..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-191.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-191 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.243253675+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.245863488+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-192.yaml b/java-dedup/keploy/test-set-2/tests/test-192.yaml deleted file mode 100644 index 660bb4b2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-192.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-192 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.254665157+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.256968505+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-193.yaml b/java-dedup/keploy/test-set-2/tests/test-193.yaml deleted file mode 100644 index b87b4e0e..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-193.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-193 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.265284868+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.267732269+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-194.yaml b/java-dedup/keploy/test-set-2/tests/test-194.yaml deleted file mode 100644 index 1d4f9c21..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-194.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-194 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.274411901+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.276887862+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-195.yaml b/java-dedup/keploy/test-set-2/tests/test-195.yaml deleted file mode 100644 index 69174654..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-195.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-195 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.284934693+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.287331163+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-196.yaml b/java-dedup/keploy/test-set-2/tests/test-196.yaml deleted file mode 100644 index d6f5a1bb..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-196.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-196 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.294599492+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.296809419+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-197.yaml b/java-dedup/keploy/test-set-2/tests/test-197.yaml deleted file mode 100644 index b6c088a4..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-197.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-197 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.303990618+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.306381818+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-198.yaml b/java-dedup/keploy/test-set-2/tests/test-198.yaml deleted file mode 100644 index 0527ffcf..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-198.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-198 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.313807761+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.315806495+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-199.yaml b/java-dedup/keploy/test-set-2/tests/test-199.yaml deleted file mode 100644 index 9e9a435e..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-199.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-199 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.324579654+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.326941392+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-200.yaml b/java-dedup/keploy/test-set-2/tests/test-200.yaml deleted file mode 100644 index b158cf93..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-200.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-200 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.334940632+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.337380752+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-201.yaml b/java-dedup/keploy/test-set-2/tests/test-201.yaml deleted file mode 100644 index bc556707..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-201.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-201 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.345676845+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.347944623+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-202.yaml b/java-dedup/keploy/test-set-2/tests/test-202.yaml deleted file mode 100644 index ac97211b..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-202.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-202 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.357243798+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.35978458+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-203.yaml b/java-dedup/keploy/test-set-2/tests/test-203.yaml deleted file mode 100644 index e83c6594..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-203.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-203 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.368555418+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.37112274+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-204.yaml b/java-dedup/keploy/test-set-2/tests/test-204.yaml deleted file mode 100644 index 41c2cb34..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-204.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-204 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.379797089+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.381913925+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-205.yaml b/java-dedup/keploy/test-set-2/tests/test-205.yaml deleted file mode 100644 index 815f10d9..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-205.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-205 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.391042628+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.393382977+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-206.yaml b/java-dedup/keploy/test-set-2/tests/test-206.yaml deleted file mode 100644 index 0895aa08..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-206.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-206 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.402549751+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.405294305+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-207.yaml b/java-dedup/keploy/test-set-2/tests/test-207.yaml deleted file mode 100644 index 7222391d..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-207.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-207 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.414094694+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.416563634+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-208.yaml b/java-dedup/keploy/test-set-2/tests/test-208.yaml deleted file mode 100644 index 51e5fbaa..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-208.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-208 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.424131188+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.426927793+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-209.yaml b/java-dedup/keploy/test-set-2/tests/test-209.yaml deleted file mode 100644 index e87f8333..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-209.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-209 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.435296037+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.437835828+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-210.yaml b/java-dedup/keploy/test-set-2/tests/test-210.yaml deleted file mode 100644 index 334128e2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-210.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-210 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.44690479+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.449032167+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-211.yaml b/java-dedup/keploy/test-set-2/tests/test-211.yaml deleted file mode 100644 index 2cc77a74..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-211.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-211 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.456428579+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.458772227+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-212.yaml b/java-dedup/keploy/test-set-2/tests/test-212.yaml deleted file mode 100644 index 6b16be69..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-212.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-212 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.467353235+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.469579571+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-213.yaml b/java-dedup/keploy/test-set-2/tests/test-213.yaml deleted file mode 100644 index 9808bee0..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-213.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-213 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.477806593+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.47991919+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-214.yaml b/java-dedup/keploy/test-set-2/tests/test-214.yaml deleted file mode 100644 index 2983f523..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-214.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-214 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.48885925+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.490947466+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-215.yaml b/java-dedup/keploy/test-set-2/tests/test-215.yaml deleted file mode 100644 index 122a0e65..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-215.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-215 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.499618294+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.50254011+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-216.yaml b/java-dedup/keploy/test-set-2/tests/test-216.yaml deleted file mode 100644 index 73a9bd42..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-216.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-216 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.512019247+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.514304556+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-217.yaml b/java-dedup/keploy/test-set-2/tests/test-217.yaml deleted file mode 100644 index 933acd39..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-217.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-217 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.523636272+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.527251797+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-218.yaml b/java-dedup/keploy/test-set-2/tests/test-218.yaml deleted file mode 100644 index ec198639..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-218.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-218 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.536886276+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.539211705+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-219.yaml b/java-dedup/keploy/test-set-2/tests/test-219.yaml deleted file mode 100644 index 65b866f0..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-219.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-219 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.548007894+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.550569395+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-220.yaml b/java-dedup/keploy/test-set-2/tests/test-220.yaml deleted file mode 100644 index e46c4692..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-220.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-220 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.559046771+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.561388551+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-221.yaml b/java-dedup/keploy/test-set-2/tests/test-221.yaml deleted file mode 100644 index 34f8db5a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-221.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-221 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.569739393+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.572071573+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-222.yaml b/java-dedup/keploy/test-set-2/tests/test-222.yaml deleted file mode 100644 index 26d03b60..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-222.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-222 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.579776678+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.582693124+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-223.yaml b/java-dedup/keploy/test-set-2/tests/test-223.yaml deleted file mode 100644 index 087a55c3..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-223.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-223 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.591652505+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.594240128+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-224.yaml b/java-dedup/keploy/test-set-2/tests/test-224.yaml deleted file mode 100644 index f9607540..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-224.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-224 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.603059477+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.605341895+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-225.yaml b/java-dedup/keploy/test-set-2/tests/test-225.yaml deleted file mode 100644 index 37f830f5..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-225.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-225 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.61384122+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.6162139+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-226.yaml b/java-dedup/keploy/test-set-2/tests/test-226.yaml deleted file mode 100644 index 5e725814..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-226.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-226 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.623465219+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.62584392+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-227.yaml b/java-dedup/keploy/test-set-2/tests/test-227.yaml deleted file mode 100644 index 4b15abcf..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-227.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-227 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.632535412+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.63559945+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-228.yaml b/java-dedup/keploy/test-set-2/tests/test-228.yaml deleted file mode 100644 index 2a8ae7f4..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-228.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-228 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.64521428+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.647758021+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-229.yaml b/java-dedup/keploy/test-set-2/tests/test-229.yaml deleted file mode 100644 index b43dc293..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-229.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-229 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.655399116+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.657545102+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-230.yaml b/java-dedup/keploy/test-set-2/tests/test-230.yaml deleted file mode 100644 index 594b4bd3..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-230.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-230 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.664710321+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.667081571+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-231.yaml b/java-dedup/keploy/test-set-2/tests/test-231.yaml deleted file mode 100644 index 8bbaca70..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-231.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-231 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.673633532+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.676103143+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-232.yaml b/java-dedup/keploy/test-set-2/tests/test-232.yaml deleted file mode 100644 index fb8ed78c..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-232.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-232 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.68313943+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.68557334+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-233.yaml b/java-dedup/keploy/test-set-2/tests/test-233.yaml deleted file mode 100644 index dc93aff2..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-233.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-233 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.692753599+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.694899886+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-234.yaml b/java-dedup/keploy/test-set-2/tests/test-234.yaml deleted file mode 100644 index 29fbbf16..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-234.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-234 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.704025289+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.706393669+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-235.yaml b/java-dedup/keploy/test-set-2/tests/test-235.yaml deleted file mode 100644 index 415fb406..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-235.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-235 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.715220588+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.717402055+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-236.yaml b/java-dedup/keploy/test-set-2/tests/test-236.yaml deleted file mode 100644 index 3728004d..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-236.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-236 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.725674427+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.727807113+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-237.yaml b/java-dedup/keploy/test-set-2/tests/test-237.yaml deleted file mode 100644 index a513238c..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-237.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-237 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.735306486+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.737397173+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-238.yaml b/java-dedup/keploy/test-set-2/tests/test-238.yaml deleted file mode 100644 index 684d53d0..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-238.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-238 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.744287528+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.746440545+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-239.yaml b/java-dedup/keploy/test-set-2/tests/test-239.yaml deleted file mode 100644 index 9fe16689..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-239.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-239 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.755377486+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.75739976+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-240.yaml b/java-dedup/keploy/test-set-2/tests/test-240.yaml deleted file mode 100644 index 8d1c131d..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-240.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-240 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.766316622+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.768534859+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-241.yaml b/java-dedup/keploy/test-set-2/tests/test-241.yaml deleted file mode 100644 index 139f780b..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-241.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-241 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.775282032+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.777575431+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-242.yaml b/java-dedup/keploy/test-set-2/tests/test-242.yaml deleted file mode 100644 index b51c66e6..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-242.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-242 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.786578962+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.789079784+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-243.yaml b/java-dedup/keploy/test-set-2/tests/test-243.yaml deleted file mode 100644 index 64ea6a52..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-243.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-243 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.796948961+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.799359571+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-244.yaml b/java-dedup/keploy/test-set-2/tests/test-244.yaml deleted file mode 100644 index 0635b6d4..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-244.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-244 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.808619226+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.811018416+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-245.yaml b/java-dedup/keploy/test-set-2/tests/test-245.yaml deleted file mode 100644 index b7821556..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-245.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-245 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.818964934+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.821979641+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-246.yaml b/java-dedup/keploy/test-set-2/tests/test-246.yaml deleted file mode 100644 index 3679952c..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-246.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-246 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.830032412+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.832577463+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-247.yaml b/java-dedup/keploy/test-set-2/tests/test-247.yaml deleted file mode 100644 index 7a3838df..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-247.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-247 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.841722397+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.843817202+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-248.yaml b/java-dedup/keploy/test-set-2/tests/test-248.yaml deleted file mode 100644 index 0fd5c01a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-248.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-248 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.850455364+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.852810134+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-249.yaml b/java-dedup/keploy/test-set-2/tests/test-249.yaml deleted file mode 100644 index fa15eef6..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-249.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-249 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.859987832+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.862111969+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-250.yaml b/java-dedup/keploy/test-set-2/tests/test-250.yaml deleted file mode 100644 index 8c8ef5fe..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-250.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-250 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.869182097+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.871193472+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-251.yaml b/java-dedup/keploy/test-set-2/tests/test-251.yaml deleted file mode 100644 index dce7f07a..00000000 --- a/java-dedup/keploy/test-set-2/tests/test-251.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-251 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.879418243+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:50:42.881338357+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015242 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-102.yaml b/java-dedup/keploy/test-set-3/tests/test-102.yaml deleted file mode 100644 index 3d9551df..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-102.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-102 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.854960424+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.856848567+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-103.yaml b/java-dedup/keploy/test-set-3/tests/test-103.yaml deleted file mode 100644 index c447e037..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-103.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-103 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.865021136+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.867060888+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-104.yaml b/java-dedup/keploy/test-set-3/tests/test-104.yaml deleted file mode 100644 index ada3ee78..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-104.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-104 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.874246515+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.880342531+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-105.yaml b/java-dedup/keploy/test-set-3/tests/test-105.yaml deleted file mode 100644 index be9aa753..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-105.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-105 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.887386619+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.889818221+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-106.yaml b/java-dedup/keploy/test-set-3/tests/test-106.yaml deleted file mode 100644 index 616340e0..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-106.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-106 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.898096591+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.899934633+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-107.yaml b/java-dedup/keploy/test-set-3/tests/test-107.yaml deleted file mode 100644 index b9e1f94e..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-107.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-107 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.905730198+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.907995351+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-108.yaml b/java-dedup/keploy/test-set-3/tests/test-108.yaml deleted file mode 100644 index b09b99ad..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-108.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-108 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.914459638+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.916967281+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-109.yaml b/java-dedup/keploy/test-set-3/tests/test-109.yaml deleted file mode 100644 index 560f47c6..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-109.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-109 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.923839268+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.92621669+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-110.yaml b/java-dedup/keploy/test-set-3/tests/test-110.yaml deleted file mode 100644 index 368203b8..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-110.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-110 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.932553987+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.93453053+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-111.yaml b/java-dedup/keploy/test-set-3/tests/test-111.yaml deleted file mode 100644 index a8685abe..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-111.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-111 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.940420105+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.942178627+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-112.yaml b/java-dedup/keploy/test-set-3/tests/test-112.yaml deleted file mode 100644 index 2dd09621..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-112.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-112 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.948332794+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.950868927+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-113.yaml b/java-dedup/keploy/test-set-3/tests/test-113.yaml deleted file mode 100644 index 1e5a594b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-113.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-113 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.959372496+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.961276927+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-114.yaml b/java-dedup/keploy/test-set-3/tests/test-114.yaml deleted file mode 100644 index 8638a49d..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-114.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-114 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.967669245+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.969336647+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-115.yaml b/java-dedup/keploy/test-set-3/tests/test-115.yaml deleted file mode 100644 index d9d989b2..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-115.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-115 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.976737364+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.979075217+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-116.yaml b/java-dedup/keploy/test-set-3/tests/test-116.yaml deleted file mode 100644 index 42a924f6..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-116.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-116 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.985477364+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.987515766+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-117.yaml b/java-dedup/keploy/test-set-3/tests/test-117.yaml deleted file mode 100644 index 00413939..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-117.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-117 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:45.994167373+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:45.996761666+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015305 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-118.yaml b/java-dedup/keploy/test-set-3/tests/test-118.yaml deleted file mode 100644 index 79490e76..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-118.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-118 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.002519142+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.004428063+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-119.yaml b/java-dedup/keploy/test-set-3/tests/test-119.yaml deleted file mode 100644 index 6ba03b5c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-119.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-119 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.01236745+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.014632782+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-120.yaml b/java-dedup/keploy/test-set-3/tests/test-120.yaml deleted file mode 100644 index 269f4010..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-120.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-120 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.022087359+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.024205931+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-121.yaml b/java-dedup/keploy/test-set-3/tests/test-121.yaml deleted file mode 100644 index 304494e7..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-121.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-121 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.029898657+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.032527488+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-122.yaml b/java-dedup/keploy/test-set-3/tests/test-122.yaml deleted file mode 100644 index 6e478bcb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-122.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-122 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.040464397+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.042685698+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-123.yaml b/java-dedup/keploy/test-set-3/tests/test-123.yaml deleted file mode 100644 index 3e7dc8e3..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-123.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-123 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.049173984+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.051468076+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-124.yaml b/java-dedup/keploy/test-set-3/tests/test-124.yaml deleted file mode 100644 index 99dc22e3..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-124.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-124 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.058628722+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.060825365+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-125.yaml b/java-dedup/keploy/test-set-3/tests/test-125.yaml deleted file mode 100644 index 56fb9e7b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-125.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-125 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.067376081+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.069806103+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-126.yaml b/java-dedup/keploy/test-set-3/tests/test-126.yaml deleted file mode 100644 index b0a15321..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-126.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-126 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.076390579+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.079606742+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-127.yaml b/java-dedup/keploy/test-set-3/tests/test-127.yaml deleted file mode 100644 index a79ae6a4..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-127.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-127 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.086019297+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.088085029+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-128.yaml b/java-dedup/keploy/test-set-3/tests/test-128.yaml deleted file mode 100644 index e9df7cfb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-128.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-128 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.093750395+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.096838647+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-129.yaml b/java-dedup/keploy/test-set-3/tests/test-129.yaml deleted file mode 100644 index 4691747f..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-129.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-129 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.103680143+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.105614096+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-130.yaml b/java-dedup/keploy/test-set-3/tests/test-130.yaml deleted file mode 100644 index 0c9e273c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-130.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-130 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.112697521+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.115690924+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-131.yaml b/java-dedup/keploy/test-set-3/tests/test-131.yaml deleted file mode 100644 index d0a4a5ad..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-131.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-131 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.12236982+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.124834242+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-132.yaml b/java-dedup/keploy/test-set-3/tests/test-132.yaml deleted file mode 100644 index 11b0efa7..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-132.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-132 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.131253448+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.13336898+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-133.yaml b/java-dedup/keploy/test-set-3/tests/test-133.yaml deleted file mode 100644 index bca19fde..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-133.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-133 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.142476329+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.144681931+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-134.yaml b/java-dedup/keploy/test-set-3/tests/test-134.yaml deleted file mode 100644 index b068786d..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-134.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-134 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.151754887+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.153633739+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-135.yaml b/java-dedup/keploy/test-set-3/tests/test-135.yaml deleted file mode 100644 index 7063f0cc..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-135.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-135 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.162150337+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.165046419+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-136.yaml b/java-dedup/keploy/test-set-3/tests/test-136.yaml deleted file mode 100644 index 4904752b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-136.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-136 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.172051785+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.174160597+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-137.yaml b/java-dedup/keploy/test-set-3/tests/test-137.yaml deleted file mode 100644 index f9c82b1d..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-137.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-137 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.181864794+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.184112566+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-138.yaml b/java-dedup/keploy/test-set-3/tests/test-138.yaml deleted file mode 100644 index 263b94ef..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-138.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-138 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.190089062+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.191722343+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-139.yaml b/java-dedup/keploy/test-set-3/tests/test-139.yaml deleted file mode 100644 index 92d1be08..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-139.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-139 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.197765809+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.19969197+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-140.yaml b/java-dedup/keploy/test-set-3/tests/test-140.yaml deleted file mode 100644 index 39101459..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-140.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-140 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.207142237+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.208890329+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-141.yaml b/java-dedup/keploy/test-set-3/tests/test-141.yaml deleted file mode 100644 index 83629516..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-141.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-141 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.214639264+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.216627826+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-142.yaml b/java-dedup/keploy/test-set-3/tests/test-142.yaml deleted file mode 100644 index f11a63eb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-142.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-142 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.222250271+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.223901492+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-143.yaml b/java-dedup/keploy/test-set-3/tests/test-143.yaml deleted file mode 100644 index 0ce40416..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-143.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-143 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.229867117+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.231523199+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-144.yaml b/java-dedup/keploy/test-set-3/tests/test-144.yaml deleted file mode 100644 index 5f9108cd..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-144.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-144 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.236869954+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.238593676+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-145.yaml b/java-dedup/keploy/test-set-3/tests/test-145.yaml deleted file mode 100644 index 651532af..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-145.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-145 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.245955463+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.247758363+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-146.yaml b/java-dedup/keploy/test-set-3/tests/test-146.yaml deleted file mode 100644 index eec54dbb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-146.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-146 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.253177719+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.25453102+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-147.yaml b/java-dedup/keploy/test-set-3/tests/test-147.yaml deleted file mode 100644 index b1e003e0..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-147.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-147 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.260508936+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.262868407+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-148.yaml b/java-dedup/keploy/test-set-3/tests/test-148.yaml deleted file mode 100644 index b7bf9351..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-148.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-148 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.268877233+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.270450854+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-149.yaml b/java-dedup/keploy/test-set-3/tests/test-149.yaml deleted file mode 100644 index 95cf474f..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-149.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-149 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.27636938+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.278152501+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-150.yaml b/java-dedup/keploy/test-set-3/tests/test-150.yaml deleted file mode 100644 index 20c91609..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-150.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-150 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.285229637+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.28760186+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-151.yaml b/java-dedup/keploy/test-set-3/tests/test-151.yaml deleted file mode 100644 index fd8a62f3..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-151.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-151 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.293959696+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.295704088+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-152.yaml b/java-dedup/keploy/test-set-3/tests/test-152.yaml deleted file mode 100644 index 5b32b1e6..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-152.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-152 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.301369182+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.303241435+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-153.yaml b/java-dedup/keploy/test-set-3/tests/test-153.yaml deleted file mode 100644 index 5f9107f3..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-153.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-153 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.310441961+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.312606212+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-154.yaml b/java-dedup/keploy/test-set-3/tests/test-154.yaml deleted file mode 100644 index 8ebfc51c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-154.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-154 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.318898448+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.32099156+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-155.yaml b/java-dedup/keploy/test-set-3/tests/test-155.yaml deleted file mode 100644 index f5cc1a91..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-155.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-155 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.328680898+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.331057999+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-156.yaml b/java-dedup/keploy/test-set-3/tests/test-156.yaml deleted file mode 100644 index a670183d..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-156.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-156 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.336874565+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.338561876+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-157.yaml b/java-dedup/keploy/test-set-3/tests/test-157.yaml deleted file mode 100644 index 103a0241..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-157.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-157 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.345696322+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.347995865+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-158.yaml b/java-dedup/keploy/test-set-3/tests/test-158.yaml deleted file mode 100644 index d34c44cb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-158.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-158 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.354519711+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.356253892+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-159.yaml b/java-dedup/keploy/test-set-3/tests/test-159.yaml deleted file mode 100644 index e567e718..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-159.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-159 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.363818099+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.366454271+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-160.yaml b/java-dedup/keploy/test-set-3/tests/test-160.yaml deleted file mode 100644 index 9b469c3f..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-160.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-160 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.372822407+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.374812409+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-161.yaml b/java-dedup/keploy/test-set-3/tests/test-161.yaml deleted file mode 100644 index 2022d487..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-161.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-161 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.381734146+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.384109738+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-162.yaml b/java-dedup/keploy/test-set-3/tests/test-162.yaml deleted file mode 100644 index 6be231b0..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-162.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-162 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.390634083+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.392579495+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-163.yaml b/java-dedup/keploy/test-set-3/tests/test-163.yaml deleted file mode 100644 index e81649da..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-163.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-163 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.39785375+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.399433171+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-164.yaml b/java-dedup/keploy/test-set-3/tests/test-164.yaml deleted file mode 100644 index 8f4ceae2..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-164.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-164 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.40812356+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.410157821+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-165.yaml b/java-dedup/keploy/test-set-3/tests/test-165.yaml deleted file mode 100644 index 9601d3a0..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-165.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-165 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.416638197+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.418126409+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-166.yaml b/java-dedup/keploy/test-set-3/tests/test-166.yaml deleted file mode 100644 index fc925cf7..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-166.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-166 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.423991374+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.426226316+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-167.yaml b/java-dedup/keploy/test-set-3/tests/test-167.yaml deleted file mode 100644 index c9ef5208..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-167.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-167 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.432614101+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.434534914+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-168.yaml b/java-dedup/keploy/test-set-3/tests/test-168.yaml deleted file mode 100644 index 14222d86..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-168.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-168 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.439893838+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.44134931+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-169.yaml b/java-dedup/keploy/test-set-3/tests/test-169.yaml deleted file mode 100644 index a3c081ce..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-169.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-169 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.447709555+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.449280077+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-170.yaml b/java-dedup/keploy/test-set-3/tests/test-170.yaml deleted file mode 100644 index 2a11004b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-170.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-170 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.455388453+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.456606183+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-171.yaml b/java-dedup/keploy/test-set-3/tests/test-171.yaml deleted file mode 100644 index b8fbde2c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-171.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-171 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.462457259+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.465345161+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-172.yaml b/java-dedup/keploy/test-set-3/tests/test-172.yaml deleted file mode 100644 index 22fe5117..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-172.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-172 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.472795477+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.47496743+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-173.yaml b/java-dedup/keploy/test-set-3/tests/test-173.yaml deleted file mode 100644 index 0eda48bb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-173.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-173 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.480731015+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.481911136+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-174.yaml b/java-dedup/keploy/test-set-3/tests/test-174.yaml deleted file mode 100644 index 1e5cb44d..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-174.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-174 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.488409632+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.490326434+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-175.yaml b/java-dedup/keploy/test-set-3/tests/test-175.yaml deleted file mode 100644 index 5e01ef29..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-175.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-175 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.49587885+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.497001619+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-176.yaml b/java-dedup/keploy/test-set-3/tests/test-176.yaml deleted file mode 100644 index 19964a63..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-176.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-176 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.501932595+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.503033665+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-177.yaml b/java-dedup/keploy/test-set-3/tests/test-177.yaml deleted file mode 100644 index b18e2459..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-177.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-177 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.509039651+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.510779602+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-178.yaml b/java-dedup/keploy/test-set-3/tests/test-178.yaml deleted file mode 100644 index f781ccf9..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-178.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-178 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.516568577+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.517951869+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-179.yaml b/java-dedup/keploy/test-set-3/tests/test-179.yaml deleted file mode 100644 index eb7ae2d7..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-179.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-179 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.523392584+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.525116945+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-180.yaml b/java-dedup/keploy/test-set-3/tests/test-180.yaml deleted file mode 100644 index 31e8425c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-180.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-180 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.530919761+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.532428571+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-181.yaml b/java-dedup/keploy/test-set-3/tests/test-181.yaml deleted file mode 100644 index 78a29343..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-181.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-181 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.537871867+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.539228338+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-182.yaml b/java-dedup/keploy/test-set-3/tests/test-182.yaml deleted file mode 100644 index b7b5b102..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-182.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-182 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.545789264+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.547310886+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-183.yaml b/java-dedup/keploy/test-set-3/tests/test-183.yaml deleted file mode 100644 index 1f393bce..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-183.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-183 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.55266288+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"status":"ok"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.554193992+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-184.yaml b/java-dedup/keploy/test-set-3/tests/test-184.yaml deleted file mode 100644 index 1525c03f..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-184.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-184 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.559100546+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.560707938+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-185.yaml b/java-dedup/keploy/test-set-3/tests/test-185.yaml deleted file mode 100644 index 0ee20588..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-185.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-185 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.567144723+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.569336256+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-186.yaml b/java-dedup/keploy/test-set-3/tests/test-186.yaml deleted file mode 100644 index 6cc5b4aa..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-186.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-186 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.575890081+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.577784813+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-187.yaml b/java-dedup/keploy/test-set-3/tests/test-187.yaml deleted file mode 100644 index 34c2af14..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-187.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-187 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.585219869+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.587064362+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-188.yaml b/java-dedup/keploy/test-set-3/tests/test-188.yaml deleted file mode 100644 index a89f5285..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-188.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-188 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.593566338+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.59558442+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-189.yaml b/java-dedup/keploy/test-set-3/tests/test-189.yaml deleted file mode 100644 index ca61dc97..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-189.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-189 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.602747206+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.604675287+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-190.yaml b/java-dedup/keploy/test-set-3/tests/test-190.yaml deleted file mode 100644 index 7d33d8bf..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-190.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-190 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.609941602+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.611824934+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-191.yaml b/java-dedup/keploy/test-set-3/tests/test-191.yaml deleted file mode 100644 index f5385168..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-191.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-191 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.617404719+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.619669071+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-192.yaml b/java-dedup/keploy/test-set-3/tests/test-192.yaml deleted file mode 100644 index 3106128c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-192.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-192 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.625891917+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.627747098+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-193.yaml b/java-dedup/keploy/test-set-3/tests/test-193.yaml deleted file mode 100644 index 371d2a60..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-193.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-193 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.634115904+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.636194737+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-194.yaml b/java-dedup/keploy/test-set-3/tests/test-194.yaml deleted file mode 100644 index 4360e812..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-194.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-194 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.643037392+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.645125454+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-195.yaml b/java-dedup/keploy/test-set-3/tests/test-195.yaml deleted file mode 100644 index 59a9ea4a..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-195.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-195 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.651706751+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.653267672+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-196.yaml b/java-dedup/keploy/test-set-3/tests/test-196.yaml deleted file mode 100644 index ce97d474..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-196.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-196 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.660212007+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.661921359+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-197.yaml b/java-dedup/keploy/test-set-3/tests/test-197.yaml deleted file mode 100644 index 42402af5..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-197.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-197 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.668523825+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.670345408+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-198.yaml b/java-dedup/keploy/test-set-3/tests/test-198.yaml deleted file mode 100644 index a898ab37..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-198.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-198 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.676221422+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.678389685+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-199.yaml b/java-dedup/keploy/test-set-3/tests/test-199.yaml deleted file mode 100644 index 1891d2c0..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-199.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-199 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.684287409+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.686301542+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-200.yaml b/java-dedup/keploy/test-set-3/tests/test-200.yaml deleted file mode 100644 index b7ab084e..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-200.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-200 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.692035137+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.693850478+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-201.yaml b/java-dedup/keploy/test-set-3/tests/test-201.yaml deleted file mode 100644 index 7f37e384..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-201.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-201 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.701768866+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.703386507+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-202.yaml b/java-dedup/keploy/test-set-3/tests/test-202.yaml deleted file mode 100644 index ae009cae..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-202.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-202 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/noone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.708773962+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"No one"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.710248923+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-203.yaml b/java-dedup/keploy/test-set-3/tests/test-203.yaml deleted file mode 100644 index 3ff39ed3..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-203.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-203 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.71771605+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.719330021+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-204.yaml b/java-dedup/keploy/test-set-3/tests/test-204.yaml deleted file mode 100644 index ffc0c5ae..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-204.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-204 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somewhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.725931558+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somewhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.727786308+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-205.yaml b/java-dedup/keploy/test-set-3/tests/test-205.yaml deleted file mode 100644 index 63a0feae..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-205.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-205 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.735054615+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.736903717+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-206.yaml b/java-dedup/keploy/test-set-3/tests/test-206.yaml deleted file mode 100644 index 4741caec..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-206.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-206 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.743067533+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.744664214+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-207.yaml b/java-dedup/keploy/test-set-3/tests/test-207.yaml deleted file mode 100644 index 4def0110..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-207.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-207 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.751664841+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.753724473+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-208.yaml b/java-dedup/keploy/test-set-3/tests/test-208.yaml deleted file mode 100644 index c71be5f3..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-208.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-208 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.760709799+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.762444501+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-209.yaml b/java-dedup/keploy/test-set-3/tests/test-209.yaml deleted file mode 100644 index d747f17f..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-209.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-209 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/logs - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.769674077+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"log_level":"INFO","entries":1024}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.77149738+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-210.yaml b/java-dedup/keploy/test-set-3/tests/test-210.yaml deleted file mode 100644 index 4505e55b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-210.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-210 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.778562536+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.780198867+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-211.yaml b/java-dedup/keploy/test-set-3/tests/test-211.yaml deleted file mode 100644 index a7f25da8..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-211.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-211 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.787209653+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Anything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.789186155+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-212.yaml b/java-dedup/keploy/test-set-3/tests/test-212.yaml deleted file mode 100644 index 78d27d69..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-212.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-212 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.79545527+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.797062112+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-213.yaml b/java-dedup/keploy/test-set-3/tests/test-213.yaml deleted file mode 100644 index 48f54cc3..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-213.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-213 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.802703707+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.80495276+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-214.yaml b/java-dedup/keploy/test-set-3/tests/test-214.yaml deleted file mode 100644 index 2d827b2b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-214.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-214 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.811118664+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.812885137+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-215.yaml b/java-dedup/keploy/test-set-3/tests/test-215.yaml deleted file mode 100644 index 8938143b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-215.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-215 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.819201912+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.821166153+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-216.yaml b/java-dedup/keploy/test-set-3/tests/test-216.yaml deleted file mode 100644 index 331d1fbe..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-216.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-216 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.827055959+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.82820774+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-217.yaml b/java-dedup/keploy/test-set-3/tests/test-217.yaml deleted file mode 100644 index cfbb7168..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-217.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-217 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.834111946+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.835333997+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-218.yaml b/java-dedup/keploy/test-set-3/tests/test-218.yaml deleted file mode 100644 index 4c548462..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-218.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-218 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.842189502+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.843434034+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-219.yaml b/java-dedup/keploy/test-set-3/tests/test-219.yaml deleted file mode 100644 index bf4130ac..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-219.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-219 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/ping - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.849133579+05:30 - resp: - status_code: 200 - header: - Content-Length: "4" - Content-Type: text/plain;charset=UTF-8 - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: pong - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.85041426+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/ping \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-220.yaml b/java-dedup/keploy/test-set-3/tests/test-220.yaml deleted file mode 100644 index 1a7a7896..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-220.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-220 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everyone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.856883146+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Everyone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.858467658+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-221.yaml b/java-dedup/keploy/test-set-3/tests/test-221.yaml deleted file mode 100644 index d37ea348..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-221.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-221 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/everything - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.865449784+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Everything"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.867178146+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-222.yaml b/java-dedup/keploy/test-set-3/tests/test-222.yaml deleted file mode 100644 index 7913e167..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-222.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-222 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.874279082+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.876465534+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-223.yaml b/java-dedup/keploy/test-set-3/tests/test-223.yaml deleted file mode 100644 index 96538384..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-223.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-223 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/status - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.88294336+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"service":"user-api","status":"active"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.884837752+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-224.yaml b/java-dedup/keploy/test-set-3/tests/test-224.yaml deleted file mode 100644 index ffa39c4d..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-224.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-224 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.891775238+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":1,"users":["alpha","beta"]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.89439842+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-225.yaml b/java-dedup/keploy/test-set-3/tests/test-225.yaml deleted file mode 100644 index 05fe417b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-225.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-225 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.899822165+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.901379617+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-226.yaml b/java-dedup/keploy/test-set-3/tests/test-226.yaml deleted file mode 100644 index 8f78d5cb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-226.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-226 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.907090321+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.908910043+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-227.yaml b/java-dedup/keploy/test-set-3/tests/test-227.yaml deleted file mode 100644 index 5825e4eb..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-227.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-227 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.914987289+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.9165284+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-228.yaml b/java-dedup/keploy/test-set-3/tests/test-228.yaml deleted file mode 100644 index 55e1321b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-228.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-228 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/info - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.921645054+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":"1.0.2","author":"Keploy"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.923323646+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-229.yaml b/java-dedup/keploy/test-set-3/tests/test-229.yaml deleted file mode 100644 index 463b80f8..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-229.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-229 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nothing - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.931243244+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Nothing"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.933352615+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-230.yaml b/java-dedup/keploy/test-set-3/tests/test-230.yaml deleted file mode 100644 index 863147c2..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-230.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-230 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.941219313+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.943549015+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-231.yaml b/java-dedup/keploy/test-set-3/tests/test-231.yaml deleted file mode 100644 index c69c867f..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-231.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-231 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/system/metrics - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.950229761+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"cpu_usage":"15%","memory":"256MB"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.951795792+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/system/metrics \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-232.yaml b/java-dedup/keploy/test-set-3/tests/test-232.yaml deleted file mode 100644 index 280bf67f..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-232.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-232 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.957227617+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.959256489+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-233.yaml b/java-dedup/keploy/test-set-3/tests/test-233.yaml deleted file mode 100644 index da07469c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-233.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-233 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/search?q=test&limit=5 - url_params: - limit: "5" - q: test - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.966864226+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"searching_for":"test","limit":"5"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.969051108+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/search?q=test&limit=5 \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-234.yaml b/java-dedup/keploy/test-set-3/tests/test-234.yaml deleted file mode 100644 index 6bcac7ec..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-234.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-234 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.975355973+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.977106465+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-235.yaml b/java-dedup/keploy/test-set-3/tests/test-235.yaml deleted file mode 100644 index 4429b4d6..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-235.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-235 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.985032972+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.986996155+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-236.yaml b/java-dedup/keploy/test-set-3/tests/test-236.yaml deleted file mode 100644 index 960e9312..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-236.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-236 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.994815532+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:46.997617193+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015306 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-237.yaml b/java-dedup/keploy/test-set-3/tests/test-237.yaml deleted file mode 100644 index 74c586b7..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-237.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-237 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.00508152+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.006958561+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-238.yaml b/java-dedup/keploy/test-set-3/tests/test-238.yaml deleted file mode 100644 index 6c4af566..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-238.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-238 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.012882446+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.014250747+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-239.yaml b/java-dedup/keploy/test-set-3/tests/test-239.yaml deleted file mode 100644 index 6281172a..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-239.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-239 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/products - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.022144862+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.023897853+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-240.yaml b/java-dedup/keploy/test-set-3/tests/test-240.yaml deleted file mode 100644 index 5651ec07..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-240.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-240 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.03193334+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.033758331+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-241.yaml b/java-dedup/keploy/test-set-3/tests/test-241.yaml deleted file mode 100644 index 5b54a501..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-241.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-241 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/anybody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.040020746+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Anybody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.042195728+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-242.yaml b/java-dedup/keploy/test-set-3/tests/test-242.yaml deleted file mode 100644 index d107f25e..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-242.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-242 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.047831582+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":1,"data":"legacy data"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.049625193+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-243.yaml b/java-dedup/keploy/test-set-3/tests/test-243.yaml deleted file mode 100644 index 93e98cde..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-243.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-243 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.054996228+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.056707579+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-244.yaml b/java-dedup/keploy/test-set-3/tests/test-244.yaml deleted file mode 100644 index 7209b52c..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-244.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-244 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/someone - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.063243264+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Someone"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.064989515+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-245.yaml b/java-dedup/keploy/test-set-3/tests/test-245.yaml deleted file mode 100644 index 7cd8864b..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-245.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-245 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.07119294+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"version":2,"payload":"new data format"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.07252706+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-246.yaml b/java-dedup/keploy/test-set-3/tests/test-246.yaml deleted file mode 100644 index 11d128e8..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-246.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-246 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/healthz - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.078428615+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"healthy":true}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.079835446+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/healthz \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-247.yaml b/java-dedup/keploy/test-set-3/tests/test-247.yaml deleted file mode 100644 index b77642db..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-247.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-247 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/items - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.08496019+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.08630803+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-248.yaml b/java-dedup/keploy/test-set-3/tests/test-248.yaml deleted file mode 100644 index 6d465e10..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-248.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-248 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/proxy - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.091681685+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"forwarding_to":"downstream-service"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.093164716+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-249.yaml b/java-dedup/keploy/test-set-3/tests/test-249.yaml deleted file mode 100644 index f15395f7..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-249.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-249 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/somebody - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.09880925+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Somebody"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.099913041+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-250.yaml b/java-dedup/keploy/test-set-3/tests/test-250.yaml deleted file mode 100644 index 4175906a..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-250.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-250 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/nowhere - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.104936724+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"message":"Nowhere"}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.106411115+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/nowhere \ - --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-251.yaml b/java-dedup/keploy/test-set-3/tests/test-251.yaml deleted file mode 100644 index 6963a631..00000000 --- a/java-dedup/keploy/test-set-3/tests/test-251.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Keploy (3-dev) -version: api.keploy.io/v1beta1 -kind: Http -name: test-251 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile - header: - Accept: '*/*' - Host: 127.0.0.1:8080 - User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:47.11157457+05:30 - resp: - status_code: 200 - header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:46 GMT - body: '{"user_id":"123","profile":"..."}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2026-04-24T12:51:47.113190581+05:30 - objects: [] - assertions: - noise: - header.Date: [] - created: 1777015307 - app_port: 8080 -curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Host: 127.0.0.1:8080' \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ diff --git a/java-dedup/run_random_1000.sh b/java-dedup/run_random_1000.sh index 54896624..65e646ea 100755 --- a/java-dedup/run_random_1000.sh +++ b/java-dedup/run_random_1000.sh @@ -2,7 +2,7 @@ set -Eeuo pipefail BASE_URL="${BASE_URL:-http://localhost:8080}" -TOTAL_REQUESTS="${TOTAL_REQUESTS:-1000}" +TOTAL_REQUESTS="${TOTAL_REQUESTS:-400}" endpoints=( "/" From 5eb2185da69bc105711532223d3932cf0df7e27c Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 12:42:35 +0530 Subject: [PATCH 4/8] test: include dropwizard docker build artifacts Signed-off-by: Asish Kumar --- dropwizard-dedup/.dockerignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dropwizard-dedup/.dockerignore b/dropwizard-dedup/.dockerignore index 2420f97d..5cc92828 100644 --- a/dropwizard-dedup/.dockerignore +++ b/dropwizard-dedup/.dockerignore @@ -1,4 +1,11 @@ -target +target/* +!target/dropwizard-dedup-0.0.1-SNAPSHOT.jar +!target/keploy-sdk.jar +!target/jacocoagent.jar +!target/classes/ +!target/classes/** +!target/dependency/ +!target/dependency/** keploy/reports dedupData.yaml duplicates.yaml From 3fecec0b248cf8f802944519a413af36d4d31688 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 13:01:56 +0530 Subject: [PATCH 5/8] test: align dropwizard distroless runtime user Signed-off-by: Asish Kumar --- dropwizard-dedup/Dockerfile.distroless | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/dropwizard-dedup/Dockerfile.distroless b/dropwizard-dedup/Dockerfile.distroless index d999f71a..73bdf398 100644 --- a/dropwizard-dedup/Dockerfile.distroless +++ b/dropwizard-dedup/Dockerfile.distroless @@ -1,16 +1,11 @@ -FROM eclipse-temurin:17-jre AS base - FROM gcr.io/distroless/java17-debian12:nonroot WORKDIR /app -COPY --from=base /opt/java/openjdk /opt/java/openjdk -COPY --chown=nonroot:nonroot target/dropwizard-dedup-0.0.1-SNAPSHOT.jar /app/app.jar -COPY --chown=nonroot:nonroot target/keploy-sdk.jar /app/keploy-sdk.jar -COPY --chown=nonroot:nonroot target/jacocoagent.jar /app/jacocoagent.jar -COPY --chown=nonroot:nonroot config.yml /app/config.yml - -ENV JAVA_HOME=/opt/java/openjdk -ENV PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin +COPY --chown=10001:10001 target/dropwizard-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar +COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar +COPY --chown=10001:10001 config.yml /app/config.yml EXPOSE 8080 +USER 10001:10001 ENTRYPOINT ["java", "-javaagent:/app/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar", "server", "/app/config.yml"] From ee711dc0489218211533d1a955a1360ad778d32d Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 15:21:52 +0530 Subject: [PATCH 6/8] chore: use released java dedup agent --- dropwizard-dedup/Dockerfile | 2 +- dropwizard-dedup/Dockerfile.distroless | 2 +- dropwizard-dedup/README.md | 4 ++-- dropwizard-dedup/pom.xml | 3 ++- java-dedup/Dockerfile | 2 +- java-dedup/Dockerfile.distroless | 2 +- java-dedup/README.md | 6 +++--- java-dedup/pom.xml | 3 ++- 8 files changed, 13 insertions(+), 11 deletions(-) diff --git a/dropwizard-dedup/Dockerfile b/dropwizard-dedup/Dockerfile index 16994ad4..f6ee75da 100644 --- a/dropwizard-dedup/Dockerfile +++ b/dropwizard-dedup/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app RUN groupadd --gid 10001 appuser \ && useradd --uid 10001 --gid 10001 --home-dir /home/appuser --create-home --shell /usr/sbin/nologin appuser -COPY --chown=10001:10001 target/dropwizard-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/dropwizard-dedup.jar /app/app.jar COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar COPY --chown=10001:10001 config.yml /app/config.yml diff --git a/dropwizard-dedup/Dockerfile.distroless b/dropwizard-dedup/Dockerfile.distroless index 73bdf398..d65aa067 100644 --- a/dropwizard-dedup/Dockerfile.distroless +++ b/dropwizard-dedup/Dockerfile.distroless @@ -1,7 +1,7 @@ FROM gcr.io/distroless/java17-debian12:nonroot WORKDIR /app -COPY --chown=10001:10001 target/dropwizard-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/dropwizard-dedup.jar /app/app.jar COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar COPY --chown=10001:10001 config.yml /app/config.yml diff --git a/dropwizard-dedup/README.md b/dropwizard-dedup/README.md index 4e1a1d36..fc09f59c 100644 --- a/dropwizard-dedup/README.md +++ b/dropwizard-dedup/README.md @@ -13,7 +13,7 @@ mvn -B -DskipTests clean package Build with the runtime Java agent copied into `target/keploy-sdk.jar`: ```bash -mvn -B -DskipTests -Dkeploy.agent.version=2.0.1 clean package +mvn -B -DskipTests -Dkeploy.agent.version=2.0.0 clean package ``` Run with the agent: @@ -22,5 +22,5 @@ Run with the agent: java \ -javaagent:target/keploy-sdk.jar \ -javaagent:target/jacocoagent.jar=destfile=/tmp/jacoco.exec \ - -jar target/dropwizard-dedup-0.0.1-SNAPSHOT.jar server config.yml + -jar target/dropwizard-dedup.jar server config.yml ``` diff --git a/dropwizard-dedup/pom.xml b/dropwizard-dedup/pom.xml index d8100ebc..c799b847 100644 --- a/dropwizard-dedup/pom.xml +++ b/dropwizard-dedup/pom.xml @@ -6,7 +6,7 @@ io.keploy.samples dropwizard-dedup - 0.0.1-SNAPSHOT + 1.0.0 dropwizard-dedup Keploy Java dynamic deduplication Dropwizard sample @@ -38,6 +38,7 @@ + dropwizard-dedup org.apache.maven.plugins diff --git a/java-dedup/Dockerfile b/java-dedup/Dockerfile index 947337c5..3691d048 100644 --- a/java-dedup/Dockerfile +++ b/java-dedup/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app RUN groupadd --gid 10001 appuser \ && useradd --uid 10001 --gid 10001 --home-dir /home/appuser --create-home --shell /usr/sbin/nologin appuser -COPY --chown=10001:10001 target/java-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/java-dedup.jar /app/app.jar COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar EXPOSE 8080 diff --git a/java-dedup/Dockerfile.distroless b/java-dedup/Dockerfile.distroless index 31e60eb8..3427aea3 100644 --- a/java-dedup/Dockerfile.distroless +++ b/java-dedup/Dockerfile.distroless @@ -2,7 +2,7 @@ FROM gcr.io/distroless/java17-debian12:nonroot WORKDIR /app -COPY --chown=10001:10001 target/java-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY --chown=10001:10001 target/java-dedup.jar /app/app.jar COPY --chown=10001:10001 target/keploy-sdk.jar /app/keploy-sdk.jar COPY --chown=10001:10001 target/jacocoagent.jar /app/jacocoagent.jar diff --git a/java-dedup/README.md b/java-dedup/README.md index f8b05670..e7f471a9 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -11,16 +11,16 @@ The SDK reads JaCoCo coverage in-process via `org.jacoco.agent.rt.RT.getAgent(). ## Setup ```bash -mvn -B -DskipTests -Dkeploy.agent.version=2.0.1 clean package +mvn -B -DskipTests -Dkeploy.agent.version=2.0.0 clean package ``` -This produces `target/java-dedup-0.0.1-SNAPSHOT.jar`, copies `target/keploy-sdk.jar`, and copies `target/jacocoagent.jar` next to it. Use the released Keploy Java SDK version that includes Java-agent support. +This builds the runnable application jar, copies `target/keploy-sdk.jar`, and copies `target/jacocoagent.jar` next to it. ## Run dedup natively ```bash keploy test \ - -c "java -javaagent:target/keploy-sdk.jar -javaagent:target/jacocoagent.jar -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ + -c "java -javaagent:target/keploy-sdk.jar -javaagent:target/jacocoagent.jar -jar target/java-dedup.jar" \ --dedup --skip-app-restart --language java --delay 1 \ --health-url "http://127.0.0.1:8080/healthz" \ --health-poll-timeout 30s \ diff --git a/java-dedup/pom.xml b/java-dedup/pom.xml index 34b6b33f..c98da58b 100644 --- a/java-dedup/pom.xml +++ b/java-dedup/pom.xml @@ -13,7 +13,7 @@ io.keploy.samples java-dedup - 0.0.1-SNAPSHOT + 1.0.0 java-dedup Keploy Java dynamic deduplication sample @@ -30,6 +30,7 @@ + java-dedup org.springframework.boot From d27ff83336fff1946030ad44cd30776d0d07de5e Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 16:28:47 +0530 Subject: [PATCH 7/8] docs: use Java dedup agent 2.0.2 --- dropwizard-dedup/README.md | 2 +- java-dedup/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dropwizard-dedup/README.md b/dropwizard-dedup/README.md index fc09f59c..24fec41e 100644 --- a/dropwizard-dedup/README.md +++ b/dropwizard-dedup/README.md @@ -13,7 +13,7 @@ mvn -B -DskipTests clean package Build with the runtime Java agent copied into `target/keploy-sdk.jar`: ```bash -mvn -B -DskipTests -Dkeploy.agent.version=2.0.0 clean package +mvn -B -DskipTests -Dkeploy.agent.version=2.0.2 clean package ``` Run with the agent: diff --git a/java-dedup/README.md b/java-dedup/README.md index e7f471a9..399aec76 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -11,7 +11,7 @@ The SDK reads JaCoCo coverage in-process via `org.jacoco.agent.rt.RT.getAgent(). ## Setup ```bash -mvn -B -DskipTests -Dkeploy.agent.version=2.0.0 clean package +mvn -B -DskipTests -Dkeploy.agent.version=2.0.2 clean package ``` This builds the runnable application jar, copies `target/keploy-sdk.jar`, and copies `target/jacocoagent.jar` next to it. From 905945d533b152a14106c393a2db3a65bf2dc83b Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 30 Apr 2026 18:14:25 +0530 Subject: [PATCH 8/8] ci: remove java dedup sample workflows Signed-off-by: Asish Kumar --- .github/workflows/dropwizard-dedup.yml | 103 ------------------------- .github/workflows/java-dedup.yml | 53 ------------- 2 files changed, 156 deletions(-) delete mode 100644 .github/workflows/dropwizard-dedup.yml delete mode 100644 .github/workflows/java-dedup.yml diff --git a/.github/workflows/dropwizard-dedup.yml b/.github/workflows/dropwizard-dedup.yml deleted file mode 100644 index 2d1c1cb4..00000000 --- a/.github/workflows/dropwizard-dedup.yml +++ /dev/null @@ -1,103 +0,0 @@ -name: Dropwizard Dedup Sample - -on: - pull_request: - branches: [main] - push: - branches: [main] - -jobs: - build: - name: JDK ${{ matrix.java-version }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - java-version: ["8", "17", "21"] - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up JDK ${{ matrix.java-version }} - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: ${{ matrix.java-version }} - cache: maven - - - name: Verify checked-in replay fixtures - working-directory: dropwizard-dedup - run: | - set -euo pipefail - fixture_count="$(find keploy -path '*/tests/test-*.yaml' -size +100c | wc -l | tr -d ' ')" - tracked_count="$(git ls-files 'keploy/test-set-*/tests/test-*.yaml' | wc -l | tr -d ' ')" - test "${fixture_count}" = "16" - test "${tracked_count}" = "16" - - - name: Build dropwizard-dedup without Keploy compile dependency - working-directory: dropwizard-dedup - run: mvn -B -DskipTests clean package - - - name: Verify Keploy is not a compile-time dependency - working-directory: dropwizard-dedup - run: | - set -euo pipefail - mvn -B dependency:tree -Dincludes=io.keploy:keploy-sdk -DoutputFile=target/keploy-dependency-tree.txt - if grep -q "io.keploy:keploy-sdk" target/keploy-dependency-tree.txt; then - cat target/keploy-dependency-tree.txt - exit 1 - fi - if grep -R "io.keploy\\.dedup\\|io.keploy\\.servlet\\|KeployDedupAgent\\|KeployMiddleware" src/main/java; then - exit 1 - fi - - - name: Smoke Dropwizard runtime with JaCoCo - working-directory: dropwizard-dedup - run: | - set -euo pipefail - smoke_http_port=$((19080 + ${{ matrix.java-version }})) - smoke_admin_port=$((20080 + ${{ matrix.java-version }})) - - DW_HTTP_PORT="${smoke_http_port}" DW_ADMIN_PORT="${smoke_admin_port}" \ - java -javaagent:target/jacocoagent.jar=destfile=target/smoke-jacoco.exec \ - -jar target/dropwizard-dedup-0.0.1-SNAPSHOT.jar server config.yml \ - > target/dropwizard-smoke.log 2>&1 & - app_pid=$! - - cleanup() { - kill "${app_pid}" >/dev/null 2>&1 || true - wait "${app_pid}" >/dev/null 2>&1 || true - } - trap cleanup EXIT - - ready=0 - for i in $(seq 1 60); do - if curl -fsS "http://127.0.0.1:${smoke_http_port}/healthz" >/dev/null; then - ready=1 - break - fi - if ! kill -0 "${app_pid}" >/dev/null 2>&1; then - cat target/dropwizard-smoke.log - exit 1 - fi - sleep 1 - done - if [ "${ready}" != "1" ]; then - cat target/dropwizard-smoke.log - exit 1 - fi - - curl -fsS "http://127.0.0.1:${smoke_http_port}/catalog?category=electronics&limit=1" | grep -q '"source":"warehouse-b"' - curl -fsS -H "X-Tenant: flipkart" -H "X-Request-Id: smoke-1" \ - "http://127.0.0.1:${smoke_http_port}/headers" | grep -q '"tenant":"flipkart"' - curl -fsS -X POST "http://127.0.0.1:${smoke_http_port}/orders" \ - -H "Content-Type: application/json" \ - -d '{"customer":"smoke","sku":"BK-1","quantity":2,"priority":true}' | grep -q '"route":"air"' - curl -fsS "http://127.0.0.1:${smoke_http_port}/platform/content/html" | grep -q '

dropwizard

' - test "$(curl -sS -o /tmp/dropwizard-missing.json -w '%{http_code}' "http://127.0.0.1:${smoke_http_port}/catalog/MISSING")" = "404" - grep -q '"error":"not_found"' /tmp/dropwizard-missing.json - - cleanup - trap - EXIT - test -s target/smoke-jacoco.exec diff --git a/.github/workflows/java-dedup.yml b/.github/workflows/java-dedup.yml deleted file mode 100644 index 071d35eb..00000000 --- a/.github/workflows/java-dedup.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: Java Dedup Sample - -on: - pull_request: - branches: [main] - push: - branches: [main] - -jobs: - build: - name: JDK ${{ matrix.java-version }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - java-version: ["8", "17", "21"] - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up JDK ${{ matrix.java-version }} - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: ${{ matrix.java-version }} - cache: maven - - - name: Verify checked-in replay fixtures - working-directory: java-dedup - run: | - set -euo pipefail - fixture_count="$(find keploy -path '*/tests/test-*.yaml' -size +100c | wc -l | tr -d ' ')" - tracked_count="$(git ls-files 'keploy/test-set-*/tests/test-*.yaml' | wc -l | tr -d ' ')" - test "${fixture_count}" = "400" - test "${tracked_count}" = "400" - - - name: Build java-dedup without Keploy compile dependency - working-directory: java-dedup - run: mvn -B -DskipTests clean package - - - name: Verify Keploy is not a compile-time dependency - working-directory: java-dedup - run: | - set -euo pipefail - mvn -B dependency:tree -Dincludes=io.keploy:keploy-sdk -DoutputFile=target/keploy-dependency-tree.txt - if grep -q "io.keploy:keploy-sdk" target/keploy-dependency-tree.txt; then - cat target/keploy-dependency-tree.txt - exit 1 - fi - if grep -R "io.keploy\\.dedup\\|io.keploy\\.servlet\\|KeployDedupAgent\\|KeployMiddleware" src/main/java; then - exit 1 - fi