diff --git a/README.md b/README.md index 4be947f3..d9ec6564 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ 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. +9. [Simple Java Dynamic Deduplication](https://github.com/keploy/samples-java/tree/main/simple-java-dedup) - A minimal plain-Java HTTP server used to smoke-test Java dynamic dedup on Java 8 and Java 17 in native and Docker launch modes. ## Community Support ❤️ diff --git a/dropwizard-dedup/.dockerignore b/dropwizard-dedup/.dockerignore new file mode 100644 index 00000000..a8ab0690 --- /dev/null +++ b/dropwizard-dedup/.dockerignore @@ -0,0 +1,13 @@ +target/* +!target/dropwizard-dedup.jar +!target/keploy-sdk.jar +!target/jacocoagent.jar +!target/classes/ +!target/classes/** +!target/dependency/ +!target/dependency/** +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..ff522a3c --- /dev/null +++ b/dropwizard-dedup/Dockerfile @@ -0,0 +1,17 @@ +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.jar /app/app.jar +COPY --chown=10001:10001 target/classes /app/classes +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", "-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..12878bc8 --- /dev/null +++ b/dropwizard-dedup/Dockerfile.distroless @@ -0,0 +1,14 @@ +FROM gcr.io/distroless/java17-debian12:nonroot +WORKDIR /app + +COPY --chown=10001:10001 target/dropwizard-dedup.jar /app/app.jar +COPY --chown=10001:10001 target/classes /app/classes +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", "-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..fb2b3faa --- /dev/null +++ b/dropwizard-dedup/README.md @@ -0,0 +1,26 @@ +# 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. + +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 +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.6 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.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/java-dedup/keploy/test-set-0/tests/test-134.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-1.yaml similarity index 66% rename from java-dedup/keploy/test-set-0/tests/test-134.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-1.yaml index 91782bc2..7d02fab0 100644 --- a/java-dedup/keploy/test-set-0/tests/test-134.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-1.yaml @@ -1,7 +1,7 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-134 +name: test-1 spec: metadata: {} req: @@ -10,30 +10,34 @@ spec: proto_minor: 1 url: http://127.0.0.1:8080/healthz header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.682031005+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT + Vary: Accept-Encoding + Content-Length: 16 body: '{"healthy":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.684674594+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..bc4885d4 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-10.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-10 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=books&limit=2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 257 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=books&limit=2' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-100.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-100.yaml new file mode 100644 index 00000000..251fe49c --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-100.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-100 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/headers + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + X-Tenant: globex + X-Request-Id: req-001 + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 41 + body: '{"tenant":"globex","requestId":"req-001"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: globex' \ + --header 'X-Request-Id: req-001' diff --git a/java-dedup/keploy/test-set-2/tests/test-186.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-101.yaml similarity index 55% rename from java-dedup/keploy/test-set-2/tests/test-186.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-101.yaml index e0bccc3f..78fee226 100644 --- a/java-dedup/keploy/test-set-2/tests/test-186.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-101.yaml @@ -1,39 +1,47 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-186 +name: test-101 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/info + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.189023613+05:30 + Accept: '*/*' + X-Tenant: globex + X-Request-Id: req-002 + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT - body: '{"version":"1.0.2","author":"Keploy"}' + Vary: Accept-Encoding + Content-Length: 41 + body: '{"tenant":"globex","requestId":"req-002"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:50:42.19280883+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015242 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/info \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ + --header 'X-Tenant: globex' \ + --header 'X-Request-Id: req-002' diff --git a/java-dedup/keploy/test-set-1/tests/test-102.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-102.yaml similarity index 51% rename from java-dedup/keploy/test-set-1/tests/test-102.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-102.yaml index f0d0da8a..7e3a0656 100644 --- a/java-dedup/keploy/test-set-1/tests/test-102.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-102.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/items + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.65815846+05:30 + Accept: '*/*' + X-Tenant: globex + X-Request-Id: req-abc + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' 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}]' + Vary: Accept-Encoding + Content-Length: 41 + body: '{"tenant":"globex","requestId":"req-abc"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.660478006+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: globex' \ + --header 'X-Request-Id: req-abc' diff --git a/java-dedup/keploy/test-set-1/tests/test-103.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-103.yaml similarity index 51% rename from java-dedup/keploy/test-set-1/tests/test-103.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-103.yaml index 818e430f..eb10a72a 100644 --- a/java-dedup/keploy/test-set-1/tests/test-103.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-103.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.667441657+05:30 + Accept: '*/*' + X-Tenant: globex + X-Request-Id: req-xyz + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + Vary: Accept-Encoding + Content-Length: 41 + body: '{"tenant":"globex","requestId":"req-xyz"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.669943557+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: globex' \ + --header 'X-Request-Id: req-xyz' diff --git a/java-dedup/keploy/test-set-1/tests/test-104.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-104.yaml similarity index 51% rename from java-dedup/keploy/test-set-1/tests/test-104.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-104.yaml index 501b71fd..ff2c040b 100644 --- a/java-dedup/keploy/test-set-1/tests/test-104.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-104.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/anybody + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.677357217+05:30 + Accept: '*/*' + X-Tenant: globex + X-Request-Id: missing + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anybody"}' + Vary: Accept-Encoding + Content-Length: 41 + body: '{"tenant":"globex","requestId":"missing"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.679674984+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: globex' \ + --header 'X-Request-Id: missing' diff --git a/java-dedup/keploy/test-set-1/tests/test-105.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-105.yaml similarity index 51% rename from java-dedup/keploy/test-set-1/tests/test-105.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-105.yaml index 81011f57..98b20c05 100644 --- a/java-dedup/keploy/test-set-1/tests/test-105.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-105.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/products + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.686228564+05:30 + Accept: '*/*' + X-Tenant: umbrella + X-Request-Id: req-001 + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' 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"}]' + Vary: Accept-Encoding + Content-Length: 43 + body: '{"tenant":"umbrella","requestId":"req-001"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.688218735+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/products \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: umbrella' \ + --header 'X-Request-Id: req-001' diff --git a/java-dedup/keploy/test-set-2/tests/test-106.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-106.yaml similarity index 51% rename from java-dedup/keploy/test-set-2/tests/test-106.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-106.yaml index fcec0594..d091d98f 100644 --- a/java-dedup/keploy/test-set-2/tests/test-106.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-106.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/anybody + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:41.288911936+05:30 + Accept: '*/*' + X-Tenant: umbrella + X-Request-Id: req-002 + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:41 GMT - body: '{"message":"Anybody"}' + Vary: Accept-Encoding + Content-Length: 43 + body: '{"tenant":"umbrella","requestId":"req-002"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:50:41.291952424+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015241 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/anybody \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ + --header 'X-Tenant: umbrella' \ + --header 'X-Request-Id: req-002' diff --git a/java-dedup/keploy/test-set-0/tests/test-107.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-107.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-107.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-107.yaml index 1fc6d8b7..ece7fe22 100644 --- a/java-dedup/keploy/test-set-0/tests/test-107.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-107.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/anybody + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.374835609+05:30 + Accept: '*/*' + X-Tenant: umbrella + X-Request-Id: req-abc + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Anybody"}' + Vary: Accept-Encoding + Content-Length: 43 + body: '{"tenant":"umbrella","requestId":"req-abc"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.377182542+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/anybody \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ + --header 'X-Tenant: umbrella' \ + --header 'X-Request-Id: req-abc' diff --git a/java-dedup/keploy/test-set-0/tests/test-108.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-108.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-108.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-108.yaml index df110583..b1d3fc02 100644 --- a/java-dedup/keploy/test-set-0/tests/test-108.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-108.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everything + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.385304792+05:30 + Accept: '*/*' + X-Tenant: umbrella + X-Request-Id: req-xyz + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' + Vary: Accept-Encoding + Content-Length: 43 + body: '{"tenant":"umbrella","requestId":"req-xyz"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.388019649+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everything \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ + --header 'X-Tenant: umbrella' \ + --header 'X-Request-Id: req-xyz' diff --git a/java-dedup/keploy/test-set-0/tests/test-109.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-109.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-109.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-109.yaml index db29e45a..2bcbd6c2 100644 --- a/java-dedup/keploy/test-set-0/tests/test-109.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-109.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/somewhere + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.396645928+05:30 + Accept: '*/*' + X-Tenant: umbrella + X-Request-Id: missing + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Somewhere"}' + Vary: Accept-Encoding + Content-Length: 43 + body: '{"tenant":"umbrella","requestId":"missing"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.399186132+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/somewhere \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: umbrella' \ + --header 'X-Request-Id: missing' 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..032c96d1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-11.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-11 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=books&limit=3 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 257 + body: '{"category":"books","limit":3,"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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=books&limit=3' \ + --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-110.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-110.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-110.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-110.yaml index f1c1a4f6..91b1559a 100644 --- a/java-dedup/keploy/test-set-0/tests/test-110.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-110.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/noone + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.408016773+05:30 + Accept: '*/*' + X-Tenant: soylent + X-Request-Id: req-001 + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"No one"}' + Vary: Accept-Encoding + Content-Length: 42 + body: '{"tenant":"soylent","requestId":"req-001"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.410194562+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/noone \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ + --header 'X-Tenant: soylent' \ + --header 'X-Request-Id: req-001' diff --git a/java-dedup/keploy/test-set-0/tests/test-111.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-111.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-111.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-111.yaml index 10ac7726..39ed3d0d 100644 --- a/java-dedup/keploy/test-set-0/tests/test-111.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-111.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.418426558+05:30 + Accept: '*/*' + X-Tenant: soylent + X-Request-Id: req-002 + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' + Vary: Accept-Encoding + Content-Length: 42 + body: '{"tenant":"soylent","requestId":"req-002"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.421117146+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: soylent' \ + --header 'X-Request-Id: req-002' diff --git a/java-dedup/keploy/test-set-0/tests/test-112.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-112.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-112.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-112.yaml index e5cd8fba..c79575dc 100644 --- a/java-dedup/keploy/test-set-0/tests/test-112.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-112.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everything + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.430554581+05:30 + Accept: '*/*' + X-Tenant: soylent + X-Request-Id: req-abc + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' + Vary: Accept-Encoding + Content-Length: 42 + body: '{"tenant":"soylent","requestId":"req-abc"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.433900301+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everything \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ + --header 'X-Tenant: soylent' \ + --header 'X-Request-Id: req-abc' diff --git a/java-dedup/keploy/test-set-0/tests/test-113.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-113.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-113.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-113.yaml index 22bc6054..44ecace9 100644 --- a/java-dedup/keploy/test-set-0/tests/test-113.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-113.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/nothing + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.443041599+05:30 + Accept: '*/*' + X-Tenant: soylent + X-Request-Id: req-xyz + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Nothing"}' + Vary: Accept-Encoding + Content-Length: 42 + body: '{"tenant":"soylent","requestId":"req-xyz"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.445710988+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: soylent' \ + --header 'X-Request-Id: req-xyz' diff --git a/java-dedup/keploy/test-set-0/tests/test-114.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-114.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-114.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-114.yaml index 9e2194f0..9648aa13 100644 --- a/java-dedup/keploy/test-set-0/tests/test-114.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-114.yaml @@ -8,32 +8,40 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.453556311+05:30 + Accept: '*/*' + X-Tenant: soylent + X-Request-Id: missing + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' + Vary: Accept-Encoding + Content-Length: 42 + body: '{"tenant":"soylent","requestId":"missing"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.456143912+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ - --header 'Host: 127.0.0.1:8080' \ + --header 'X-Tenant: soylent' \ + --header 'X-Request-Id: missing' diff --git a/java-dedup/keploy/test-set-1/tests/test-115.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-115.yaml similarity index 52% rename from java-dedup/keploy/test-set-1/tests/test-115.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-115.yaml index 6636fd3b..74a1409c 100644 --- a/java-dedup/keploy/test-set-1/tests/test-115.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-115.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/ + url: http://127.0.0.1:8080/platform/routes/us-east/az1 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.784871013+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"status":"ok"}' + Vary: Accept-Encoding + Content-Length: 60 + body: '{"region":"us-east","zone":"az1","target":"us-east-az1-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.786603336+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/ \ + --url http://127.0.0.1:8080/platform/routes/us-east/az1 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-116.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-116.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-116.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-116.yaml index 99bd5cfe..1da568aa 100644 --- a/java-dedup/keploy/test-set-0/tests/test-116.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-116.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/items + url: http://127.0.0.1:8080/platform/routes/us-east/az2 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.475646167+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' 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}]' + Vary: Accept-Encoding + Content-Length: 60 + body: '{"region":"us-east","zone":"az2","target":"us-east-az2-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.478163992+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/items \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/routes/us-east/az2 \ --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-117.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-117.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-117.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-117.yaml index 15fdd496..49d0991a 100644 --- a/java-dedup/keploy/test-set-0/tests/test-117.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-117.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/status + url: http://127.0.0.1:8080/platform/routes/us-east/az3 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.485356562+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"service":"user-api","status":"active"}' + Vary: Accept-Encoding + Content-Length: 60 + body: '{"region":"us-east","zone":"az3","target":"us-east-az3-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.487870376+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/routes/us-east/az3 \ --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-118.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-118.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-118.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-118.yaml index e4a173d0..dddf3a9d 100644 --- a/java-dedup/keploy/test-set-0/tests/test-118.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-118.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everything + url: http://127.0.0.1:8080/platform/routes/us-west/az1 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.49471869+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' + Vary: Accept-Encoding + Content-Length: 60 + body: '{"region":"us-west","zone":"az1","target":"us-west-az1-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.49757921+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everything \ + --url http://127.0.0.1:8080/platform/routes/us-west/az1 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-119.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-119.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-119.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-119.yaml index 16d9a332..06548685 100644 --- a/java-dedup/keploy/test-set-0/tests/test-119.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-119.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data + url: http://127.0.0.1:8080/platform/routes/us-west/az2 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.50621475+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":1,"data":"legacy data"}' + Vary: Accept-Encoding + Content-Length: 60 + body: '{"region":"us-west","zone":"az2","target":"us-west-az2-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.508735575+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/routes/us-west/az2 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..8d71d341 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-12.yaml @@ -0,0 +1,43 @@ +# 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/catalog?category=books&limit=5 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 257 + body: '{"category":"books","limit":5,"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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=books&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-120.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-120.yaml similarity index 52% rename from java-dedup/keploy/test-set-1/tests/test-120.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-120.yaml index e4d48b1e..c7220309 100644 --- a/java-dedup/keploy/test-set-1/tests/test-120.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-120.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everyone + url: http://127.0.0.1:8080/platform/routes/us-west/az3 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.832728198+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Everyone"}' + Vary: Accept-Encoding + Content-Length: 60 + body: '{"region":"us-west","zone":"az3","target":"us-west-az3-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.835237026+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everyone \ + --url http://127.0.0.1:8080/platform/routes/us-west/az3 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-121.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-121.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-121.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-121.yaml index 8cfbfd15..492a2057 100644 --- a/java-dedup/keploy/test-set-0/tests/test-121.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-121.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data + url: http://127.0.0.1:8080/platform/routes/eu-central/az1 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.52776529+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":2,"payload":"new data format"}' + Vary: Accept-Encoding + Content-Length: 66 + body: '{"region":"eu-central","zone":"az1","target":"eu-central-az1-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.530472537+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ + --url http://127.0.0.1:8080/platform/routes/eu-central/az1 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-122.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-122.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-122.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-122.yaml index 8134f128..9627b812 100644 --- a/java-dedup/keploy/test-set-0/tests/test-122.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-122.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile + url: http://127.0.0.1:8080/platform/routes/eu-central/az2 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.539599505+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"user_id":"123","profile":"..."}' + Vary: Accept-Encoding + Content-Length: 66 + body: '{"region":"eu-central","zone":"az2","target":"eu-central-az2-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.543160566+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/routes/eu-central/az2 \ --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-123.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-123.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-123.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-123.yaml index d8930d84..09dee79f 100644 --- a/java-dedup/keploy/test-set-0/tests/test-123.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-123.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everyone + url: http://127.0.0.1:8080/platform/routes/eu-central/az3 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.552512425+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everyone"}' + Vary: Accept-Encoding + Content-Length: 66 + body: '{"region":"eu-central","zone":"az3","target":"eu-central-az3-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.555632445+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/routes/eu-central/az3 \ --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-124.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-124.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-124.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-124.yaml index 3b6673a0..67d97067 100644 --- a/java-dedup/keploy/test-set-0/tests/test-124.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-124.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/info + url: http://127.0.0.1:8080/platform/routes/ap-south/az1 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.564029624+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":"1.0.2","author":"Keploy"}' + Vary: Accept-Encoding + Content-Length: 62 + body: '{"region":"ap-south","zone":"az1","target":"ap-south-az1-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.566703373+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/info \ + --url http://127.0.0.1:8080/platform/routes/ap-south/az1 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-125.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-125.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-125.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-125.yaml index 6a32a3dd..83490294 100644 --- a/java-dedup/keploy/test-set-0/tests/test-125.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-125.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/status + url: http://127.0.0.1:8080/platform/routes/ap-south/az2 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.575681868+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"service":"user-api","status":"active"}' + Vary: Accept-Encoding + Content-Length: 62 + body: '{"region":"ap-south","zone":"az2","target":"ap-south-az2-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.578268789+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/status \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/routes/ap-south/az2 \ --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-126.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-126.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-126.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-126.yaml index 24c08cac..ff5d648e 100644 --- a/java-dedup/keploy/test-set-0/tests/test-126.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-126.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/system/logs + url: http://127.0.0.1:8080/platform/routes/ap-south/az3 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.587528263+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"log_level":"INFO","entries":1024}' + Vary: Accept-Encoding + Content-Length: 62 + body: '{"region":"ap-south","zone":"az3","target":"ap-south-az3-api"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.590899072+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/system/logs \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/routes/ap-south/az3 \ --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-127.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-127.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-127.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-127.yaml index 5544cd67..a20e8ae3 100644 --- a/java-dedup/keploy/test-set-0/tests/test-127.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-127.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users + url: http://127.0.0.1:8080/platform/content/html header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.600238102+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z 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"}]}' + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: text/html + Vary: Accept-Encoding + Content-Length: 19 + body: '

dropwizard

' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.603467027+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/content/html \ --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-128.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-128.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-128.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-128.yaml index ba9ece77..b9172ffd 100644 --- a/java-dedup/keploy/test-set-0/tests/test-128.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-128.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/system/logs + url: http://127.0.0.1:8080/platform/content/html header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.611826688+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"log_level":"INFO","entries":1024}' + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: text/html + Vary: Accept-Encoding + Content-Length: 19 + body: '

dropwizard

' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.615675926+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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: */*' \ + --url http://127.0.0.1:8080/platform/content/html \ --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-129.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-129.yaml similarity index 51% rename from java-dedup/keploy/test-set-1/tests/test-129.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-129.yaml index 1edeef30..0fd0f926 100644 --- a/java-dedup/keploy/test-set-1/tests/test-129.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-129.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/anybody + url: http://127.0.0.1:8080/platform/content/html header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.912213158+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: - Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"message":"Anybody"}' + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: text/html + Vary: Accept-Encoding + Content-Length: 19 + body: '

dropwizard

' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.914546684+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/content/html \ --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..f3334d34 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-13.yaml @@ -0,0 +1,43 @@ +# 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/catalog?category=electronics&limit=1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 184 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=electronics&limit=1' \ + --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-130.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-130.yaml similarity index 51% rename from java-dedup/keploy/test-set-1/tests/test-130.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-130.yaml index 771832eb..d5da0e01 100644 --- a/java-dedup/keploy/test-set-1/tests/test-130.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-130.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users + url: http://127.0.0.1:8080/platform/content/html header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:36.922317789+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z 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"}]}' + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: text/html + Vary: Accept-Encoding + Content-Length: 19 + body: '

dropwizard

' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:36.924747791+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015176 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v2/users \ - --header 'Accept: */*' \ + --url http://127.0.0.1:8080/platform/content/html \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-131.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-131.yaml new file mode 100644 index 00000000..c5326360 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-131.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-131 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/platform/events + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"type": "signup", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 51 + body: '{"accepted":true,"type":"signup","normalized":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/platform/events \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"type": "signup", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-132.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-132.yaml new file mode 100644 index 00000000..f416fb88 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-132.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-132 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/platform/events + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"type": "login", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 50 + body: '{"accepted":true,"type":"login","normalized":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/platform/events \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"type": "login", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-133.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-133.yaml new file mode 100644 index 00000000..9de8ced9 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-133.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-133 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/platform/events + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"type": "purchase", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 53 + body: '{"accepted":true,"type":"purchase","normalized":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/platform/events \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"type": "purchase", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-134.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-134.yaml new file mode 100644 index 00000000..43ea15f6 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-134.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-134 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/platform/events + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"type": "logout", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 51 + body: '{"accepted":true,"type":"logout","normalized":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/platform/events \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"type": "logout", "actor": "user", "ts": "2026-04-30T00:00:00Z"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-135.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-135.yaml new file mode 100644 index 00000000..64fe43d9 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-135.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-135 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "BK-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"alice","sku":"BK-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "BK-1", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-136.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-136.yaml new file mode 100644 index 00000000..74235c2c --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-136.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-136 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "BK-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"alice","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "BK-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-137.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-137.yaml new file mode 100644 index 00000000..4ccd86c5 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-137.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-137 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "BK-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"alice","sku":"BK-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "BK-2", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-138.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-138.yaml new file mode 100644 index 00000000..d61249cf --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-138.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-138 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "BK-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"alice","sku":"BK-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "BK-2", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-139.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-139.yaml new file mode 100644 index 00000000..53a9ad17 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-139.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-139 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "EL-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"alice","sku":"EL-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "EL-1", "quantity": 2, "priority": true}' 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..20805484 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-14.yaml @@ -0,0 +1,43 @@ +# 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/catalog?category=electronics&limit=2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 281 + body: '{"category":"electronics","limit":2,"items":[{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"},{"sku":"EL-2","name":"USB-C Dock","category":"electronics","status":"available","price":"89.00"}],"source":"warehouse-b"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=electronics&limit=2' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-140.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-140.yaml new file mode 100644 index 00000000..27293808 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-140.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-140 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "EL-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"alice","sku":"EL-1","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "EL-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-141.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-141.yaml new file mode 100644 index 00000000..1a8bd685 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-141.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-141 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "EL-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"alice","sku":"EL-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "EL-2", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-142.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-142.yaml new file mode 100644 index 00000000..483dff77 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-142.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-142 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "alice", "sku": "EL-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"alice","sku":"EL-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "alice", "sku": "EL-2", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-143.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-143.yaml new file mode 100644 index 00000000..0249e2c1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-143.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-143 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "BK-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 143 + body: '{"orderId":"ORD-PRIORITY","customer":"bob","sku":"BK-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "BK-1", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-144.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-144.yaml new file mode 100644 index 00000000..67cf5b1f --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-144.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-144 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "BK-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 147 + body: '{"orderId":"ORD-STANDARD","customer":"bob","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "BK-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-145.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-145.yaml new file mode 100644 index 00000000..b96184a5 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-145.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-145 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "BK-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 143 + body: '{"orderId":"ORD-PRIORITY","customer":"bob","sku":"BK-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "BK-2", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-146.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-146.yaml new file mode 100644 index 00000000..fb7a0726 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-146.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-146 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "BK-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 147 + body: '{"orderId":"ORD-STANDARD","customer":"bob","sku":"BK-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "BK-2", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-147.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-147.yaml new file mode 100644 index 00000000..3ca21bb7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-147.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-147 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "EL-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 143 + body: '{"orderId":"ORD-PRIORITY","customer":"bob","sku":"EL-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "EL-1", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-148.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-148.yaml new file mode 100644 index 00000000..be5f28da --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-148.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-148 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "EL-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 147 + body: '{"orderId":"ORD-STANDARD","customer":"bob","sku":"EL-1","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "EL-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-149.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-149.yaml new file mode 100644 index 00000000..5ea8bf3e --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-149.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-149 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "EL-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 143 + body: '{"orderId":"ORD-PRIORITY","customer":"bob","sku":"EL-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "EL-2", "quantity": 2, "priority": true}' 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..47fe8c5d --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-15.yaml @@ -0,0 +1,43 @@ +# 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/catalog?category=electronics&limit=3 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 281 + body: '{"category":"electronics","limit":3,"items":[{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"},{"sku":"EL-2","name":"USB-C Dock","category":"electronics","status":"available","price":"89.00"}],"source":"warehouse-b"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=electronics&limit=3' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-150.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-150.yaml new file mode 100644 index 00000000..a317ebf1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-150.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-150 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "bob", "sku": "EL-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 147 + body: '{"orderId":"ORD-STANDARD","customer":"bob","sku":"EL-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "bob", "sku": "EL-2", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-151.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-151.yaml new file mode 100644 index 00000000..bb27f84c --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-151.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-151 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "BK-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"carol","sku":"BK-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "BK-1", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-152.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-152.yaml new file mode 100644 index 00000000..5893d29a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-152.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-152 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "BK-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"carol","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "BK-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-153.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-153.yaml new file mode 100644 index 00000000..c18e5e86 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-153.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-153 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "BK-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"carol","sku":"BK-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "BK-2", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-154.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-154.yaml new file mode 100644 index 00000000..2aed3e78 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-154.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-154 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "BK-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"carol","sku":"BK-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "BK-2", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-155.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-155.yaml new file mode 100644 index 00000000..53cd2340 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-155.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-155 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "EL-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"carol","sku":"EL-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "EL-1", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-156.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-156.yaml new file mode 100644 index 00000000..6c5bc30a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-156.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-156 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "EL-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"carol","sku":"EL-1","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "EL-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-157.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-157.yaml new file mode 100644 index 00000000..68fb25e0 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-157.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-157 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "EL-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 145 + body: '{"orderId":"ORD-PRIORITY","customer":"carol","sku":"EL-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "EL-2", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-158.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-158.yaml new file mode 100644 index 00000000..ea748c38 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-158.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-158 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "carol", "sku": "EL-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 149 + body: '{"orderId":"ORD-STANDARD","customer":"carol","sku":"EL-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "carol", "sku": "EL-2", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-159.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-159.yaml new file mode 100644 index 00000000..8b192f2b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-159.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-159 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "BK-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 144 + body: '{"orderId":"ORD-PRIORITY","customer":"dave","sku":"BK-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "BK-1", "quantity": 2, "priority": true}' 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..fb0936b7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-16.yaml @@ -0,0 +1,43 @@ +# 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?category=electronics&limit=5 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 281 + body: '{"category":"electronics","limit":5,"items":[{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"},{"sku":"EL-2","name":"USB-C Dock","category":"electronics","status":"available","price":"89.00"}],"source":"warehouse-b"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=electronics&limit=5' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-160.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-160.yaml new file mode 100644 index 00000000..47e38d16 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-160.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-160 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "BK-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 148 + body: '{"orderId":"ORD-STANDARD","customer":"dave","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "BK-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-161.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-161.yaml new file mode 100644 index 00000000..22a93d7f --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-161.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-161 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "BK-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 144 + body: '{"orderId":"ORD-PRIORITY","customer":"dave","sku":"BK-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "BK-2", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-162.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-162.yaml new file mode 100644 index 00000000..6b823f8d --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-162.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-162 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "BK-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 148 + body: '{"orderId":"ORD-STANDARD","customer":"dave","sku":"BK-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "BK-2", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-163.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-163.yaml new file mode 100644 index 00000000..6ccfdd66 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-163.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-163 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "EL-1", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 144 + body: '{"orderId":"ORD-PRIORITY","customer":"dave","sku":"EL-1","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "EL-1", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-164.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-164.yaml new file mode 100644 index 00000000..1b0d007e --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-164.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-164 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "EL-1", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 148 + body: '{"orderId":"ORD-STANDARD","customer":"dave","sku":"EL-1","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "EL-1", "quantity": 2, "priority": false}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-165.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-165.yaml new file mode 100644 index 00000000..1cb7eda0 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-165.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-165 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "EL-2", "quantity": 2, "priority": true}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 144 + body: '{"orderId":"ORD-PRIORITY","customer":"dave","sku":"EL-2","quantity":2,"priority":true,"route":"air","checks":["inventory","pricing","expedite"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "EL-2", "quantity": 2, "priority": true}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-166.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-166.yaml new file mode 100644 index 00000000..3a7e69d9 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-166.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-166 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"customer": "dave", "sku": "EL-2", "quantity": 2, "priority": false}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 201 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 148 + body: '{"orderId":"ORD-STANDARD","customer":"dave","sku":"EL-2","quantity":2,"priority":false,"route":"ground","checks":["inventory","pricing","standard"]}' + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request POST \ + --url http://127.0.0.1:8080/orders \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"customer": "dave", "sku": "EL-2", "quantity": 2, "priority": false}' diff --git a/java-dedup/keploy/test-set-0/tests/test-167.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-167.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-167.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-167.yaml index 7f03f334..78549809 100644 --- a/java-dedup/keploy/test-set-0/tests/test-167.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-167.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/proxy + url: http://127.0.0.1:8080/orders/ORD-1?expand=true header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.046391439+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' + Vary: Accept-Encoding + Content-Length: 87 + body: '{"orderId":"ORD-1","status":"packed","expand":true,"audit":["created","paid","packed"]}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.048178564+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-1?expand=true' \ --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-168.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-168.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-168.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-168.yaml index 30c139c8..8361c73b 100644 --- a/java-dedup/keploy/test-set-0/tests/test-168.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-168.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everything + url: http://127.0.0.1:8080/orders/ORD-1?expand=false header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.055632102+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Everything"}' + Vary: Accept-Encoding + Content-Length: 52 + body: '{"orderId":"ORD-1","status":"packed","expand":false}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.057983234+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-1?expand=false' \ --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-166.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-169.yaml similarity index 52% rename from java-dedup/keploy/test-set-3/tests/test-166.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-169.yaml index fc925cf7..924dd6b0 100644 --- a/java-dedup/keploy/test-set-3/tests/test-166.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-169.yaml @@ -1,39 +1,43 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-166 +name: test-169 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/somebody + url: http://127.0.0.1:8080/orders/ORD-42?expand=true header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.423991374+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Somebody"}' + Vary: Accept-Encoding + Content-Length: 88 + body: '{"orderId":"ORD-42","status":"packed","expand":true,"audit":["created","paid","packed"]}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:51:46.426226316+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015306 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/somebody \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-42?expand=true' \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-17.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-17.yaml new file mode 100644 index 00000000..766cc288 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-17.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-17 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=home&limit=1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 161 + body: '{"category":"home","limit":1,"items":[{"sku":"BK-1","name":"Clean Architecture","category":"books","status":"available","price":"32.50"}],"source":"warehouse-a"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=home&limit=1' \ + --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-170.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-170.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-170.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-170.yaml index 1bcc91a8..cff4cd73 100644 --- a/java-dedup/keploy/test-set-0/tests/test-170.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-170.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/noone + url: http://127.0.0.1:8080/orders/ORD-42?expand=false header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.075936433+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"No one"}' + Vary: Accept-Encoding + Content-Length: 53 + body: '{"orderId":"ORD-42","status":"packed","expand":false}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.078344923+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-42?expand=false' \ --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-171.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-171.yaml similarity index 50% rename from java-dedup/keploy/test-set-0/tests/test-171.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-171.yaml index 4536d6e4..e687cecf 100644 --- a/java-dedup/keploy/test-set-0/tests/test-171.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-171.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile + url: http://127.0.0.1:8080/orders/ORD-100?expand=true header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.087623624+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"user_id":"123","profile":"..."}' + Vary: Accept-Encoding + Content-Length: 89 + body: '{"orderId":"ORD-100","status":"packed","expand":true,"audit":["created","paid","packed"]}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.090898327+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-100?expand=true' \ --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-172.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-172.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-172.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-172.yaml index f6dfc147..189e07f4 100644 --- a/java-dedup/keploy/test-set-0/tests/test-172.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-172.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users + url: http://127.0.0.1:8080/orders/ORD-100?expand=false header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.098009029+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"users":["alpha","beta"]}' + Vary: Accept-Encoding + Content-Length: 54 + body: '{"orderId":"ORD-100","status":"packed","expand":false}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.100834402+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ + --url 'http://127.0.0.1:8080/orders/ORD-100?expand=false' \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-173.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-173.yaml similarity index 50% rename from java-dedup/keploy/test-set-0/tests/test-173.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-173.yaml index 355c8852..c8eb7849 100644 --- a/java-dedup/keploy/test-set-0/tests/test-173.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-173.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/nothing + url: http://127.0.0.1:8080/orders/ORD-PRIORITY?expand=true header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.109668013+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Nothing"}' + Vary: Accept-Encoding + Content-Length: 94 + body: '{"orderId":"ORD-PRIORITY","status":"packed","expand":true,"audit":["created","paid","packed"]}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.112140589+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/nothing \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-PRIORITY?expand=true' \ --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-174.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-174.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-174.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-174.yaml index 7441bf6a..65c4dc88 100644 --- a/java-dedup/keploy/test-set-0/tests/test-174.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-174.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data + url: http://127.0.0.1:8080/orders/ORD-PRIORITY?expand=false header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.119459523+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' + Vary: Accept-Encoding + Content-Length: 59 + body: '{"orderId":"ORD-PRIORITY","status":"packed","expand":false}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.121937619+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v1/data \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-PRIORITY?expand=false' \ --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-175.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-175.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-175.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-175.yaml index 2363a2b6..b65ea4f6 100644 --- a/java-dedup/keploy/test-set-0/tests/test-175.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-175.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/data + url: http://127.0.0.1:8080/orders/ORD-X9?expand=true header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.129408606+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":1,"data":"legacy data"}' + Vary: Accept-Encoding + Content-Length: 88 + body: '{"orderId":"ORD-X9","status":"packed","expand":true,"audit":["created","paid","packed"]}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.131812026+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-X9?expand=true' \ --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/dropwizard-dedup/keploy/test-set-0/tests/test-176.yaml similarity index 56% rename from java-dedup/keploy/test-set-3/tests/test-121.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-176.yaml index 304494e7..745f7c44 100644 --- a/java-dedup/keploy/test-set-3/tests/test-121.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-176.yaml @@ -1,39 +1,43 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-121 +name: test-176 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everything + url: http://127.0.0.1:8080/orders/ORD-X9?expand=false header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.029898657+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everything"}' + Vary: Accept-Encoding + Content-Length: 53 + body: '{"orderId":"ORD-X9","status":"packed","expand":false}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:51:46.032527488+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015306 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-X9?expand=false' \ --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-177.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-177.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-177.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-177.yaml index 12efca7d..939f1352 100644 --- a/java-dedup/keploy/test-set-0/tests/test-177.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-177.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/users + url: http://127.0.0.1:8080/orders/ORD-7?expand=true header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.149540444+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + Vary: Accept-Encoding + Content-Length: 87 + body: '{"orderId":"ORD-7","status":"packed","expand":true,"audit":["created","paid","packed"]}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.151594078+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-7?expand=true' \ --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-178.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-178.yaml similarity index 52% rename from java-dedup/keploy/test-set-1/tests/test-178.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-178.yaml index 62facf24..5afdc99a 100644 --- a/java-dedup/keploy/test-set-1/tests/test-178.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-178.yaml @@ -8,32 +8,36 @@ spec: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v2/data + url: http://127.0.0.1:8080/orders/ORD-7?expand=false header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:49:37.376676312+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:19:36 GMT - body: '{"version":2,"payload":"new data format"}' + Vary: Accept-Encoding + Content-Length: 52 + body: '{"orderId":"ORD-7","status":"packed","expand":false}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:49:37.378685023+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015177 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v2/data \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/orders/ORD-7?expand=false' \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-179.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-179.yaml new file mode 100644 index 00000000..eb6b1311 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-179.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-179 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "shipped"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 53 + body: '{"orderId":"ORD-1","status":"shipped","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "shipped"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-18.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-18.yaml new file mode 100644 index 00000000..b4ab58ea --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-18.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-18 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=home&limit=2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 256 + body: '{"category":"home","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=home&limit=2' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-180.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-180.yaml new file mode 100644 index 00000000..683a68b4 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-180.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-180 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "delivered"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 55 + body: '{"orderId":"ORD-1","status":"delivered","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "delivered"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-181.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-181.yaml new file mode 100644 index 00000000..b804220a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-181.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-181 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "cancelled"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 55 + body: '{"orderId":"ORD-1","status":"cancelled","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "cancelled"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-182.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-182.yaml new file mode 100644 index 00000000..746d152a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-182.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-182 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-42 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "shipped"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 54 + body: '{"orderId":"ORD-42","status":"shipped","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-42 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "shipped"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-183.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-183.yaml new file mode 100644 index 00000000..3dfdf9ab --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-183.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-183 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-42 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "delivered"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 56 + body: '{"orderId":"ORD-42","status":"delivered","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-42 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "delivered"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-184.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-184.yaml new file mode 100644 index 00000000..8c9d71fa --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-184.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-184 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-42 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "cancelled"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 56 + body: '{"orderId":"ORD-42","status":"cancelled","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-42 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "cancelled"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-185.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-185.yaml new file mode 100644 index 00000000..c415396d --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-185.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-185 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-100 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "shipped"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 55 + body: '{"orderId":"ORD-100","status":"shipped","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-100 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "shipped"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-186.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-186.yaml new file mode 100644 index 00000000..54ba99ec --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-186.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-186 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-100 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "delivered"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 57 + body: '{"orderId":"ORD-100","status":"delivered","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-100 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "delivered"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-187.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-187.yaml new file mode 100644 index 00000000..0950f181 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-187.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-187 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-100 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "cancelled"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 57 + body: '{"orderId":"ORD-100","status":"cancelled","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-100 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "cancelled"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-188.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-188.yaml new file mode 100644 index 00000000..1bf93dd1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-188.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-188 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-PRIORITY + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "shipped"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 60 + body: '{"orderId":"ORD-PRIORITY","status":"shipped","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-PRIORITY \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "shipped"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-189.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-189.yaml new file mode 100644 index 00000000..211a86f7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-189.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-189 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-PRIORITY + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "delivered"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 62 + body: '{"orderId":"ORD-PRIORITY","status":"delivered","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-PRIORITY \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "delivered"}' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-19.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-19.yaml new file mode 100644 index 00000000..e641ee5e --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-19.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-19 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=home&limit=3 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 256 + body: '{"category":"home","limit":3,"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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=home&limit=3' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-190.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-190.yaml new file mode 100644 index 00000000..5cddb186 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-190.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-190 +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-PRIORITY + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + Content-Type: application/json + body: '{"status": "cancelled"}' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 62 + body: '{"orderId":"ORD-PRIORITY","status":"cancelled","updated":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request PUT \ + --url http://127.0.0.1:8080/orders/ORD-PRIORITY \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --data '{"status": "cancelled"}' diff --git a/java-dedup/keploy/test-set-0/tests/test-156.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-191.yaml similarity index 53% rename from java-dedup/keploy/test-set-0/tests/test-156.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-191.yaml index d3c82429..75342c6b 100644 --- a/java-dedup/keploy/test-set-0/tests/test-156.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-191.yaml @@ -1,39 +1,42 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-156 +name: test-191 spec: metadata: {} req: - method: GET + method: DELETE proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/info + url: http://127.0.0.1:8080/orders/ORD-1 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.92219454+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":"1.0.2","author":"Keploy"}' + Content-Length: 34 + body: '{"orderId":"ORD-1","deleted":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.925103788+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | - curl --request GET \ - --url http://127.0.0.1:8080/info \ + curl --request DELETE \ + --url http://127.0.0.1:8080/orders/ORD-1 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-251.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-192.yaml similarity index 55% rename from java-dedup/keploy/test-set-0/tests/test-251.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-192.yaml index 5ebff6fc..3d161152 100644 --- a/java-dedup/keploy/test-set-0/tests/test-251.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-192.yaml @@ -1,39 +1,42 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-251 +name: test-192 spec: metadata: {} req: - method: GET + method: DELETE proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everything + url: http://127.0.0.1:8080/orders/ORD-42 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:18.003518256+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Everything"}' + Content-Length: 35 + body: '{"orderId":"ORD-42","deleted":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:18.005594789+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015098 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | - curl --request GET \ - --url http://127.0.0.1:8080/everything \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + curl --request DELETE \ + --url http://127.0.0.1:8080/orders/ORD-42 \ --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-193.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-193.yaml new file mode 100644 index 00000000..820d4f40 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-193.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-193 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/orders/ORD-100 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 36 + body: '{"orderId":"ORD-100","deleted":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request DELETE \ + --url http://127.0.0.1:8080/orders/ORD-100 \ + --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-194.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-194.yaml similarity index 51% rename from java-dedup/keploy/test-set-0/tests/test-194.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-194.yaml index 3a704539..387a4126 100644 --- a/java-dedup/keploy/test-set-0/tests/test-194.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-194.yaml @@ -5,35 +5,38 @@ name: test-194 spec: metadata: {} req: - method: GET + method: DELETE proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile + url: http://127.0.0.1:8080/orders/ORD-PRIORITY header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.341997486+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"user_id":"123","profile":"..."}' + Content-Length: 41 + body: '{"orderId":"ORD-PRIORITY","deleted":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.344477801+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | - curl --request GET \ - --url http://127.0.0.1:8080/user/123/profile \ + curl --request DELETE \ + --url http://127.0.0.1:8080/orders/ORD-PRIORITY \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/java-dedup/keploy/test-set-0/tests/test-195.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-195.yaml similarity index 52% rename from java-dedup/keploy/test-set-0/tests/test-195.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-195.yaml index 744e1932..eb007c51 100644 --- a/java-dedup/keploy/test-set-0/tests/test-195.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-195.yaml @@ -5,35 +5,38 @@ name: test-195 spec: metadata: {} req: - method: GET + method: DELETE proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/someone + url: http://127.0.0.1:8080/orders/ORD-X9 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:17.352353322+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:17 GMT - body: '{"message":"Someone"}' + Content-Length: 35 + body: '{"orderId":"ORD-X9","deleted":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:17.354813069+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015097 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | - curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ + curl --request DELETE \ + --url http://127.0.0.1:8080/orders/ORD-X9 \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-196.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-196.yaml new file mode 100644 index 00000000..f08288e5 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-196.yaml @@ -0,0 +1,43 @@ +# 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/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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-197.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-197.yaml similarity index 68% rename from java-dedup/keploy/test-set-2/tests/test-197.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-197.yaml index b6c088a4..e8627c3a 100644 --- a/java-dedup/keploy/test-set-2/tests/test-197.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-197.yaml @@ -10,30 +10,34 @@ spec: proto_minor: 1 url: http://127.0.0.1:8080/healthz header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:50:42.303990618+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:20:42 GMT + Vary: Accept-Encoding + Content-Length: 16 body: '{"healthy":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:50:42.306381818+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015242 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-198.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-198.yaml new file mode 100644 index 00000000..86f9992b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-198.yaml @@ -0,0 +1,43 @@ +# 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/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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/dropwizard-dedup/keploy/test-set-0/tests/test-199.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-199.yaml new file mode 100644 index 00000000..72a51e8c --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-199.yaml @@ -0,0 +1,43 @@ +# 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/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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-135.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-2.yaml similarity index 66% rename from java-dedup/keploy/test-set-0/tests/test-135.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-2.yaml index 29072305..75c49000 100644 --- a/java-dedup/keploy/test-set-0/tests/test-135.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-2.yaml @@ -1,7 +1,7 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-135 +name: test-2 spec: metadata: {} req: @@ -10,30 +10,34 @@ spec: proto_minor: 1 url: http://127.0.0.1:8080/healthz header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.693935667+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT + Vary: Accept-Encoding + Content-Length: 16 body: '{"healthy":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.697295677+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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: */*' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-20.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-20.yaml new file mode 100644 index 00000000..3788183e --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-20.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-20 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=home&limit=5 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 256 + body: '{"category":"home","limit":5,"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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=home&limit=5' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-200.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-200.yaml new file mode 100644 index 00000000..97f26661 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-200.yaml @@ -0,0 +1,43 @@ +# 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/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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/dropwizard-dedup/keploy/test-set-0/tests/test-21.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-21.yaml new file mode 100644 index 00000000..9ee95b79 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-21.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-21 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=outdoor&limit=1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 164 + body: '{"category":"outdoor","limit":1,"items":[{"sku":"BK-1","name":"Clean Architecture","category":"books","status":"available","price":"32.50"}],"source":"warehouse-a"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=outdoor&limit=1' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-22.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-22.yaml new file mode 100644 index 00000000..735ffe9a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-22.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-22 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=outdoor&limit=2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 259 + body: '{"category":"outdoor","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=outdoor&limit=2' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-23.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-23.yaml new file mode 100644 index 00000000..c2bd9bcc --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-23.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-23 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=outdoor&limit=3 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 259 + body: '{"category":"outdoor","limit":3,"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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=outdoor&limit=3' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-24.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-24.yaml new file mode 100644 index 00000000..9c8ef51b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-24.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-24 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog?category=outdoor&limit=5 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 259 + body: '{"category":"outdoor","limit":5,"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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=outdoor&limit=5' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-25.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-25.yaml new file mode 100644 index 00000000..8b6b3657 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-25.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-25 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 257 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-26.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-26.yaml new file mode 100644 index 00000000..550a9f79 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-26.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-26 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/BK-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 98 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/BK-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-27.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-27.yaml new file mode 100644 index 00000000..a7082483 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-27.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-27 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/BK-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 98 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/BK-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-28.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-28.yaml new file mode 100644 index 00000000..7cdced5d --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-28.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-28 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/BK-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 98 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/BK-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-29.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-29.yaml new file mode 100644 index 00000000..e968df60 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-29.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-29 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/BK-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/BK-2 \ + --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-147.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-3.yaml similarity index 66% rename from java-dedup/keploy/test-set-0/tests/test-147.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-3.yaml index 667a292d..7f3d74be 100644 --- a/java-dedup/keploy/test-set-0/tests/test-147.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-3.yaml @@ -1,7 +1,7 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-147 +name: test-3 spec: metadata: {} req: @@ -10,30 +10,34 @@ spec: proto_minor: 1 url: http://127.0.0.1:8080/healthz header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.82717112+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT + Vary: Accept-Encoding + Content-Length: 16 body: '{"healthy":true}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.829387068+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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: */*' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-30.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-30.yaml new file mode 100644 index 00000000..d55afb01 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-30.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-30 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/BK-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/BK-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-31.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-31.yaml new file mode 100644 index 00000000..9f118002 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-31.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-31 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/BK-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/BK-2 \ + --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-130.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-32.yaml similarity index 54% rename from java-dedup/keploy/test-set-0/tests/test-130.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-32.yaml index 4662d43a..f9bf0725 100644 --- a/java-dedup/keploy/test-set-0/tests/test-130.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-32.yaml @@ -1,39 +1,43 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-130 +name: test-32 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/user/123/profile + url: http://127.0.0.1:8080/catalog/EL-1 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.634222982+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"user_id":"123","profile":"..."}' + Vary: Accept-Encoding + Content-Length: 114 + body: '{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.637499485+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 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: */*' \ + --url http://127.0.0.1:8080/catalog/EL-1 \ --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-33.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-33.yaml new file mode 100644 index 00000000..d743ec6c --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-33.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-33 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/EL-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 114 + body: '{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/EL-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-34.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-34.yaml new file mode 100644 index 00000000..01511c53 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-34.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-34 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/EL-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 114 + body: '{"sku":"EL-1","name":"Noise Cancelling Headphones","category":"electronics","status":"backorder","price":"199.99"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/EL-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-35.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-35.yaml new file mode 100644 index 00000000..39501f27 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-35.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-35 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/EL-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/EL-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-36.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-36.yaml new file mode 100644 index 00000000..9d88ca52 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-36.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-36 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/EL-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/EL-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-37.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-37.yaml new file mode 100644 index 00000000..7f767c59 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-37.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-37 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/EL-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/EL-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-38.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-38.yaml new file mode 100644 index 00000000..7a13fce1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-38.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-38 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/HM-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/HM-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-39.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-39.yaml new file mode 100644 index 00000000..35675f3e --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-39.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-39 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/HM-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/HM-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..3519e28f --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-4.yaml @@ -0,0 +1,43 @@ +# 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/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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/dropwizard-dedup/keploy/test-set-0/tests/test-40.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-40.yaml new file mode 100644 index 00000000..8adb173a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-40.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-40 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/HM-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/HM-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-41.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-41.yaml new file mode 100644 index 00000000..42e3d5d4 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-41.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-41 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/HM-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/HM-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-42.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-42.yaml new file mode 100644 index 00000000..bfd823cf --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-42.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-42 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/HM-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/HM-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-43.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-43.yaml new file mode 100644 index 00000000..e8164158 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-43.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-43 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/HM-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/HM-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-44.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-44.yaml new file mode 100644 index 00000000..4d041b52 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-44.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-44 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/OD-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/OD-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-45.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-45.yaml new file mode 100644 index 00000000..f804fe70 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-45.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-45 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/OD-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/OD-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-46.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-46.yaml new file mode 100644 index 00000000..b2cb4093 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-46.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-46 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/OD-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/OD-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-47.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-47.yaml new file mode 100644 index 00000000..8316629b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-47.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-47 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/OD-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/OD-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-48.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-48.yaml new file mode 100644 index 00000000..93e18045 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-48.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-48 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/OD-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/OD-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-49.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-49.yaml new file mode 100644 index 00000000..00da2749 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-49.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-49 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/OD-2 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/OD-2 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..43113dde --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-5.yaml @@ -0,0 +1,43 @@ +# 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/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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/dropwizard-dedup/keploy/test-set-0/tests/test-50.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-50.yaml new file mode 100644 index 00000000..47e6a7bb --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-50.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-50 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/MISSING + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/MISSING \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-51.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-51.yaml new file mode 100644 index 00000000..1ab01e62 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-51.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-51 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/NOPE + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/NOPE \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-52.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-52.yaml new file mode 100644 index 00000000..aafae1b7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-52.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-52 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/ZZ-9 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/ZZ-9 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-53.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-53.yaml new file mode 100644 index 00000000..d38bb6d1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-53.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-53 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/FOO + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/FOO \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-54.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-54.yaml new file mode 100644 index 00000000..798c460b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-54.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-54 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/catalog/X-1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 404 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 34 + body: '{"error":"not_found","status":404}' + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/catalog/X-1 \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-55.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-55.yaml new file mode 100644 index 00000000..6affdb04 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-55.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-55 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=phone&sort=relevance + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 286 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=phone&sort=relevance' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-56.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-56.yaml new file mode 100644 index 00000000..9a41d9e1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-56.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-56 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=phone&sort=price + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 281 + 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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=phone&sort=price' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-57.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-57.yaml new file mode 100644 index 00000000..54a8c69b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-57.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-57 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=phone&sort=popularity + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 287 + body: '{"term":"phone","sort":"popularity","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=phone&sort=popularity' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-58.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-58.yaml new file mode 100644 index 00000000..432da8e1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-58.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-58 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=phone&sort=newest + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 283 + body: '{"term":"phone","sort":"newest","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=phone&sort=newest' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-59.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-59.yaml new file mode 100644 index 00000000..e9425aa7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-59.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-59 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=book&sort=relevance + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 285 + body: '{"term":"book","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=book&sort=relevance' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..43c254c3 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-6.yaml @@ -0,0 +1,43 @@ +# 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/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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/dropwizard-dedup/keploy/test-set-0/tests/test-60.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-60.yaml new file mode 100644 index 00000000..83a18ddc --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-60.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-60 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=book&sort=price + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 280 + body: '{"term":"book","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=book&sort=price' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-61.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-61.yaml new file mode 100644 index 00000000..6749d076 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-61.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-61 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=book&sort=popularity + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 286 + body: '{"term":"book","sort":"popularity","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=book&sort=popularity' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-62.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-62.yaml new file mode 100644 index 00000000..bb13878e --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-62.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-62 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=book&sort=newest + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 282 + body: '{"term":"book","sort":"newest","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=book&sort=newest' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-63.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-63.yaml new file mode 100644 index 00000000..87c2a164 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-63.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-63 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=tent&sort=relevance + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 285 + body: '{"term":"tent","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=tent&sort=relevance' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-64.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-64.yaml new file mode 100644 index 00000000..e23267c6 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-64.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-64 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=tent&sort=price + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 280 + body: '{"term":"tent","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=tent&sort=price' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-65.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-65.yaml new file mode 100644 index 00000000..07502596 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-65.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-65 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=tent&sort=popularity + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 286 + body: '{"term":"tent","sort":"popularity","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=tent&sort=popularity' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-66.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-66.yaml new file mode 100644 index 00000000..309dde83 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-66.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-66 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=tent&sort=newest + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 282 + body: '{"term":"tent","sort":"newest","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=tent&sort=newest' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-67.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-67.yaml new file mode 100644 index 00000000..96587301 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-67.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-67 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=speaker&sort=relevance + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 288 + body: '{"term":"speaker","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=speaker&sort=relevance' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-68.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-68.yaml new file mode 100644 index 00000000..c1fb1bd5 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-68.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-68 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=speaker&sort=price + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 283 + body: '{"term":"speaker","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=speaker&sort=price' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-69.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-69.yaml new file mode 100644 index 00000000..2a1986e9 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-69.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-69 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=speaker&sort=popularity + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 289 + body: '{"term":"speaker","sort":"popularity","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=speaker&sort=popularity' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..245a5de1 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-7.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-7 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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/dropwizard-dedup/keploy/test-set-0/tests/test-70.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-70.yaml new file mode 100644 index 00000000..6c0f430b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-70.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-70 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=speaker&sort=newest + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 285 + body: '{"term":"speaker","sort":"newest","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=speaker&sort=newest' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-71.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-71.yaml new file mode 100644 index 00000000..ea0839c3 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-71.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-71 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=kettle&sort=relevance + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 287 + body: '{"term":"kettle","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=kettle&sort=relevance' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-72.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-72.yaml new file mode 100644 index 00000000..e12da494 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-72.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-72 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=kettle&sort=price + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 282 + body: '{"term":"kettle","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=kettle&sort=price' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-73.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-73.yaml new file mode 100644 index 00000000..0bb2a4ac --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-73.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-73 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=kettle&sort=popularity + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 288 + body: '{"term":"kettle","sort":"popularity","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=kettle&sort=popularity' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-74.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-74.yaml new file mode 100644 index 00000000..4af07af0 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-74.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-74 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=kettle&sort=newest + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 284 + body: '{"term":"kettle","sort":"newest","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=kettle&sort=newest' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-75.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-75.yaml new file mode 100644 index 00000000..f9dac3d7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-75.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-75 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=lamp&sort=relevance + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 285 + body: '{"term":"lamp","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=lamp&sort=relevance' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-76.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-76.yaml new file mode 100644 index 00000000..38301233 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-76.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-76 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=lamp&sort=price + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 280 + body: '{"term":"lamp","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=lamp&sort=price' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-77.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-77.yaml new file mode 100644 index 00000000..ea858e5b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-77.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-77 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=lamp&sort=popularity + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 286 + body: '{"term":"lamp","sort":"popularity","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=lamp&sort=popularity' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-78.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-78.yaml new file mode 100644 index 00000000..6af8993c --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-78.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-78 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=lamp&sort=newest + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 282 + body: '{"term":"lamp","sort":"newest","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=lamp&sort=newest' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-79.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-79.yaml new file mode 100644 index 00000000..4dbb7278 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-79.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-79 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=knife&sort=relevance + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 286 + body: '{"term":"knife","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=knife&sort=relevance' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..81ffc03b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-8.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-8 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 16 + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + 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/dropwizard-dedup/keploy/test-set-0/tests/test-80.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-80.yaml new file mode 100644 index 00000000..923686cb --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-80.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-80 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=knife&sort=price + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 281 + body: '{"term":"knife","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=knife&sort=price' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-81.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-81.yaml new file mode 100644 index 00000000..2ed2132f --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-81.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-81 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=knife&sort=popularity + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 287 + body: '{"term":"knife","sort":"popularity","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=knife&sort=popularity' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-82.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-82.yaml new file mode 100644 index 00000000..0bee3f07 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-82.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-82 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/search?term=knife&sort=newest + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 283 + body: '{"term":"knife","sort":"newest","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-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/search?term=knife&sort=newest' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-83.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-83.yaml new file mode 100644 index 00000000..273a878b --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-83.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-83 +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: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 57 + body: '{"requested_file":"/reports/2026/q1.csv","download":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/reports/2026/q1.csv?download=true' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-84.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-84.yaml new file mode 100644 index 00000000..e6b96f3d --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-84.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-84 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/reports/2026/q1.csv?download=false + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 58 + body: '{"requested_file":"/reports/2026/q1.csv","download":false}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/reports/2026/q1.csv?download=false' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-85.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-85.yaml new file mode 100644 index 00000000..f7076d29 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-85.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-85 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/reports/2025/q4.csv?download=true + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 57 + body: '{"requested_file":"/reports/2025/q4.csv","download":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/reports/2025/q4.csv?download=true' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-86.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-86.yaml new file mode 100644 index 00000000..8d72168d --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-86.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-86 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/reports/2025/q4.csv?download=false + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 58 + body: '{"requested_file":"/reports/2025/q4.csv","download":false}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/reports/2025/q4.csv?download=false' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-87.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-87.yaml new file mode 100644 index 00000000..c933ddf7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-87.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-87 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/exports/users.json?download=true + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 56 + body: '{"requested_file":"/exports/users.json","download":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/exports/users.json?download=true' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-88.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-88.yaml new file mode 100644 index 00000000..d612e4bf --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-88.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-88 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/exports/users.json?download=false + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 57 + body: '{"requested_file":"/exports/users.json","download":false}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/exports/users.json?download=false' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-89.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-89.yaml new file mode 100644 index 00000000..d4e25536 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-89.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-89 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/logs/app.log?download=true + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 50 + body: '{"requested_file":"/logs/app.log","download":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/logs/app.log?download=true' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' 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..767c224a --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-9.yaml @@ -0,0 +1,43 @@ +# 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/catalog?category=books&limit=1 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 162 + body: '{"category":"books","limit":1,"items":[{"sku":"BK-1","name":"Clean Architecture","category":"books","status":"available","price":"32.50"}],"source":"warehouse-a"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/catalog?category=books&limit=1' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-90.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-90.yaml new file mode 100644 index 00000000..79f9c464 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-90.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-90 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/logs/app.log?download=false + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 51 + body: '{"requested_file":"/logs/app.log","download":false}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/logs/app.log?download=false' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-91.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-91.yaml new file mode 100644 index 00000000..25e4171f --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-91.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-91 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/media/banner.png?download=true + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 54 + body: '{"requested_file":"/media/banner.png","download":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/media/banner.png?download=true' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-92.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-92.yaml new file mode 100644 index 00000000..bd98cd6c --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-92.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-92 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/media/banner.png?download=false + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Content-Length: 55 + body: '{"requested_file":"/media/banner.png","download":false}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/media/banner.png?download=false' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-93.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-93.yaml new file mode 100644 index 00000000..20a6e90e --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-93.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-93 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/exports/orders/2026-04.csv?download=true + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 64 + body: '{"requested_file":"/exports/orders/2026-04.csv","download":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/exports/orders/2026-04.csv?download=true' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-94.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-94.yaml new file mode 100644 index 00000000..ddf854fa --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-94.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-94 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/files/exports/orders/2026-04.csv?download=false + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 65 + body: '{"requested_file":"/exports/orders/2026-04.csv","download":false}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/files/exports/orders/2026-04.csv?download=false' \ + --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-104.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-95.yaml similarity index 50% rename from java-dedup/keploy/test-set-0/tests/test-104.yaml rename to dropwizard-dedup/keploy/test-set-0/tests/test-95.yaml index 07b8464e..d2fc494a 100644 --- a/java-dedup/keploy/test-set-0/tests/test-104.yaml +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-95.yaml @@ -1,39 +1,47 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-104 +name: test-95 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/products + url: http://127.0.0.1:8080/headers header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.344257037+05:30 + Accept: '*/*' + X-Tenant: acme + X-Request-Id: req-001 + body: '' + timestamp: 2026-04-30T21:29:55Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' 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"}]' + Vary: Accept-Encoding + Content-Length: 39 + body: '{"tenant":"acme","requestId":"req-001"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.346468884+05:30 + timestamp: 2026-04-30T21:29:55Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Vary: [] + header.Content-Length: [] + created: 1777584595 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/products \ + --url http://127.0.0.1:8080/headers \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ --header 'Accept: */*' \ + --header 'X-Tenant: acme' \ + --header 'X-Request-Id: req-001' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-96.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-96.yaml new file mode 100644 index 00000000..7d0b25b7 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-96.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-96 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/headers + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + X-Tenant: acme + X-Request-Id: req-002 + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 39 + body: '{"tenant":"acme","requestId":"req-002"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: acme' \ + --header 'X-Request-Id: req-002' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-97.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-97.yaml new file mode 100644 index 00000000..a679f5d4 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-97.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-97 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/headers + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + X-Tenant: acme + X-Request-Id: req-abc + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 39 + body: '{"tenant":"acme","requestId":"req-abc"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: acme' \ + --header 'X-Request-Id: req-abc' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-98.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-98.yaml new file mode 100644 index 00000000..0d162462 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-98.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-98 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/headers + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + X-Tenant: acme + X-Request-Id: req-xyz + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 39 + body: '{"tenant":"acme","requestId":"req-xyz"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: acme' \ + --header 'X-Request-Id: req-xyz' diff --git a/dropwizard-dedup/keploy/test-set-0/tests/test-99.yaml b/dropwizard-dedup/keploy/test-set-0/tests/test-99.yaml new file mode 100644 index 00000000..af2fbf43 --- /dev/null +++ b/dropwizard-dedup/keploy/test-set-0/tests/test-99.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-99 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/headers + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + X-Tenant: acme + X-Request-Id: missing + body: '' + timestamp: 2026-04-30T21:29:55Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 21:29:55 GMT' + Content-Type: application/json + Vary: Accept-Encoding + Content-Length: 39 + body: '{"tenant":"acme","requestId":"missing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T21:29:55Z + objects: [] + assertions: + noise: + header.Date: [] + header.Vary: [] + header.Content-Length: [] + created: 1777584595 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/headers \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'X-Tenant: acme' \ + --header 'X-Request-Id: missing' diff --git a/dropwizard-dedup/pom.xml b/dropwizard-dedup/pom.xml new file mode 100644 index 00000000..c799b847 --- /dev/null +++ b/dropwizard-dedup/pom.xml @@ -0,0 +1,150 @@ + + + 4.0.0 + + io.keploy.samples + dropwizard-dedup + 1.0.0 + 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 + + + + + dropwizard-dedup + + + 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/run_random_200.sh b/dropwizard-dedup/run_random_200.sh new file mode 100755 index 00000000..d3128e1f --- /dev/null +++ b/dropwizard-dedup/run_random_200.sh @@ -0,0 +1,92 @@ +#!/usr/bin/env bash +set -Eeuo pipefail + +# Drives the dropwizard-dedup sample with a varied request mix so that +# `keploy record` ends up with ~200 testcases that exercise every +# resource path. Mirrors java-dedup/run_random_1000.sh. +# +# Usage (during a keploy record session): +# bash run_random_200.sh + +BASE_URL="${BASE_URL:-http://127.0.0.1:8080}" +TOTAL_REQUESTS="${TOTAL_REQUESTS:-200}" + +categories=(books electronics home outdoor) +skus_ok=(BK-1 BK-2 EL-1 EL-2 HM-1 HM-2 OD-1 OD-2) +skus_missing=(MISSING NOPE ZZ-9 FOO X-1) +search_terms=(phone book tent speaker kettle lamp knife) +sorts=(relevance price popularity newest) +file_paths=( + "reports/2026/q1.csv" + "reports/2025/q4.csv" + "exports/users.json" + "logs/app.log" + "media/banner.png" + "exports/orders/2026-04.csv" +) +order_ids=(ORD-1 ORD-42 ORD-100 ORD-PRIORITY ORD-X9 ORD-7) +regions=(us-east us-west eu-central ap-south) +zones=(az1 az2 az3) +tenants=(acme globex umbrella soylent) +request_ids=(req-001 req-002 req-abc req-xyz missing) +event_types=(signup login purchase logout) +customers=(alice bob carol dave) + +pick() { local -n a=$1; echo "${a[$((RANDOM % ${#a[@]}))]}"; } + +requests=() +for _ in $(seq 1 8); do requests+=("GET /healthz"); done +for c in "${categories[@]}"; do for l in 1 2 3 5; do requests+=("GET /catalog?category=$c&limit=$l"); done; done +requests+=("GET /catalog") +for sku in "${skus_ok[@]}"; do for _ in 1 2 3; do requests+=("GET /catalog/$sku"); done; done +for sku in "${skus_missing[@]}"; do requests+=("GET /catalog/$sku"); done +for t in "${search_terms[@]}"; do for s in "${sorts[@]}"; do requests+=("GET /search?term=$t&sort=$s"); done; done +for fp in "${file_paths[@]}"; do for d in true false; do requests+=("GET /files/$fp?download=$d"); done; done +for t in "${tenants[@]}"; do for r in "${request_ids[@]}"; do requests+=("HEADERS $t $r"); done; done +for r in "${regions[@]}"; do for z in "${zones[@]}"; do requests+=("GET /platform/routes/$r/$z"); done; done +for _ in 1 2 3 4; do requests+=("GET /platform/content/html"); done +for t in "${event_types[@]}"; do requests+=("EVENT $t"); done +for cust in "${customers[@]}"; do for sku in BK-1 BK-2 EL-1 EL-2; do for prio in true false; do requests+=("ORDER $cust $sku $prio"); done; done; done +for oid in "${order_ids[@]}"; do for ex in true false; do requests+=("GET /orders/$oid?expand=$ex"); done; done +for oid in "${order_ids[@]:0:4}"; do for st in shipped delivered cancelled; do requests+=("PUT /orders/$oid $st"); done; done +for oid in "${order_ids[@]:0:5}"; do requests+=("DELETE /orders/$oid"); done + +# Trim or pad to TOTAL_REQUESTS +while (( ${#requests[@]} < TOTAL_REQUESTS )); do requests+=("GET /healthz"); done +requests=("${requests[@]:0:$TOTAL_REQUESTS}") + +issued=0 +for spec in "${requests[@]}"; do + set -- $spec + case "$1" in + GET) + curl -s -o /dev/null -w "%{http_code} GET %{url_effective}\n" "$BASE_URL$2" + ;; + PUT) + curl -s -o /dev/null -w "%{http_code} PUT %{url_effective}\n" -X PUT \ + -H 'Content-Type: application/json' -d "{\"status\":\"$3\"}" "$BASE_URL$2" + ;; + DELETE) + curl -s -o /dev/null -w "%{http_code} DELETE %{url_effective}\n" -X DELETE "$BASE_URL$2" + ;; + HEADERS) + curl -s -o /dev/null -w "%{http_code} GET %{url_effective}\n" \ + -H "X-Tenant: $2" -H "X-Request-Id: $3" "$BASE_URL/headers" + ;; + EVENT) + curl -s -o /dev/null -w "%{http_code} POST %{url_effective}\n" -X POST \ + -H 'Content-Type: application/json' \ + -d "{\"type\":\"$2\",\"actor\":\"user\",\"ts\":\"2026-04-30T00:00:00Z\"}" \ + "$BASE_URL/platform/events" + ;; + ORDER) + curl -s -o /dev/null -w "%{http_code} POST %{url_effective}\n" -X POST \ + -H 'Content-Type: application/json' \ + -d "{\"customer\":\"$2\",\"sku\":\"$3\",\"quantity\":2,\"priority\":$4}" \ + "$BASE_URL/orders" + ;; + esac + issued=$((issued + 1)) +done + +echo "issued $issued requests" 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..3691d048 100644 --- a/java-dedup/Dockerfile +++ b/java-dedup/Dockerfile @@ -6,8 +6,9 @@ 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 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..3427aea3 100644 --- a/java-dedup/Dockerfile.distroless +++ b/java-dedup/Dockerfile.distroless @@ -2,9 +2,10 @@ 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 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..d3799491 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -1,25 +1,27 @@ # 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`. +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 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.6 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 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/jacocoagent.jar -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ - --dedup --language java --delay 1 \ + -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 \ --disableMockUpload --disableReportUpload @@ -35,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 @@ -54,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 @@ -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/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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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/pom.xml b/java-dedup/pom.xml index 1a1c00a6..c98da58b 100644 --- a/java-dedup/pom.xml +++ b/java-dedup/pom.xml @@ -13,13 +13,12 @@ io.keploy.samples java-dedup - 0.0.1-SNAPSHOT + 1.0.0 java-dedup Keploy Java dynamic deduplication sample 1.8 - 2.0.0 0.8.12 @@ -28,14 +27,10 @@ org.springframework.boot spring-boot-starter-web - - io.keploy - keploy-sdk - ${keploy.sdk.version} - + java-dedup org.springframework.boot @@ -81,4 +76,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/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=( "/" 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) { diff --git a/simple-java-dedup/.dockerignore b/simple-java-dedup/.dockerignore new file mode 100644 index 00000000..b482b67b --- /dev/null +++ b/simple-java-dedup/.dockerignore @@ -0,0 +1,5 @@ +** +!target/simple-java-dedup.jar +!target/classes/** +!target/keploy-sdk.jar +!target/jacocoagent.jar diff --git a/simple-java-dedup/.gitignore b/simple-java-dedup/.gitignore new file mode 100644 index 00000000..fb0c50a3 --- /dev/null +++ b/simple-java-dedup/.gitignore @@ -0,0 +1,7 @@ +target/ +test-results/ +coverage-reports/ +docker-compose-tmp.yaml +jacoco.exec +*.log +keploy-logs.txt diff --git a/simple-java-dedup/Dockerfile b/simple-java-dedup/Dockerfile new file mode 100644 index 00000000..454e5d55 --- /dev/null +++ b/simple-java-dedup/Dockerfile @@ -0,0 +1,18 @@ +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/simple-java-dedup.jar /app/app.jar +COPY --chown=10001:10001 target/classes /app/classes +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/keploy-sdk.jar", "-javaagent:/app/jacocoagent.jar=destfile=/tmp/jacoco.exec", "-jar", "/app/app.jar"] diff --git a/simple-java-dedup/README.md b/simple-java-dedup/README.md new file mode 100644 index 00000000..58ffb03d --- /dev/null +++ b/simple-java-dedup/README.md @@ -0,0 +1,50 @@ +# Simple Java Dynamic Deduplication Sample + +This is a small plain-Java HTTP service used to smoke-test Keploy Enterprise Java dynamic deduplication on Java 8 and Java 17. It uses only JDK APIs (`com.sun.net.httpserver.HttpServer`) and does not compile against the Keploy SDK. + +The checked-in fixtures exercise `/healthz`, `/grade`, `/shipping`, `/inventory`, and `/invoice`. They intentionally contain duplicate coverage paths: + +- `/grade?score=95` and `/grade?score=98` execute the same high-score branch. +- `/shipping?country=US&total=150` and `/shipping?country=US&total=175` execute the same free-shipping branch. +- `/inventory?sku=BOOK-1&quantity=3` and `/inventory?sku=BOOK-2&quantity=4` execute the same priority-reservation branch. +- `/invoice?customer=vip&subtotal=200` and `/invoice?customer=vip&subtotal=250` execute the same VIP-large discount branch. + +## Build + +```bash +mvn -B -DskipTests -Dkeploy.agent.version=2.0.6 clean package +``` + +## Native Dedup + +```bash +keploy test \ + -c "java -javaagent:target/keploy-sdk.jar -javaagent:target/jacocoagent.jar -jar target/simple-java-dedup.jar" \ + --path . --dedup --language java --delay 1 \ + --health-url "http://127.0.0.1:8080/healthz" \ + --health-poll-timeout 30s \ + --disableMockUpload --disableReportUpload + +keploy dedup --path . +``` + +## Docker Dedup + +```bash +JAVA_VERSION=17 docker compose build +keploy test \ + -c "docker compose up" \ + --container-name simple-java-dedup \ + --path . --dedup --language java --delay 10 \ + --health-url "http://127.0.0.1:8080/healthz" \ + --health-poll-timeout 30s \ + --disableMockUpload --disableReportUpload + +keploy dedup --path . +``` + +Keep the `-c` value as `docker compose up` so Keploy detects Docker Compose and mounts the shared `/tmp` socket volume used by Java dynamic deduplication. Pass `JAVA_VERSION`, `JAVA_DEDUP_IMAGE`, or port overrides in the shell environment instead of prefixing them inside the `-c` command. + +## Expected Result + +All 14 replayed fixtures should pass. Dedup should retain 10 test cases and mark 4 as duplicate, with exactly one duplicate from each intentional pair listed above. diff --git a/simple-java-dedup/dedupData.yaml b/simple-java-dedup/dedupData.yaml new file mode 100644 index 00000000..f09dee80 --- /dev/null +++ b/simple-java-dedup/dedupData.yaml @@ -0,0 +1,384 @@ +test-set-0: + test-1: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 36 + - 40 + - 41 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-2: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 47 + - 48 + - 51 + - 52 + - 53 + - 64 + - 65 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-3: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 47 + - 48 + - 51 + - 52 + - 53 + - 64 + - 65 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-4: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 47 + - 48 + - 51 + - 54 + - 55 + - 56 + - 64 + - 65 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-5: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 47 + - 48 + - 51 + - 54 + - 57 + - 61 + - 62 + - 64 + - 65 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-6: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 71 + - 72 + - 73 + - 76 + - 79 + - 80 + - 81 + - 86 + - 87 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-7: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 71 + - 72 + - 73 + - 76 + - 79 + - 80 + - 81 + - 86 + - 87 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-8: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 71 + - 72 + - 73 + - 76 + - 77 + - 78 + - 86 + - 87 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-9: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 93 + - 94 + - 95 + - 98 + - 99 + - 100 + - 108 + - 109 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-10: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 93 + - 94 + - 95 + - 98 + - 99 + - 100 + - 108 + - 109 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-11: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 93 + - 94 + - 95 + - 98 + - 101 + - 102 + - 103 + - 108 + - 109 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-12: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 115 + - 116 + - 117 + - 120 + - 121 + - 122 + - 133 + - 134 + - 135 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-13: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 115 + - 116 + - 117 + - 120 + - 121 + - 122 + - 133 + - 134 + - 135 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 + test-14: + src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java: + - 115 + - 116 + - 117 + - 120 + - 123 + - 126 + - 130 + - 131 + - 133 + - 134 + - 135 + - 139 + - 140 + - 143 + - 144 + - 145 + - 146 + - 149 + - 152 + - 156 + - 160 + - 168 + - 175 + - 176 + - 177 + - 178 + - 180 + - 182 + - 184 diff --git a/simple-java-dedup/docker-compose.yml b/simple-java-dedup/docker-compose.yml new file mode 100644 index 00000000..46bbceda --- /dev/null +++ b/simple-java-dedup/docker-compose.yml @@ -0,0 +1,10 @@ +services: + simple-java-dedup: + build: + context: . + args: + JAVA_VERSION: ${JAVA_VERSION:-8} + image: ${JAVA_DEDUP_IMAGE:-simple-java-dedup:local} + container_name: simple-java-dedup + ports: + - "${JAVA_DEDUP_HOST_PORT:-8080}:8080" diff --git a/simple-java-dedup/duplicates.yaml b/simple-java-dedup/duplicates.yaml new file mode 100644 index 00000000..012536fe --- /dev/null +++ b/simple-java-dedup/duplicates.yaml @@ -0,0 +1,5 @@ +test-set-0: +- test-13 +- test-3 +- test-7 +- test-9 diff --git a/simple-java-dedup/keploy.yml b/simple-java-dedup/keploy.yml new file mode 100644 index 00000000..a82fdb64 --- /dev/null +++ b/simple-java-dedup/keploy.yml @@ -0,0 +1,80 @@ +# 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" diff --git a/simple-java-dedup/keploy/.gitignore b/simple-java-dedup/keploy/.gitignore new file mode 100644 index 00000000..5137843b --- /dev/null +++ b/simple-java-dedup/keploy/.gitignore @@ -0,0 +1,2 @@ + +/reports/ diff --git a/java-dedup/keploy/test-set-0/tests/test-132.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-1.yaml similarity index 67% rename from java-dedup/keploy/test-set-0/tests/test-132.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-1.yaml index 37beb204..2bef440f 100644 --- a/java-dedup/keploy/test-set-0/tests/test-132.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-1.yaml @@ -1,7 +1,7 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-132 +name: test-1 spec: metadata: {} req: @@ -10,30 +10,32 @@ spec: proto_minor: 1 url: http://127.0.0.1:8080/healthz header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.658532496+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:11Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:11 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"healthy":true}' + Content-Length: 15 + body: '{"status":"ok"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.660814641+05:30 + timestamp: 2026-04-30T23:19:11Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Content-Length: [] + created: 1777591151 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: */*' \ + --header 'Accept: */*' diff --git a/simple-java-dedup/keploy/test-set-0/tests/test-10.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-10.yaml new file mode 100644 index 00000000..413e726f --- /dev/null +++ b/simple-java-dedup/keploy/test-set-0/tests/test-10.yaml @@ -0,0 +1,41 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-10 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/inventory?sku=BOOK-2&quantity=4 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:20Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 23:19:20 GMT' + Content-Type: application/json + Content-Length: 63 + body: '{"sku":"BOOK-2","quantity":4,"lane":"priority","reserved":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T23:19:20Z + objects: [] + assertions: + noise: + header.Date: [] + header.Content-Length: [] + created: 1777591160 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/inventory?sku=BOOK-2&quantity=4' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/simple-java-dedup/keploy/test-set-0/tests/test-11.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-11.yaml new file mode 100644 index 00000000..f8de11d0 --- /dev/null +++ b/simple-java-dedup/keploy/test-set-0/tests/test-11.yaml @@ -0,0 +1,41 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-11 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/inventory?sku=PEN-1&quantity=6 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:21Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 23:19:21 GMT' + Content-Type: application/json + Content-Length: 62 + body: '{"sku":"PEN-1","quantity":6,"lane":"standard","reserved":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T23:19:21Z + objects: [] + assertions: + noise: + header.Date: [] + header.Content-Length: [] + created: 1777591161 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/inventory?sku=PEN-1&quantity=6' \ + --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-176.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-12.yaml similarity index 53% rename from java-dedup/keploy/test-set-3/tests/test-176.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-12.yaml index 19964a63..20db1cf7 100644 --- a/java-dedup/keploy/test-set-3/tests/test-176.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-12.yaml @@ -1,39 +1,41 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-176 +name: test-12 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/api/v1/users + url: http://127.0.0.1:8080/invoice?customer=vip&subtotal=200 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.501932595+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:22Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:22 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"version":1,"users":["alpha","beta"]}' + Content-Length: 81 + body: '{"customer":"vip","subtotal":200,"discount":40,"total":160,"segment":"vip-large"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:51:46.503033665+05:30 + timestamp: 2026-04-30T23:19:22Z objects: [] assertions: noise: header.Date: [] - created: 1777015306 + header.Content-Length: [] + created: 1777591162 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/api/v1/users \ + --url 'http://127.0.0.1:8080/invoice?customer=vip&subtotal=200' \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --header 'Accept: */*' diff --git a/simple-java-dedup/keploy/test-set-0/tests/test-13.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-13.yaml new file mode 100644 index 00000000..bb817bd5 --- /dev/null +++ b/simple-java-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/invoice?customer=vip&subtotal=250 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:23Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 23:19:23 GMT' + Content-Type: application/json + Content-Length: 81 + body: '{"customer":"vip","subtotal":250,"discount":40,"total":210,"segment":"vip-large"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T23:19:23Z + objects: [] + assertions: + noise: + header.Date: [] + header.Content-Length: [] + created: 1777591163 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/invoice?customer=vip&subtotal=250' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/simple-java-dedup/keploy/test-set-0/tests/test-14.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-14.yaml new file mode 100644 index 00000000..94e491f5 --- /dev/null +++ b/simple-java-dedup/keploy/test-set-0/tests/test-14.yaml @@ -0,0 +1,41 @@ +# 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/invoice?customer=guest&subtotal=70 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:24Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 23:19:24 GMT' + Content-Type: application/json + Content-Length: 79 + body: '{"customer":"guest","subtotal":70,"discount":0,"total":70,"segment":"standard"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T23:19:24Z + objects: [] + assertions: + noise: + header.Date: [] + header.Content-Length: [] + created: 1777591164 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/invoice?customer=guest&subtotal=70' \ + --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-103.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-2.yaml similarity index 55% rename from java-dedup/keploy/test-set-0/tests/test-103.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-2.yaml index 4c8546b8..e24ac944 100644 --- a/java-dedup/keploy/test-set-0/tests/test-103.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-2.yaml @@ -1,39 +1,41 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-103 +name: test-2 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/noone + url: http://127.0.0.1:8080/grade?score=95 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.333013067+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:12Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:12 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"No one"}' + Content-Length: 46 + body: '{"score":95,"grade":"A","message":"excellent"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.335524182+05:30 + timestamp: 2026-04-30T23:19:12Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Content-Length: [] + created: 1777591152 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/noone \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/grade?score=95' \ --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-173.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-3.yaml similarity index 60% rename from java-dedup/keploy/test-set-3/tests/test-173.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-3.yaml index 0eda48bb..8a3efd7d 100644 --- a/java-dedup/keploy/test-set-3/tests/test-173.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-3.yaml @@ -1,39 +1,41 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-173 +name: test-3 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/everyone + url: http://127.0.0.1:8080/grade?score=98 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:51:46.480731015+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:13Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:13 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:21:45 GMT - body: '{"message":"Everyone"}' + Content-Length: 46 + body: '{"score":98,"grade":"A","message":"excellent"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:51:46.481911136+05:30 + timestamp: 2026-04-30T23:19:13Z objects: [] assertions: noise: header.Date: [] - created: 1777015306 + header.Content-Length: [] + created: 1777591153 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/everyone \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/grade?score=98' \ --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-129.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-4.yaml similarity index 60% rename from java-dedup/keploy/test-set-0/tests/test-129.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-4.yaml index 73c29037..386fe604 100644 --- a/java-dedup/keploy/test-set-0/tests/test-129.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-4.yaml @@ -1,39 +1,41 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-129 +name: test-4 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/someone + url: http://127.0.0.1:8080/grade?score=82 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.623574127+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:14Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:14 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Someone"}' + Content-Length: 42 + body: '{"score":82,"grade":"B","message":"solid"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.626422928+05:30 + timestamp: 2026-04-30T23:19:14Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Content-Length: [] + created: 1777591154 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/someone \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/grade?score=82' \ --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-102.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-5.yaml similarity index 55% rename from java-dedup/keploy/test-set-0/tests/test-102.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-5.yaml index ec18140b..dd496968 100644 --- a/java-dedup/keploy/test-set-0/tests/test-102.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-5.yaml @@ -1,39 +1,41 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-102 +name: test-5 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/anybody + url: http://127.0.0.1:8080/grade?score=42 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.322102113+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:15Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:15 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"message":"Anybody"}' + Content-Length: 42 + body: '{"score":42,"grade":"F","message":"retry"}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.324511112+05:30 + timestamp: 2026-04-30T23:19:15Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Content-Length: [] + created: 1777591155 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/anybody \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/grade?score=42' \ --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-106.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-6.yaml similarity index 53% rename from java-dedup/keploy/test-set-0/tests/test-106.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-6.yaml index 78f7a984..a3fff215 100644 --- a/java-dedup/keploy/test-set-0/tests/test-106.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-6.yaml @@ -1,39 +1,41 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-106 +name: test-6 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/proxy + url: http://127.0.0.1:8080/shipping?country=US&total=150 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.365291128+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:16Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:16 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"forwarding_to":"downstream-service"}' + Content-Length: 54 + body: '{"country":"US","total":150,"tier":"free","etaDays":2}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.367623521+05:30 + timestamp: 2026-04-30T23:19:16Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Content-Length: [] + created: 1777591156 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/proxy \ - --header 'User-Agent: curl/8.19.0' \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/shipping?country=US&total=150' \ --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/simple-java-dedup/keploy/test-set-0/tests/test-7.yaml similarity index 53% rename from java-dedup/keploy/test-set-0/tests/test-105.yaml rename to simple-java-dedup/keploy/test-set-0/tests/test-7.yaml index 07b5ecfc..8024a0a6 100644 --- a/java-dedup/keploy/test-set-0/tests/test-105.yaml +++ b/simple-java-dedup/keploy/test-set-0/tests/test-7.yaml @@ -1,39 +1,41 @@ # Generated by Keploy (3-dev) version: api.keploy.io/v1beta1 kind: Http -name: test-105 +name: test-7 spec: metadata: {} req: method: GET proto_major: 1 proto_minor: 1 - url: http://127.0.0.1:8080/info + url: http://127.0.0.1:8080/shipping?country=US&total=175 header: - Accept: '*/*' - Host: 127.0.0.1:8080 + Host: '127.0.0.1:8080' User-Agent: curl/8.19.0 - body: "" - timestamp: 2026-04-24T12:48:16.354841905+05:30 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:17Z resp: status_code: 200 header: + Date: 'Thu, 30 Apr 2026 23:19:17 GMT' Content-Type: application/json - Date: Fri, 24 Apr 2026 07:18:16 GMT - body: '{"version":"1.0.2","author":"Keploy"}' + Content-Length: 54 + body: '{"country":"US","total":175,"tier":"free","etaDays":2}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2026-04-24T12:48:16.357237035+05:30 + timestamp: 2026-04-30T23:19:17Z objects: [] assertions: noise: header.Date: [] - created: 1777015096 + header.Content-Length: [] + created: 1777591157 app_port: 8080 curl: | curl --request GET \ - --url http://127.0.0.1:8080/info \ - --header 'Accept: */*' \ + --url 'http://127.0.0.1:8080/shipping?country=US&total=175' \ --header 'Host: 127.0.0.1:8080' \ --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/simple-java-dedup/keploy/test-set-0/tests/test-8.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-8.yaml new file mode 100644 index 00000000..82a15220 --- /dev/null +++ b/simple-java-dedup/keploy/test-set-0/tests/test-8.yaml @@ -0,0 +1,41 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-8 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/shipping?country=CA&total=60 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:18Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 23:19:18 GMT' + Content-Type: application/json + Content-Length: 62 + body: '{"country":"CA","total":60,"tier":"international","etaDays":9}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T23:19:18Z + objects: [] + assertions: + noise: + header.Date: [] + header.Content-Length: [] + created: 1777591158 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/shipping?country=CA&total=60' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/simple-java-dedup/keploy/test-set-0/tests/test-9.yaml b/simple-java-dedup/keploy/test-set-0/tests/test-9.yaml new file mode 100644 index 00000000..d29ede34 --- /dev/null +++ b/simple-java-dedup/keploy/test-set-0/tests/test-9.yaml @@ -0,0 +1,41 @@ +# 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/inventory?sku=BOOK-1&quantity=3 + header: + Host: '127.0.0.1:8080' + User-Agent: curl/8.19.0 + Accept: '*/*' + body: '' + timestamp: 2026-04-30T23:19:19Z + resp: + status_code: 200 + header: + Date: 'Thu, 30 Apr 2026 23:19:19 GMT' + Content-Type: application/json + Content-Length: 63 + body: '{"sku":"BOOK-1","quantity":3,"lane":"priority","reserved":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-30T23:19:19Z + objects: [] + assertions: + noise: + header.Date: [] + header.Content-Length: [] + created: 1777591159 + app_port: 8080 +curl: | + curl --request GET \ + --url 'http://127.0.0.1:8080/inventory?sku=BOOK-1&quantity=3' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' diff --git a/simple-java-dedup/pom.xml b/simple-java-dedup/pom.xml new file mode 100644 index 00000000..3acef6df --- /dev/null +++ b/simple-java-dedup/pom.xml @@ -0,0 +1,115 @@ + + + 4.0.0 + + io.keploy.samples + simple-java-dedup + 1.0.0 + jar + + simple-java-dedup + Small plain-Java sample for Keploy dynamic deduplication smoke tests. + + + 1.8 + 1.8 + UTF-8 + 0.8.12 + + + + simple-java-dedup + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + io.keploy.samples.simplededup.SimpleJavaDedupApplication + + + + + + 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-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/simple-java-dedup/src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java b/simple-java-dedup/src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java new file mode 100644 index 00000000..72e3aa9b --- /dev/null +++ b/simple-java-dedup/src/main/java/io/keploy/samples/simplededup/SimpleJavaDedupApplication.java @@ -0,0 +1,185 @@ +package io.keploy.samples.simplededup; + +import com.sun.net.httpserver.HttpExchange; +import com.sun.net.httpserver.HttpHandler; +import com.sun.net.httpserver.HttpServer; + +import java.io.IOException; +import java.io.OutputStream; +import java.net.InetSocketAddress; +import java.net.URLDecoder; +import java.nio.charset.StandardCharsets; +import java.util.HashMap; +import java.util.Map; +import java.util.concurrent.Executors; + +public final class SimpleJavaDedupApplication { + private SimpleJavaDedupApplication() { + } + + public static void main(String[] args) throws IOException { + int port = Integer.parseInt(System.getenv().getOrDefault("PORT", "8080")); + HttpServer server = HttpServer.create(new InetSocketAddress("0.0.0.0", port), 0); + server.createContext("/healthz", new HealthHandler()); + server.createContext("/grade", new GradeHandler()); + server.createContext("/shipping", new ShippingHandler()); + server.createContext("/inventory", new InventoryHandler()); + server.createContext("/invoice", new InvoiceHandler()); + server.setExecutor(Executors.newCachedThreadPool()); + server.start(); + System.out.println("simple-java-dedup listening on " + port); + } + + private static final class HealthHandler implements HttpHandler { + @Override + public void handle(HttpExchange exchange) throws IOException { + if (!"GET".equals(exchange.getRequestMethod())) { + respond(exchange, 405, "{\"error\":\"method_not_allowed\"}"); + return; + } + respond(exchange, 200, "{\"status\":\"ok\"}"); + } + } + + private static final class GradeHandler implements HttpHandler { + @Override + public void handle(HttpExchange exchange) throws IOException { + Map query = parseQuery(exchange.getRequestURI().getRawQuery()); + int score = parseInt(query.get("score"), 0); + String grade; + String message; + if (score >= 90) { + grade = "A"; + message = "excellent"; + } else if (score >= 75) { + grade = "B"; + message = "solid"; + } else if (score >= 50) { + grade = "C"; + message = "practice"; + } else { + grade = "F"; + message = "retry"; + } + respond(exchange, 200, "{\"score\":" + score + ",\"grade\":\"" + grade + "\",\"message\":\"" + message + "\"}"); + } + } + + private static final class ShippingHandler implements HttpHandler { + @Override + public void handle(HttpExchange exchange) throws IOException { + Map query = parseQuery(exchange.getRequestURI().getRawQuery()); + String country = query.getOrDefault("country", "US"); + int total = parseInt(query.get("total"), 0); + String tier; + int etaDays; + if (!"US".equalsIgnoreCase(country)) { + tier = "international"; + etaDays = 9; + } else if (total >= 100) { + tier = "free"; + etaDays = 2; + } else { + tier = "standard"; + etaDays = 5; + } + respond(exchange, 200, "{\"country\":\"" + country.toUpperCase() + "\",\"total\":" + total + ",\"tier\":\"" + tier + "\",\"etaDays\":" + etaDays + "}"); + } + } + + private static final class InventoryHandler implements HttpHandler { + @Override + public void handle(HttpExchange exchange) throws IOException { + Map query = parseQuery(exchange.getRequestURI().getRawQuery()); + String sku = query.getOrDefault("sku", "BOOK-1").toUpperCase(); + int quantity = parseInt(query.get("quantity"), 1); + String lane; + boolean reserved; + if (sku.startsWith("BOOK") && quantity <= 5) { + lane = "priority"; + reserved = true; + } else if (sku.startsWith("PEN") && quantity <= 10) { + lane = "standard"; + reserved = true; + } else { + lane = "manual-review"; + reserved = false; + } + respond(exchange, 200, "{\"sku\":\"" + sku + "\",\"quantity\":" + quantity + ",\"lane\":\"" + lane + "\",\"reserved\":" + reserved + "}"); + } + } + + private static final class InvoiceHandler implements HttpHandler { + @Override + public void handle(HttpExchange exchange) throws IOException { + Map query = parseQuery(exchange.getRequestURI().getRawQuery()); + String customer = query.getOrDefault("customer", "guest").toLowerCase(); + int subtotal = parseInt(query.get("subtotal"), 0); + int discount; + String segment; + if ("vip".equals(customer) && subtotal >= 200) { + discount = 40; + segment = "vip-large"; + } else if ("vip".equals(customer)) { + discount = 15; + segment = "vip"; + } else if (subtotal >= 100) { + discount = 10; + segment = "standard-large"; + } else { + discount = 0; + segment = "standard"; + } + int total = subtotal - discount; + respond(exchange, 200, "{\"customer\":\"" + customer + "\",\"subtotal\":" + subtotal + ",\"discount\":" + discount + ",\"total\":" + total + ",\"segment\":\"" + segment + "\"}"); + } + } + + private static Map parseQuery(String rawQuery) { + Map query = new HashMap(); + if (rawQuery == null || rawQuery.isEmpty()) { + return query; + } + String[] pairs = rawQuery.split("&"); + for (String pair : pairs) { + int equals = pair.indexOf('='); + if (equals < 0) { + query.put(decode(pair), ""); + } else { + query.put(decode(pair.substring(0, equals)), decode(pair.substring(equals + 1))); + } + } + return query; + } + + private static int parseInt(String value, int fallback) { + if (value == null || value.trim().isEmpty()) { + return fallback; + } + try { + return Integer.parseInt(value); + } catch (NumberFormatException ignored) { + return fallback; + } + } + + private static String decode(String value) { + try { + return URLDecoder.decode(value, StandardCharsets.UTF_8.name()); + } catch (Exception ignored) { + return value; + } + } + + private static void respond(HttpExchange exchange, int status, String body) throws IOException { + byte[] bytes = body.getBytes(StandardCharsets.UTF_8); + exchange.getResponseHeaders().set("Content-Type", "application/json"); + exchange.sendResponseHeaders(status, bytes.length); + OutputStream responseBody = exchange.getResponseBody(); + try { + responseBody.write(bytes); + } finally { + responseBody.close(); + } + } +}