From d59b1ad2f04ab1b9e903571fc25e35d539044e35 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 23 Apr 2026 17:28:13 +0530 Subject: [PATCH 01/10] feat: add Java dynamic dedup sample Signed-off-by: Asish Kumar --- java-dedup/.gitignore | 6 ++ java-dedup/Dockerfile | 11 ++ java-dedup/README.md | 28 +++++ java-dedup/docker-compose.restricted.yml | 9 ++ java-dedup/docker-compose.yml | 12 +++ java-dedup/pom.xml | 80 ++++++++++++++ .../samples/javadedup/DedupController.java | 102 ++++++++++++++++++ .../javadedup/JavaDedupApplication.java | 15 +++ .../keploy/samples/javadedup/model/Item.java | 43 ++++++++ .../samples/javadedup/model/Product.java | 53 +++++++++ .../keploy/samples/javadedup/model/User.java | 31 ++++++ .../src/main/resources/application.properties | 3 + 12 files changed, 393 insertions(+) create mode 100644 java-dedup/.gitignore create mode 100644 java-dedup/Dockerfile create mode 100644 java-dedup/README.md create mode 100644 java-dedup/docker-compose.restricted.yml create mode 100644 java-dedup/docker-compose.yml create mode 100644 java-dedup/pom.xml create mode 100644 java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java create mode 100644 java-dedup/src/main/java/io/keploy/samples/javadedup/JavaDedupApplication.java create mode 100644 java-dedup/src/main/java/io/keploy/samples/javadedup/model/Item.java create mode 100644 java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java create mode 100644 java-dedup/src/main/java/io/keploy/samples/javadedup/model/User.java create mode 100644 java-dedup/src/main/resources/application.properties diff --git a/java-dedup/.gitignore b/java-dedup/.gitignore new file mode 100644 index 00000000..88ea6b8d --- /dev/null +++ b/java-dedup/.gitignore @@ -0,0 +1,6 @@ +/target/ +/keploy/ +/keploy.yml +/dedupData.yaml +/duplicates.yaml +/*.log diff --git a/java-dedup/Dockerfile b/java-dedup/Dockerfile new file mode 100644 index 00000000..e052ba20 --- /dev/null +++ b/java-dedup/Dockerfile @@ -0,0 +1,11 @@ +ARG JAVA_VERSION=8 +FROM eclipse-temurin:${JAVA_VERSION}-jre + +WORKDIR /app +COPY target/java-dedup-0.0.1-SNAPSHOT.jar /app/app.jar +COPY target/jacocoagent.jar /app/jacocoagent.jar +COPY target/classes /app/target/classes + +ENV KEPLOY_JAVA_CLASS_DIRS=/app/target/classes +EXPOSE 8080 +ENTRYPOINT ["java", "-javaagent:/app/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=/tmp/jacoco-keploy.exec,output=tcpserver", "-jar", "/app/app.jar"] diff --git a/java-dedup/README.md b/java-dedup/README.md new file mode 100644 index 00000000..acf94089 --- /dev/null +++ b/java-dedup/README.md @@ -0,0 +1,28 @@ +# Java Dynamic Deduplication Sample + +This sample is a small Spring Boot application used by Keploy CI to validate Java dynamic deduplication in native and Docker runs. + +Build the application after installing the Java SDK locally: + +```bash +mvn -B -DskipTests package +``` + +Run it natively with JaCoCo TCP server mode: + +```bash +java -javaagent:target/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=target/jacoco-keploy.exec,output=tcpserver \ + -jar target/java-dedup-0.0.1-SNAPSHOT.jar +``` + +Run it with Docker Compose after the Maven package step has created `target/java-dedup-0.0.1-SNAPSHOT.jar`: + +```bash +docker compose up --build +``` + +For a more restricted container run: + +```bash +docker compose -f docker-compose.yml -f docker-compose.restricted.yml up --build +``` diff --git a/java-dedup/docker-compose.restricted.yml b/java-dedup/docker-compose.restricted.yml new file mode 100644 index 00000000..d6f9c921 --- /dev/null +++ b/java-dedup/docker-compose.restricted.yml @@ -0,0 +1,9 @@ +services: + java-dedup: + read_only: true + tmpfs: + - /tmp + cap_drop: + - ALL + security_opt: + - no-new-privileges:true diff --git a/java-dedup/docker-compose.yml b/java-dedup/docker-compose.yml new file mode 100644 index 00000000..3cfa614f --- /dev/null +++ b/java-dedup/docker-compose.yml @@ -0,0 +1,12 @@ +services: + java-dedup: + build: + context: . + dockerfile: Dockerfile + args: + JAVA_VERSION: ${JAVA_VERSION:-8} + container_name: dedup-java + ports: + - "8080:8080" + environment: + KEPLOY_JAVA_CLASS_DIRS: /app/target/classes diff --git a/java-dedup/pom.xml b/java-dedup/pom.xml new file mode 100644 index 00000000..e0a51aff --- /dev/null +++ b/java-dedup/pom.xml @@ -0,0 +1,80 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 2.7.18 + + + + io.keploy.samples + java-dedup + 0.0.1-SNAPSHOT + java-dedup + Keploy Java dynamic deduplication sample + + + 1.8 + 0.0.1-SNAPSHOT + 0.8.12 + + + + + org.springframework.boot + spring-boot-starter-web + + + io.keploy + keploy-sdk + ${keploy.sdk.version} + + + org.jacoco + org.jacoco.agent + ${jacoco.version} + runtime + runtime + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + 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 + + + + + + + + + diff --git a/java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java b/java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java new file mode 100644 index 00000000..8f9d27f7 --- /dev/null +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java @@ -0,0 +1,102 @@ +package io.keploy.samples.javadedup; + +import io.keploy.samples.javadedup.model.Item; +import io.keploy.samples.javadedup.model.Product; +import io.keploy.samples.javadedup.model.User; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RestController; + +import java.time.Instant; +import java.util.Arrays; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + +@RestController +public class DedupController { + + @GetMapping("/") + public Map health() { + Map response = new LinkedHashMap<>(); + response.put("status", "ok"); + return response; + } + + @GetMapping("/hello/{name}") + public String hello(@PathVariable String name) { + return greeting(name); + } + + @PostMapping("/user") + public Map createUser(@RequestBody User user) { + Map response = new LinkedHashMap<>(); + response.put("message", "User created successfully"); + response.put("user", user); + return response; + } + + @PutMapping("/item/{id}") + public Map updateItem(@PathVariable String id, @RequestBody Item item) { + Map response = new LinkedHashMap<>(); + response.put("message", "Item updated successfully"); + response.put("id", id); + response.put("updatedData", item); + return response; + } + + @GetMapping("/products") + public List products() { + return Arrays.asList( + new Product("prod001", "Eco-friendly Water Bottle", "A reusable bottle.", + Arrays.asList("eco", "kitchen")), + new Product("prod002", "Wireless Charger", "Charges your devices.", + Arrays.asList("tech", "mobile")) + ); + } + + @DeleteMapping("/products/{id}") + public Map deleteProduct(@PathVariable String id) { + Map response = new LinkedHashMap<>(); + response.put("status", "product " + id + " deleted"); + return response; + } + + @GetMapping("/api/v2/users") + public Map apiUsers() { + Map first = new LinkedHashMap<>(); + first.put("name", "gamma"); + Map second = new LinkedHashMap<>(); + second.put("name", "delta"); + + Map response = new LinkedHashMap<>(); + response.put("version", 2); + response.put("users", Arrays.asList(first, second)); + return response; + } + + @GetMapping("/timestamp") + public Map timestamp() { + Map response = new LinkedHashMap<>(); + response.put("current_time", Instant.now().toString()); + return response; + } + + @GetMapping("/status/{name}") + public ResponseEntity> status(@PathVariable String name) { + Map response = new LinkedHashMap<>(); + response.put("message", greeting(name)); + response.put("service", "java-dedup"); + return new ResponseEntity<>(response, HttpStatus.OK); + } + + private String greeting(String name) { + return "Hello, " + name + "!"; + } +} 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 new file mode 100644 index 00000000..f9a4dee2 --- /dev/null +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/JavaDedupApplication.java @@ -0,0 +1,15 @@ +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) { + SpringApplication.run(JavaDedupApplication.class, args); + } +} diff --git a/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Item.java b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Item.java new file mode 100644 index 00000000..a5deb401 --- /dev/null +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Item.java @@ -0,0 +1,43 @@ +package io.keploy.samples.javadedup.model; + +import java.math.BigDecimal; + +public class Item { + + private String id; + private String name; + private BigDecimal price; + + public Item() { + } + + public Item(String id, String name, BigDecimal price) { + this.id = id; + this.name = name; + this.price = price; + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public BigDecimal getPrice() { + return price; + } + + public void setPrice(BigDecimal price) { + this.price = price; + } +} diff --git a/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java new file mode 100644 index 00000000..a2092ba0 --- /dev/null +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java @@ -0,0 +1,53 @@ +package io.keploy.samples.javadedup.model; + +import java.util.List; + +public class Product { + + private String productId; + private String name; + private String description; + private List tags; + + public Product() { + } + + public Product(String productId, String name, String description, List tags) { + this.productId = productId; + this.name = name; + this.description = description; + this.tags = tags; + } + + public String getProductId() { + return productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public List getTags() { + return tags; + } + + public void setTags(List tags) { + this.tags = tags; + } +} diff --git a/java-dedup/src/main/java/io/keploy/samples/javadedup/model/User.java b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/User.java new file mode 100644 index 00000000..9b8cc1ee --- /dev/null +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/User.java @@ -0,0 +1,31 @@ +package io.keploy.samples.javadedup.model; + +public class User { + + private String name; + private String email; + + public User() { + } + + public User(String name, String email) { + this.name = name; + this.email = email; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } +} diff --git a/java-dedup/src/main/resources/application.properties b/java-dedup/src/main/resources/application.properties new file mode 100644 index 00000000..4f86c24b --- /dev/null +++ b/java-dedup/src/main/resources/application.properties @@ -0,0 +1,3 @@ +server.port=${PORT:8080} +spring.main.banner-mode=off +spring.jackson.serialization.write-dates-as-timestamps=false From 38891bbe89e65ab4b9f9a9526abc4c48a4ebef34 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 23 Apr 2026 17:47:04 +0530 Subject: [PATCH 02/10] docs: add Java dedup replay command Signed-off-by: Asish Kumar --- java-dedup/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/java-dedup/README.md b/java-dedup/README.md index acf94089..c1c725a6 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -15,6 +15,14 @@ java -javaagent:target/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=tar -jar target/java-dedup-0.0.1-SNAPSHOT.jar ``` +When replaying with dynamic deduplication, pass the JaCoCo port through Keploy so the SDK can talk to the local JaCoCo TCP server: + +```bash +keploy test \ + -c "java -javaagent:target/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=target/jacoco-keploy.exec,output=tcpserver -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ + --dedup --pass-through-ports 36320 +``` + Run it with Docker Compose after the Maven package step has created `target/java-dedup-0.0.1-SNAPSHOT.jar`: ```bash From 86369f90be1a4fd78fdb7bb50f4b2e64699b3ec7 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 23 Apr 2026 18:07:21 +0530 Subject: [PATCH 03/10] feat: mirror Go dedup traffic sample Signed-off-by: Asish Kumar --- java-dedup/README.md | 8 +- java-dedup/run_random_1000.sh | 82 +++++ .../samples/javadedup/DedupController.java | 302 +++++++++++++++--- .../samples/javadedup/model/Product.java | 3 + 4 files changed, 352 insertions(+), 43 deletions(-) create mode 100755 java-dedup/run_random_1000.sh diff --git a/java-dedup/README.md b/java-dedup/README.md index c1c725a6..424383b8 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -1,6 +1,6 @@ # Java Dynamic Deduplication Sample -This sample is a small Spring Boot application used by Keploy CI to validate Java dynamic deduplication in native and Docker runs. +This sample is a Spring Boot application used by Keploy CI to validate Java dynamic deduplication in native and Docker runs. It mirrors the Go dedup sample by exposing a broad set of endpoints and driving 1000 randomized 200-response requests during record. Build the application after installing the Java SDK locally: @@ -15,6 +15,12 @@ java -javaagent:target/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=tar -jar target/java-dedup-0.0.1-SNAPSHOT.jar ``` +Record high-volume traffic against the running app: + +```bash +./run_random_1000.sh +``` + When replaying with dynamic deduplication, pass the JaCoCo port through Keploy so the SDK can talk to the local JaCoCo TCP server: ```bash diff --git a/java-dedup/run_random_1000.sh b/java-dedup/run_random_1000.sh new file mode 100755 index 00000000..54896624 --- /dev/null +++ b/java-dedup/run_random_1000.sh @@ -0,0 +1,82 @@ +#!/usr/bin/env bash +set -Eeuo pipefail + +BASE_URL="${BASE_URL:-http://localhost:8080}" +TOTAL_REQUESTS="${TOTAL_REQUESTS:-1000}" + +endpoints=( + "/" + "/someone" + "/noone" + "/everyone" + "/status" + "/everything" + "/somewhere" + "/api/v1/users" + "/api/v2/data" + "/somebody" + "/ping" + "/healthz" + "/info" + "/anything" + "/nothing" + "/nowhere" + "/products" + "/search?q=test&limit=5" + "/items" + "/api/v1/data" + "/api/v2/users" + "/system/logs" + "/system/metrics" + "/proxy" + "/anybody" + "/everybody" + "/user/123/profile" +) + +echo "--- Running randomized Java dedup endpoints ${TOTAL_REQUESTS} times ---" +echo "Base URL: ${BASE_URL}" +echo "Endpoint count: ${#endpoints[@]}" + +success_count=0 +error_count=0 +start_time="$(date +%s)" + +for i in $(seq 1 "${TOTAL_REQUESTS}"); do + random_index=$((RANDOM % ${#endpoints[@]})) + selected_endpoint="${endpoints[$random_index]}" + status_code="$(curl -X GET "${BASE_URL}${selected_endpoint}" -s -o /dev/null -w "%{http_code}")" + + if [[ "${status_code}" == "200" ]]; then + success_count=$((success_count + 1)) + else + error_count=$((error_count + 1)) + echo "ERROR: request ${i} failed with status ${status_code} for endpoint ${selected_endpoint}" + fi + + if (( i % 100 == 0 )); then + echo "Completed ${i} requests... (Success: ${success_count}, Errors: ${error_count})" + fi +done + +end_time="$(date +%s)" +duration=$((end_time - start_time)) +if (( duration == 0 )); then + requests_per_second="${TOTAL_REQUESTS}+" +else + requests_per_second=$((TOTAL_REQUESTS / duration)) +fi + +echo +echo "--- Performance Summary ---" +echo "Total requests: ${TOTAL_REQUESTS}" +echo "Successful requests (200): ${success_count}" +echo "Failed requests: ${error_count}" +echo "Success rate: $(((success_count * 100) / TOTAL_REQUESTS))%" +echo "Total time: ${duration}s" +echo "Requests per second: ${requests_per_second}" +echo "--- Complete ---" + +if (( error_count > 0 )); then + exit 1 +fi diff --git a/java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java b/java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java index 8f9d27f7..aa1baee4 100644 --- a/java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/DedupController.java @@ -3,30 +3,38 @@ import io.keploy.samples.javadedup.model.Item; import io.keploy.samples.javadedup.model.Product; import io.keploy.samples.javadedup.model.User; +import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PatchMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; +import javax.servlet.http.HttpServletRequest; +import java.math.BigDecimal; +import java.net.URI; import java.time.Instant; import java.util.Arrays; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; +import java.util.Random; @RestController public class DedupController { @GetMapping("/") - public Map health() { - Map response = new LinkedHashMap<>(); - response.put("status", "ok"); - return response; + public Map root() { + return response("status", "ok"); } @GetMapping("/hello/{name}") @@ -34,69 +42,279 @@ public String hello(@PathVariable String name) { return greeting(name); } + @GetMapping("/random") + public Map random() { + return response("value", new Random(42).nextInt(2)); + } + + @GetMapping("/welcome") + public Map welcome(@RequestParam(defaultValue = "Guest") String name) { + return response("message", "Welcome, " + name); + } + @PostMapping("/user") public Map createUser(@RequestBody User user) { - Map response = new LinkedHashMap<>(); - response.put("message", "User created successfully"); - response.put("user", user); - return response; + return response("message", "User created successfully", "user", user); + } + + @GetMapping("/items") + public List items() { + return itemList(); } @PutMapping("/item/{id}") public Map updateItem(@PathVariable String id, @RequestBody Item item) { - Map response = new LinkedHashMap<>(); - response.put("message", "Item updated successfully"); - response.put("id", id); - response.put("updatedData", item); - return response; + return response("message", "Item updated successfully", "id", id, "updatedData", item); + } + + @DeleteMapping("/item/{id}") + public Map deleteItem(@PathVariable String id) { + return response("message", "Item deleted successfully", "id", id); + } + + @GetMapping({ + "/someone", "/something", "/anyone", "/noone", "/nobody", "/everyone", + "/anything", "/everything", "/nothing", "/somewhere", "/nowhere", + "/anybody", "/everybody", "/somebody" + }) + public Map simpleMessage(HttpServletRequest request) { + return response("message", messageForPath(request.getRequestURI())); + } + + @GetMapping("/ping") + public String ping() { + return "pong"; + } + + @GetMapping("/status") + public Map status() { + return response("service", "user-api", "status", "active"); + } + + @GetMapping("/status/{name}") + public Map namedStatus(@PathVariable String name) { + return response("message", greeting(name), "service", "java-dedup"); + } + + @GetMapping("/healthz") + public Map healthz() { + return response("healthy", true); + } + + @GetMapping("/info") + public Map info() { + return response("version", "1.0.2", "author", "Keploy"); + } + + @GetMapping("/timestamp") + public Map timestamp() { + return response("current_time", Instant.now().toString()); } @GetMapping("/products") public List products() { - return Arrays.asList( - new Product("prod001", "Eco-friendly Water Bottle", "A reusable bottle.", - Arrays.asList("eco", "kitchen")), - new Product("prod002", "Wireless Charger", "Charges your devices.", - Arrays.asList("tech", "mobile")) - ); + return productList(); + } + + @PostMapping("/products") + public ResponseEntity> createProduct(@RequestBody Product product) { + return new ResponseEntity<>(response("status", "product created", "data", product), HttpStatus.CREATED); + } + + @GetMapping("/products/{id}") + public Map product(@PathVariable String id) { + return response("product_id", id, "name", "Sample Product", "price", new BigDecimal("99.99")); + } + + @PutMapping("/products/{id}") + public Map updateProduct(@PathVariable String id, @RequestBody Product product) { + return response("status", "product " + id + " updated", "data", product); } @DeleteMapping("/products/{id}") public Map deleteProduct(@PathVariable String id) { - Map response = new LinkedHashMap<>(); - response.put("status", "product " + id + " deleted"); - return response; + return response("status", "product " + id + " deleted"); + } + + @PatchMapping("/products/{id}") + public Map patchProduct(@PathVariable String id, @RequestBody Map update) { + return response("status", "product " + id + " partially updated", "patch", update); + } + + @GetMapping("/users/{userId}/posts/{postId}") + public Map post(@PathVariable String userId, @PathVariable String postId) { + return response("user", userId, "post", postId, "content", "This is a sample post."); + } + + @GetMapping("/search") + public Map search(@RequestParam(defaultValue = "") String q, + @RequestParam(defaultValue = "10") String limit) { + return response("searching_for", q, "limit", limit); + } + + @GetMapping("/files/**") + public Map file(HttpServletRequest request) { + String prefix = request.getContextPath() + "/files"; + String requestedPath = request.getRequestURI().substring(prefix.length()); + return response("requested_file", requestedPath); + } + + @GetMapping(value = "/html", produces = MediaType.TEXT_HTML_VALUE) + public String html() { + return "

This is HTML

"; + } + + @GetMapping(value = "/xml", produces = MediaType.APPLICATION_XML_VALUE) + public String xml() { + return "johnactive"; + } + + @GetMapping("/redirect") + public ResponseEntity redirect() { + HttpHeaders headers = new HttpHeaders(); + headers.setLocation(URI.create("http://google.com")); + return new ResponseEntity<>(headers, HttpStatus.MOVED_PERMANENTLY); + } + + @PatchMapping("/config") + public Map config(@RequestBody Map update) { + return response("status", "config updated", "update", update); + } + + @RequestMapping(value = "/resource", method = RequestMethod.OPTIONS) + public ResponseEntity resourceOptions() { + HttpHeaders headers = new HttpHeaders(); + headers.add(HttpHeaders.ALLOW, "GET, POST, OPTIONS"); + return new ResponseEntity<>(headers, HttpStatus.OK); + } + + @GetMapping("/api/v1/data") + public Map apiV1Data() { + return response("version", 1, "data", "legacy data"); + } + + @GetMapping("/api/v1/users") + public Map apiV1Users() { + return response("version", 1, "users", Arrays.asList("alpha", "beta")); + } + + @PostMapping("/api/v1/users") + public ResponseEntity> createApiV1User() { + return new ResponseEntity<>(response("version", 1, "status", "user created"), HttpStatus.CREATED); + } + + @GetMapping("/api/v2/data") + public Map apiV2Data() { + return response("version", 2, "payload", "new data format"); } @GetMapping("/api/v2/users") - public Map apiUsers() { - Map first = new LinkedHashMap<>(); - first.put("name", "gamma"); - Map second = new LinkedHashMap<>(); - second.put("name", "delta"); + public Map apiV2Users() { + Map first = response("name", "gamma"); + Map second = response("name", "delta"); + return response("version", 2, "users", Arrays.asList(first, second)); + } - Map response = new LinkedHashMap<>(); - response.put("version", 2); - response.put("users", Arrays.asList(first, second)); - return response; + @PostMapping("/api/v2/users") + public ResponseEntity> createApiV2User() { + return new ResponseEntity<>(response("version", 2, "message", "user successfully registered"), HttpStatus.CREATED); } - @GetMapping("/timestamp") - public Map timestamp() { - Map response = new LinkedHashMap<>(); - response.put("current_time", Instant.now().toString()); - return response; + @GetMapping("/system/logs") + public Map logs() { + return response("log_level", "INFO", "entries", 1024); } - @GetMapping("/status/{name}") - public ResponseEntity> status(@PathVariable String name) { - Map response = new LinkedHashMap<>(); - response.put("message", greeting(name)); - response.put("service", "java-dedup"); - return new ResponseEntity<>(response, HttpStatus.OK); + @GetMapping("/system/metrics") + public Map metrics() { + return response("cpu_usage", "15%", "memory", "256MB"); + } + + @PostMapping("/system/reboot") + public ResponseEntity> reboot() { + return new ResponseEntity<>(response("message", "System reboot initiated"), HttpStatus.ACCEPTED); + } + + @GetMapping("/proxy") + public Map proxy() { + return response("forwarding_to", "downstream-service"); + } + + @GetMapping("/legacy") + public ResponseEntity> legacy() { + return new ResponseEntity<>(response("error", "This endpoint is deprecated"), HttpStatus.GONE); + } + + @GetMapping("/secure/data") + public ResponseEntity> secureData() { + return new ResponseEntity<>(response("error", "Authentication required"), HttpStatus.UNAUTHORIZED); + } + + @GetMapping("/admin/panel") + public ResponseEntity> adminPanel() { + return new ResponseEntity<>(response("error", "Access denied"), HttpStatus.FORBIDDEN); + } + + @GetMapping("/long-poll") + public Map longPoll() throws InterruptedException { + Thread.sleep(1000L); + return response("status", "task complete"); + } + + @PutMapping("/user/{id}/password") + public Map password(@PathVariable String id) { + return response("message", "password for user " + id + " updated"); + } + + @GetMapping("/user/{id}/profile") + public Map profile(@PathVariable String id) { + return response("user_id", id, "profile", "..."); + } + + @PostMapping("/events") + public ResponseEntity> events() { + return new ResponseEntity<>(response("status", "event received"), HttpStatus.ACCEPTED); + } + + @GetMapping("/session/info") + public Map sessionInfo() { + return response("session_id", "xyz-123", "active", true); } private String greeting(String name) { return "Hello, " + name + "!"; } + + private List itemList() { + return Arrays.asList( + new Item("item1", "Laptop", new BigDecimal("1200.00")), + new Item("item2", "Mouse", new BigDecimal("25.50")), + new Item("item3", "Keyboard", new BigDecimal("75.00")) + ); + } + + private List productList() { + return Arrays.asList( + new Product("prod001", "Eco-friendly Water Bottle", "A reusable bottle.", + Arrays.asList("eco", "kitchen")), + new Product("prod002", "Wireless Charger", "Charges your devices.", + Arrays.asList("tech", "mobile")) + ); + } + + private String messageForPath(String path) { + String value = path.substring(path.lastIndexOf('/') + 1); + if ("noone".equals(value)) { + return "No one"; + } + return value.substring(0, 1).toUpperCase() + value.substring(1); + } + + private Map response(Object... entries) { + Map response = new LinkedHashMap<>(); + for (int i = 0; i < entries.length; i += 2) { + response.put(String.valueOf(entries[i]), entries[i + 1]); + } + return response; + } } diff --git a/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java index a2092ba0..f2e4efde 100644 --- a/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java +++ b/java-dedup/src/main/java/io/keploy/samples/javadedup/model/Product.java @@ -1,9 +1,12 @@ package io.keploy.samples.javadedup.model; +import com.fasterxml.jackson.annotation.JsonProperty; + import java.util.List; public class Product { + @JsonProperty("product_id") private String productId; private String name; private String description; From 587c4ebfba5933c0a00321a29f220f26d4f33776 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 23 Apr 2026 18:25:14 +0530 Subject: [PATCH 04/10] ci: harden Java dedup Docker sample Signed-off-by: Asish Kumar --- java-dedup/Dockerfile | 11 ++++++++--- java-dedup/README.md | 2 +- java-dedup/docker-compose.restricted.yml | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/java-dedup/Dockerfile b/java-dedup/Dockerfile index e052ba20..c7d357c7 100644 --- a/java-dedup/Dockerfile +++ b/java-dedup/Dockerfile @@ -2,10 +2,15 @@ ARG JAVA_VERSION=8 FROM eclipse-temurin:${JAVA_VERSION}-jre WORKDIR /app -COPY target/java-dedup-0.0.1-SNAPSHOT.jar /app/app.jar -COPY target/jacocoagent.jar /app/jacocoagent.jar -COPY target/classes /app/target/classes + +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/jacocoagent.jar /app/jacocoagent.jar +COPY --chown=10001:10001 target/classes /app/target/classes ENV KEPLOY_JAVA_CLASS_DIRS=/app/target/classes EXPOSE 8080 +USER 10001:10001 ENTRYPOINT ["java", "-javaagent:/app/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=/tmp/jacoco-keploy.exec,output=tcpserver", "-jar", "/app/app.jar"] diff --git a/java-dedup/README.md b/java-dedup/README.md index 424383b8..c7a6976b 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -35,7 +35,7 @@ Run it with Docker Compose after the Maven package step has created `target/java docker compose up --build ``` -For a more restricted container run: +The image runs as a non-root user. For a more restricted container run with a read-only root filesystem, dropped capabilities, `no-new-privileges`, and a writable `/tmp` tmpfs: ```bash docker compose -f docker-compose.yml -f docker-compose.restricted.yml up --build diff --git a/java-dedup/docker-compose.restricted.yml b/java-dedup/docker-compose.restricted.yml index d6f9c921..245b4b1f 100644 --- a/java-dedup/docker-compose.restricted.yml +++ b/java-dedup/docker-compose.restricted.yml @@ -2,7 +2,7 @@ services: java-dedup: read_only: true tmpfs: - - /tmp + - /tmp:rw,nosuid,nodev,mode=1777 cap_drop: - ALL security_opt: From 6b3b2cb45f486db9aadcaa8006fc64a9cc84960d Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 23 Apr 2026 18:46:03 +0530 Subject: [PATCH 05/10] fix: share Java dedup sockets in restricted Docker Signed-off-by: Asish Kumar --- java-dedup/README.md | 2 +- java-dedup/docker-compose.restricted.yml | 4 ++-- java-dedup/docker-compose.yml | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/java-dedup/README.md b/java-dedup/README.md index c7a6976b..e793e479 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -35,7 +35,7 @@ Run it with Docker Compose after the Maven package step has created `target/java docker compose up --build ``` -The image runs as a non-root user. For a more restricted container run with a read-only root filesystem, dropped capabilities, `no-new-privileges`, and a writable `/tmp` tmpfs: +The image runs as a non-root user. For a more restricted container run with a read-only root filesystem, dropped capabilities, `no-new-privileges`, and a writable shared `/tmp` volume for Keploy's Unix sockets: ```bash docker compose -f docker-compose.yml -f docker-compose.restricted.yml up --build diff --git a/java-dedup/docker-compose.restricted.yml b/java-dedup/docker-compose.restricted.yml index 245b4b1f..2cba6519 100644 --- a/java-dedup/docker-compose.restricted.yml +++ b/java-dedup/docker-compose.restricted.yml @@ -1,8 +1,8 @@ services: java-dedup: read_only: true - tmpfs: - - /tmp:rw,nosuid,nodev,mode=1777 + volumes: + - keploy-sockets-vol:/tmp cap_drop: - ALL security_opt: diff --git a/java-dedup/docker-compose.yml b/java-dedup/docker-compose.yml index 3cfa614f..2fbc7505 100644 --- a/java-dedup/docker-compose.yml +++ b/java-dedup/docker-compose.yml @@ -10,3 +10,6 @@ services: - "8080:8080" environment: KEPLOY_JAVA_CLASS_DIRS: /app/target/classes + +volumes: + keploy-sockets-vol: From 5afc63918633e413d1375bf4c1312f71492deb46 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 23 Apr 2026 19:15:56 +0530 Subject: [PATCH 06/10] fix: bind Java dedup socket directory in Docker Signed-off-by: Asish Kumar --- java-dedup/README.md | 2 +- java-dedup/docker-compose.restricted.yml | 2 -- java-dedup/docker-compose.yml | 7 ++++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/java-dedup/README.md b/java-dedup/README.md index e793e479..5608b54d 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -35,7 +35,7 @@ Run it with Docker Compose after the Maven package step has created `target/java docker compose up --build ``` -The image runs as a non-root user. For a more restricted container run with a read-only root filesystem, dropped capabilities, `no-new-privileges`, and a writable shared `/tmp` volume for Keploy's Unix sockets: +The Compose app bind-mounts host `/tmp` into the container so Keploy and the Java SDK use the same Unix socket paths for `/tmp/coverage_control.sock` and `/tmp/coverage_data.sock`. The image runs as a non-root user. For a more restricted container run with a read-only root filesystem, dropped capabilities, `no-new-privileges`, and writable host `/tmp` bind-mounted for Keploy's Unix sockets: ```bash docker compose -f docker-compose.yml -f docker-compose.restricted.yml up --build diff --git a/java-dedup/docker-compose.restricted.yml b/java-dedup/docker-compose.restricted.yml index 2cba6519..d97df717 100644 --- a/java-dedup/docker-compose.restricted.yml +++ b/java-dedup/docker-compose.restricted.yml @@ -1,8 +1,6 @@ services: java-dedup: read_only: true - volumes: - - keploy-sockets-vol:/tmp cap_drop: - ALL security_opt: diff --git a/java-dedup/docker-compose.yml b/java-dedup/docker-compose.yml index 2fbc7505..97bd4b84 100644 --- a/java-dedup/docker-compose.yml +++ b/java-dedup/docker-compose.yml @@ -10,6 +10,7 @@ services: - "8080:8080" environment: KEPLOY_JAVA_CLASS_DIRS: /app/target/classes - -volumes: - keploy-sockets-vol: + volumes: + - type: bind + source: /tmp + target: /tmp From 1431e3c50a9a9b0eeb47b5c26d187ab67064ae9e Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Fri, 24 Apr 2026 13:11:34 +0530 Subject: [PATCH 07/10] test: add Java dedup replay fixtures Signed-off-by: Asish Kumar --- README.md | 1 + java-dedup/.gitignore | 3 +- java-dedup/README.md | 6 +- java-dedup/keploy.yml | 104 ++++++++++++++++++ java-dedup/keploy/.gitignore | 2 + .../keploy/test-set-0/tests/test-10.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-100.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-101.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-102.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-103.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-104.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-105.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-106.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-107.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-108.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-109.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-11.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-110.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-111.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-112.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-113.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-114.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-115.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-116.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-117.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-118.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-119.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-12.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-120.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-121.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-122.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-123.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-124.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-125.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-126.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-127.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-128.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-129.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-13.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-130.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-131.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-132.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-133.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-134.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-135.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-136.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-137.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-138.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-139.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-14.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-140.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-141.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-142.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-143.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-144.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-145.yaml | 42 +++++++ .../keploy/test-set-0/tests/test-146.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-147.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-148.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-149.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-15.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-150.yaml | 42 +++++++ .../keploy/test-set-0/tests/test-151.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-152.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-153.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-154.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-155.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-156.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-157.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-158.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-159.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-16.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-160.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-161.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-162.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-163.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-164.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-165.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-166.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-167.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-168.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-169.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-17.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-170.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-171.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-172.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-173.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-174.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-175.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-176.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-177.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-178.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-179.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-18.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-180.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-181.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-182.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-183.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-184.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-185.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-186.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-187.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-188.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-189.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-19.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-190.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-191.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-192.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-193.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-194.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-195.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-196.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-197.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-198.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-199.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-2.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-20.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-200.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-201.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-202.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-203.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-204.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-205.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-206.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-207.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-208.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-209.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-21.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-210.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-211.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-212.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-213.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-214.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-215.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-216.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-217.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-218.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-219.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-22.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-220.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-221.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-222.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-223.yaml | 42 +++++++ .../keploy/test-set-0/tests/test-224.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-225.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-226.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-227.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-228.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-229.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-23.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-230.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-231.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-232.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-233.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-234.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-235.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-236.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-237.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-238.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-239.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-24.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-240.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-241.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-242.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-243.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-244.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-245.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-246.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-247.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-248.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-249.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-25.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-250.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-251.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-26.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-27.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-28.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-29.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-3.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-30.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-31.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-32.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-33.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-34.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-35.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-36.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-37.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-38.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-39.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-4.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-40.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-41.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-42.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-43.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-44.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-45.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-46.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-47.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-48.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-49.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-5.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-50.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-51.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-52.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-53.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-54.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-55.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-56.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-57.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-58.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-59.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-6.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-60.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-61.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-62.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-63.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-64.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-65.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-66.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-67.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-68.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-69.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-7.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-70.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-71.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-72.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-73.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-74.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-75.yaml | 40 +++++++ .../keploy/test-set-0/tests/test-76.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-77.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-78.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-79.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-8.yaml | 42 +++++++ .../keploy/test-set-0/tests/test-80.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-81.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-82.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-83.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-84.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-85.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-86.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-87.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-88.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-89.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-9.yaml | 42 +++++++ .../keploy/test-set-0/tests/test-90.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-91.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-92.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-93.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-94.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-95.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-96.yaml | 42 +++++++ .../keploy/test-set-0/tests/test-97.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-98.yaml | 39 +++++++ .../keploy/test-set-0/tests/test-99.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-10.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-100.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-101.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-102.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-103.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-104.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-105.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-106.yaml | 40 +++++++ .../keploy/test-set-1/tests/test-107.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-108.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-109.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-11.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-110.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-111.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-112.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-113.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-114.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-115.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-116.yaml | 42 +++++++ .../keploy/test-set-1/tests/test-117.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-118.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-119.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-12.yaml | 42 +++++++ .../keploy/test-set-1/tests/test-120.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-121.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-122.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-123.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-124.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-125.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-126.yaml | 40 +++++++ .../keploy/test-set-1/tests/test-127.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-128.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-129.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-13.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-130.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-131.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-132.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-133.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-134.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-135.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-136.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-137.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-138.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-139.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-14.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-140.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-141.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-142.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-143.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-144.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-145.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-146.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-147.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-148.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-149.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-15.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-150.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-151.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-152.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-153.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-154.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-155.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-156.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-157.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-158.yaml | 40 +++++++ .../keploy/test-set-1/tests/test-159.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-16.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-160.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-161.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-162.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-163.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-164.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-165.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-166.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-167.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-168.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-169.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-17.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-170.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-171.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-172.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-173.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-174.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-175.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-176.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-177.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-178.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-179.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-18.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-180.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-181.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-182.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-183.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-184.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-185.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-186.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-187.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-188.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-189.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-19.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-190.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-191.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-192.yaml | 40 +++++++ .../keploy/test-set-1/tests/test-193.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-194.yaml | 40 +++++++ .../keploy/test-set-1/tests/test-195.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-196.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-197.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-198.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-199.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-2.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-20.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-200.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-201.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-202.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-203.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-204.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-205.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-206.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-207.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-208.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-209.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-21.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-210.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-211.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-212.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-213.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-214.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-215.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-216.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-217.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-218.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-219.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-22.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-220.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-221.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-222.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-223.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-224.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-225.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-226.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-227.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-228.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-229.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-23.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-230.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-231.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-232.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-233.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-234.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-235.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-236.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-237.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-238.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-239.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-24.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-240.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-241.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-242.yaml | 40 +++++++ .../keploy/test-set-1/tests/test-243.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-244.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-245.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-246.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-247.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-248.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-249.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-25.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-250.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-251.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-26.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-27.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-28.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-29.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-3.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-30.yaml | 42 +++++++ .../keploy/test-set-1/tests/test-31.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-32.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-33.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-34.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-35.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-36.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-37.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-38.yaml | 42 +++++++ .../keploy/test-set-1/tests/test-39.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-4.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-40.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-41.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-42.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-43.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-44.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-45.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-46.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-47.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-48.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-49.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-5.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-50.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-51.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-52.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-53.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-54.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-55.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-56.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-57.yaml | 40 +++++++ .../keploy/test-set-1/tests/test-58.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-59.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-6.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-60.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-61.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-62.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-63.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-64.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-65.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-66.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-67.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-68.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-69.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-7.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-70.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-71.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-72.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-73.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-74.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-75.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-76.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-77.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-78.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-79.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-8.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-80.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-81.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-82.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-83.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-84.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-85.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-86.yaml | 42 +++++++ .../keploy/test-set-1/tests/test-87.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-88.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-89.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-9.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-90.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-91.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-92.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-93.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-94.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-95.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-96.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-97.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-98.yaml | 39 +++++++ .../keploy/test-set-1/tests/test-99.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-10.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-100.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-101.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-102.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-103.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-104.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-105.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-106.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-107.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-108.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-109.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-11.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-110.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-111.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-112.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-113.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-114.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-115.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-116.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-117.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-118.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-119.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-12.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-120.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-121.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-122.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-123.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-124.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-125.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-126.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-127.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-128.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-129.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-13.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-130.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-131.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-132.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-133.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-134.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-135.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-136.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-137.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-138.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-139.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-14.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-140.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-141.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-142.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-143.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-144.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-145.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-146.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-147.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-148.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-149.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-15.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-150.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-151.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-152.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-153.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-154.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-155.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-156.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-157.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-158.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-159.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-16.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-160.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-161.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-162.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-163.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-164.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-165.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-166.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-167.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-168.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-169.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-17.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-170.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-171.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-172.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-173.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-174.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-175.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-176.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-177.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-178.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-179.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-18.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-180.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-181.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-182.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-183.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-184.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-185.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-186.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-187.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-188.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-189.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-19.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-190.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-191.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-192.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-193.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-194.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-195.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-196.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-197.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-198.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-199.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-2.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-20.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-200.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-201.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-202.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-203.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-204.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-205.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-206.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-207.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-208.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-209.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-21.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-210.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-211.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-212.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-213.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-214.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-215.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-216.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-217.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-218.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-219.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-22.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-220.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-221.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-222.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-223.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-224.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-225.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-226.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-227.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-228.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-229.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-23.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-230.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-231.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-232.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-233.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-234.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-235.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-236.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-237.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-238.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-239.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-24.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-240.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-241.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-242.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-243.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-244.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-245.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-246.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-247.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-248.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-249.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-25.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-250.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-251.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-26.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-27.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-28.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-29.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-3.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-30.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-31.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-32.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-33.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-34.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-35.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-36.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-37.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-38.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-39.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-4.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-40.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-41.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-42.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-43.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-44.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-45.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-46.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-47.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-48.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-49.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-5.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-50.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-51.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-52.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-53.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-54.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-55.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-56.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-57.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-58.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-59.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-6.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-60.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-61.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-62.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-63.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-64.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-65.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-66.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-67.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-68.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-69.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-7.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-70.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-71.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-72.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-73.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-74.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-75.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-76.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-77.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-78.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-79.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-8.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-80.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-81.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-82.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-83.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-84.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-85.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-86.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-87.yaml | 40 +++++++ .../keploy/test-set-2/tests/test-88.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-89.yaml | 42 +++++++ .../keploy/test-set-2/tests/test-9.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-90.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-91.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-92.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-93.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-94.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-95.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-96.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-97.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-98.yaml | 39 +++++++ .../keploy/test-set-2/tests/test-99.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-10.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-100.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-101.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-102.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-103.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-104.yaml | 42 +++++++ .../keploy/test-set-3/tests/test-105.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-106.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-107.yaml | 42 +++++++ .../keploy/test-set-3/tests/test-108.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-109.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-11.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-110.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-111.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-112.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-113.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-114.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-115.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-116.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-117.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-118.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-119.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-12.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-120.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-121.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-122.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-123.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-124.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-125.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-126.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-127.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-128.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-129.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-13.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-130.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-131.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-132.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-133.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-134.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-135.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-136.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-137.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-138.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-139.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-14.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-140.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-141.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-142.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-143.yaml | 42 +++++++ .../keploy/test-set-3/tests/test-144.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-145.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-146.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-147.yaml | 42 +++++++ .../keploy/test-set-3/tests/test-148.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-149.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-15.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-150.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-151.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-152.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-153.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-154.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-155.yaml | 42 +++++++ .../keploy/test-set-3/tests/test-156.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-157.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-158.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-159.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-16.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-160.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-161.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-162.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-163.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-164.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-165.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-166.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-167.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-168.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-169.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-17.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-170.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-171.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-172.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-173.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-174.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-175.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-176.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-177.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-178.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-179.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-18.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-180.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-181.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-182.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-183.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-184.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-185.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-186.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-187.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-188.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-189.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-19.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-190.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-191.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-192.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-193.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-194.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-195.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-196.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-197.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-198.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-199.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-2.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-20.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-200.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-201.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-202.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-203.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-204.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-205.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-206.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-207.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-208.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-209.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-21.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-210.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-211.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-212.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-213.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-214.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-215.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-216.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-217.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-218.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-219.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-22.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-220.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-221.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-222.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-223.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-224.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-225.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-226.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-227.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-228.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-229.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-23.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-230.yaml | 42 +++++++ .../keploy/test-set-3/tests/test-231.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-232.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-233.yaml | 42 +++++++ .../keploy/test-set-3/tests/test-234.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-235.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-236.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-237.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-238.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-239.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-24.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-240.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-241.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-242.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-243.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-244.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-245.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-246.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-247.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-248.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-249.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-25.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-250.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-251.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-26.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-27.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-28.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-29.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-3.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-30.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-31.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-32.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-33.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-34.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-35.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-36.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-37.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-38.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-39.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-4.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-40.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-41.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-42.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-43.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-44.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-45.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-46.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-47.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-48.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-49.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-5.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-50.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-51.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-52.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-53.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-54.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-55.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-56.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-57.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-58.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-59.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-6.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-60.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-61.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-62.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-63.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-64.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-65.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-66.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-67.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-68.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-69.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-7.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-70.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-71.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-72.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-73.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-74.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-75.yaml | 40 +++++++ .../keploy/test-set-3/tests/test-76.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-77.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-78.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-79.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-8.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-80.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-81.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-82.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-83.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-84.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-85.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-86.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-87.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-88.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-89.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-9.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-90.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-91.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-92.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-93.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-94.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-95.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-96.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-97.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-98.yaml | 39 +++++++ .../keploy/test-set-3/tests/test-99.yaml | 39 +++++++ 1005 files changed, 39244 insertions(+), 4 deletions(-) create mode 100644 java-dedup/keploy.yml create mode 100644 java-dedup/keploy/.gitignore create mode 100644 java-dedup/keploy/test-set-0/tests/test-10.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-100.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-101.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-102.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-103.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-104.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-105.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-106.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-107.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-108.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-109.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-11.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-110.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-111.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-112.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-113.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-114.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-115.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-116.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-117.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-118.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-119.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-12.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-120.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-121.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-122.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-123.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-124.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-125.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-126.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-127.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-128.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-129.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-13.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-130.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-131.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-132.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-133.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-134.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-135.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-136.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-137.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-138.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-139.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-14.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-140.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-141.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-142.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-143.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-144.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-145.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-146.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-147.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-148.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-149.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-15.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-150.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-151.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-152.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-153.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-154.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-155.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-156.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-157.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-158.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-159.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-16.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-160.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-161.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-162.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-163.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-164.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-165.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-166.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-167.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-168.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-169.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-17.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-170.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-171.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-172.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-173.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-174.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-175.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-176.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-177.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-178.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-179.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-18.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-180.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-181.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-182.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-183.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-184.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-185.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-186.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-187.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-188.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-189.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-19.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-190.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-191.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-192.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-193.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-194.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-195.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-196.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-197.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-198.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-199.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-2.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-20.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-200.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-201.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-202.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-203.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-204.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-205.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-206.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-207.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-208.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-209.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-21.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-210.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-211.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-212.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-213.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-214.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-215.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-216.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-217.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-218.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-219.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-22.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-220.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-221.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-222.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-223.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-224.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-225.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-226.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-227.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-228.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-229.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-23.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-230.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-231.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-232.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-233.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-234.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-235.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-236.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-237.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-238.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-239.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-24.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-240.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-241.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-242.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-243.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-244.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-245.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-246.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-247.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-248.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-249.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-25.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-250.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-251.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-26.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-27.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-28.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-29.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-3.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-30.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-31.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-32.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-33.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-34.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-35.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-36.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-37.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-38.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-39.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-4.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-40.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-41.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-42.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-43.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-44.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-45.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-46.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-47.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-48.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-49.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-5.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-50.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-51.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-52.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-53.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-54.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-55.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-56.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-57.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-58.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-59.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-6.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-60.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-61.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-62.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-63.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-64.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-65.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-66.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-67.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-68.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-69.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-7.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-70.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-71.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-72.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-73.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-74.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-75.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-76.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-77.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-78.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-79.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-8.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-80.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-81.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-82.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-83.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-84.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-85.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-86.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-87.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-88.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-89.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-9.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-90.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-91.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-92.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-93.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-94.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-95.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-96.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-97.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-98.yaml create mode 100644 java-dedup/keploy/test-set-0/tests/test-99.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-10.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-100.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-101.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-102.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-103.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-104.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-105.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-106.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-107.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-108.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-109.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-11.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-110.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-111.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-112.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-113.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-114.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-115.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-116.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-117.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-118.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-119.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-12.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-120.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-121.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-122.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-123.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-124.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-125.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-126.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-127.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-128.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-129.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-13.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-130.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-131.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-132.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-133.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-134.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-135.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-136.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-137.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-138.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-139.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-14.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-140.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-141.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-142.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-143.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-144.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-145.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-146.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-147.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-148.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-149.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-15.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-150.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-151.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-152.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-153.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-154.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-155.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-156.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-157.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-158.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-159.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-16.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-160.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-161.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-162.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-163.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-164.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-165.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-166.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-167.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-168.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-169.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-17.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-170.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-171.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-172.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-173.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-174.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-175.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-176.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-177.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-178.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-179.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-18.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-180.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-181.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-182.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-183.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-184.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-185.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-186.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-187.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-188.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-189.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-19.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-190.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-191.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-192.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-193.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-194.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-195.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-196.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-197.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-198.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-199.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-2.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-20.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-200.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-201.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-202.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-203.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-204.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-205.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-206.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-207.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-208.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-209.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-21.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-210.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-211.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-212.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-213.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-214.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-215.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-216.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-217.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-218.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-219.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-22.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-220.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-221.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-222.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-223.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-224.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-225.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-226.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-227.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-228.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-229.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-23.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-230.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-231.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-232.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-233.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-234.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-235.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-236.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-237.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-238.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-239.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-24.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-240.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-241.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-242.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-243.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-244.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-245.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-246.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-247.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-248.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-249.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-25.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-250.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-251.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-26.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-27.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-28.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-29.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-3.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-30.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-31.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-32.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-33.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-34.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-35.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-36.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-37.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-38.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-39.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-4.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-40.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-41.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-42.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-43.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-44.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-45.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-46.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-47.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-48.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-49.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-5.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-50.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-51.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-52.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-53.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-54.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-55.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-56.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-57.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-58.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-59.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-6.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-60.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-61.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-62.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-63.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-64.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-65.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-66.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-67.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-68.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-69.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-7.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-70.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-71.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-72.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-73.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-74.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-75.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-76.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-77.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-78.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-79.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-8.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-80.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-81.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-82.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-83.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-84.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-85.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-86.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-87.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-88.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-89.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-9.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-90.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-91.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-92.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-93.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-94.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-95.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-96.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-97.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-98.yaml create mode 100644 java-dedup/keploy/test-set-1/tests/test-99.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-10.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-100.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-101.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-102.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-103.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-104.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-105.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-106.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-107.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-108.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-109.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-11.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-110.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-111.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-112.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-113.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-114.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-115.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-116.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-117.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-118.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-119.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-12.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-120.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-121.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-122.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-123.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-124.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-125.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-126.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-127.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-128.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-129.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-13.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-130.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-131.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-132.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-133.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-134.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-135.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-136.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-137.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-138.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-139.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-14.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-140.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-141.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-142.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-143.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-144.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-145.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-146.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-147.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-148.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-149.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-15.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-150.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-151.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-152.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-153.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-154.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-155.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-156.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-157.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-158.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-159.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-16.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-160.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-161.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-162.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-163.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-164.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-165.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-166.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-167.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-168.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-169.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-17.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-170.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-171.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-172.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-173.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-174.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-175.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-176.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-177.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-178.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-179.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-18.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-180.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-181.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-182.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-183.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-184.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-185.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-186.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-187.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-188.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-189.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-19.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-190.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-191.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-192.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-193.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-194.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-195.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-196.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-197.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-198.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-199.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-2.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-20.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-200.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-201.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-202.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-203.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-204.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-205.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-206.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-207.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-208.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-209.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-21.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-210.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-211.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-212.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-213.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-214.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-215.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-216.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-217.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-218.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-219.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-22.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-220.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-221.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-222.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-223.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-224.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-225.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-226.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-227.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-228.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-229.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-23.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-230.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-231.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-232.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-233.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-234.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-235.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-236.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-237.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-238.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-239.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-24.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-240.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-241.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-242.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-243.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-244.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-245.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-246.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-247.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-248.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-249.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-25.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-250.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-251.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-26.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-27.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-28.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-29.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-3.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-30.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-31.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-32.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-33.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-34.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-35.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-36.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-37.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-38.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-39.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-4.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-40.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-41.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-42.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-43.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-44.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-45.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-46.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-47.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-48.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-49.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-5.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-50.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-51.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-52.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-53.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-54.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-55.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-56.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-57.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-58.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-59.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-6.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-60.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-61.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-62.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-63.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-64.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-65.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-66.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-67.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-68.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-69.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-7.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-70.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-71.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-72.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-73.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-74.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-75.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-76.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-77.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-78.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-79.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-8.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-80.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-81.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-82.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-83.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-84.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-85.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-86.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-87.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-88.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-89.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-9.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-90.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-91.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-92.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-93.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-94.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-95.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-96.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-97.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-98.yaml create mode 100644 java-dedup/keploy/test-set-2/tests/test-99.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-10.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-100.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-101.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-102.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-103.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-104.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-105.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-106.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-107.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-108.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-109.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-11.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-110.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-111.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-112.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-113.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-114.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-115.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-116.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-117.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-118.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-119.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-12.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-120.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-121.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-122.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-123.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-124.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-125.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-126.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-127.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-128.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-129.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-13.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-130.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-131.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-132.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-133.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-134.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-135.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-136.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-137.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-138.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-139.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-14.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-140.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-141.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-142.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-143.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-144.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-145.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-146.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-147.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-148.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-149.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-15.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-150.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-151.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-152.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-153.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-154.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-155.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-156.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-157.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-158.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-159.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-16.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-160.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-161.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-162.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-163.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-164.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-165.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-166.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-167.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-168.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-169.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-17.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-170.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-171.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-172.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-173.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-174.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-175.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-176.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-177.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-178.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-179.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-18.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-180.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-181.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-182.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-183.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-184.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-185.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-186.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-187.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-188.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-189.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-19.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-190.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-191.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-192.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-193.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-194.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-195.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-196.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-197.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-198.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-199.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-2.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-20.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-200.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-201.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-202.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-203.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-204.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-205.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-206.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-207.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-208.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-209.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-21.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-210.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-211.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-212.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-213.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-214.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-215.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-216.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-217.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-218.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-219.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-22.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-220.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-221.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-222.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-223.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-224.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-225.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-226.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-227.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-228.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-229.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-23.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-230.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-231.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-232.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-233.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-234.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-235.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-236.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-237.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-238.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-239.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-24.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-240.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-241.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-242.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-243.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-244.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-245.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-246.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-247.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-248.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-249.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-25.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-250.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-251.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-26.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-27.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-28.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-29.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-3.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-30.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-31.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-32.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-33.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-34.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-35.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-36.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-37.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-38.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-39.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-4.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-40.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-41.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-42.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-43.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-44.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-45.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-46.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-47.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-48.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-49.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-5.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-50.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-51.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-52.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-53.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-54.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-55.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-56.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-57.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-58.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-59.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-6.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-60.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-61.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-62.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-63.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-64.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-65.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-66.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-67.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-68.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-69.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-7.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-70.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-71.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-72.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-73.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-74.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-75.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-76.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-77.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-78.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-79.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-8.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-80.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-81.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-82.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-83.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-84.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-85.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-86.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-87.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-88.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-89.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-9.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-90.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-91.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-92.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-93.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-94.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-95.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-96.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-97.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-98.yaml create mode 100644 java-dedup/keploy/test-set-3/tests/test-99.yaml diff --git a/README.md b/README.md index f0b5164b..4be947f3 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ This repo contains the sample for [Keploy's](https://keploy.io) Java Application 4. [Springboot Postgres GraphQL](https://github.com/keploy/samples-java/tree/main/spring-boot-postgres-graphql) - This is a Spring Boot application implementing a GraphQL service to handle requests related to books and authors. 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. ## Community Support ❤️ diff --git a/java-dedup/.gitignore b/java-dedup/.gitignore index 88ea6b8d..e5e25c5a 100644 --- a/java-dedup/.gitignore +++ b/java-dedup/.gitignore @@ -1,6 +1,5 @@ /target/ -/keploy/ -/keploy.yml +/keploy/reports/ /dedupData.yaml /duplicates.yaml /*.log diff --git a/java-dedup/README.md b/java-dedup/README.md index 5608b54d..9da96fa8 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -1,6 +1,8 @@ # Java Dynamic Deduplication Sample -This sample is a Spring Boot application used by Keploy CI to validate Java dynamic deduplication in native and Docker runs. It mirrors the Go dedup sample by exposing a broad set of endpoints and driving 1000 randomized 200-response requests during record. +This sample is a Spring Boot application used by Keploy CI to validate Java dynamic deduplication in native and Docker runs. It mirrors the Go dedup sample by exposing a broad set of endpoints and committing 1000 replay fixtures across four testsets. + +CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup`. Build the application after installing the Java SDK locally: @@ -15,7 +17,7 @@ java -javaagent:target/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=tar -jar target/java-dedup-0.0.1-SNAPSHOT.jar ``` -Record high-volume traffic against the running app: +To regenerate the committed fixtures locally, record high-volume traffic against the running app: ```bash ./run_random_1000.sh diff --git a/java-dedup/keploy.yml b/java-dedup/keploy.yml new file mode 100644 index 00000000..0ead24ca --- /dev/null +++ b/java-dedup/keploy.yml @@ -0,0 +1,104 @@ +# 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: {"body": {"current_time":[]}} + 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 enforces cross-test bleed prevention. Per-test + # (LifetimePerTest) mocks whose request timestamp falls outside the + # outer test window are dropped rather than promoted across tests. + # + # Default TRUE now that every stateful-protocol recorder classifies + # mocks finely enough (per-connection data mocks, session vs per-test + # distinction for connection-alive commands) that legitimate cross- + # test sharing is encoded as session/connection lifetime rather than + # implicit out-of-window reuse. If an older recording relies on the + # legacy lax behaviour, opt out with strictMockWindow: false here or + # export KEPLOY_STRICT_MOCK_WINDOW=0 — the env var wins. + 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" + +# Visit [https://keploy.io/docs/running-keploy/configuration-file/] to learn about using keploy through configration file. diff --git a/java-dedup/keploy/.gitignore b/java-dedup/keploy/.gitignore new file mode 100644 index 00000000..5137843b --- /dev/null +++ b/java-dedup/keploy/.gitignore @@ -0,0 +1,2 @@ + +/reports/ diff --git a/java-dedup/keploy/test-set-0/tests/test-10.yaml b/java-dedup/keploy/test-set-0/tests/test-10.yaml new file mode 100644 index 00000000..150b3337 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-10.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.246997938+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 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:15.25057105+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-100.yaml b/java-dedup/keploy/test-set-0/tests/test-100.yaml new file mode 100644 index 00000000..3bfb3444 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-100.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.301192216+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.303821826+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-101.yaml b/java-dedup/keploy/test-set-0/tests/test-101.yaml new file mode 100644 index 00000000..33c8e913 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-101.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-101 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.312328831+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.314716531+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/status \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-102.yaml b/java-dedup/keploy/test-set-0/tests/test-102.yaml new file mode 100644 index 00000000..ec18140b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-102.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-102 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.322102113+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.324511112+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-103.yaml b/java-dedup/keploy/test-set-0/tests/test-103.yaml new file mode 100644 index 00000000..4c8546b8 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-103.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-103 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.333013067+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.335524182+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/noone \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-104.yaml b/java-dedup/keploy/test-set-0/tests/test-104.yaml new file mode 100644 index 00000000..07b8464e --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-104.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-104 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.344257037+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.346468884+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/products \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-105.yaml b/java-dedup/keploy/test-set-0/tests/test-105.yaml new file mode 100644 index 00000000..07b5ecfc --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-105.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-105 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.354841905+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.357237035+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/info \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-106.yaml b/java-dedup/keploy/test-set-0/tests/test-106.yaml new file mode 100644 index 00000000..78f7a984 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-106.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-106 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.365291128+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.367623521+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/proxy \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-107.yaml b/java-dedup/keploy/test-set-0/tests/test-107.yaml new file mode 100644 index 00000000..1fc6d8b7 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-107.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-107 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.374835609+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.377182542+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-108.yaml b/java-dedup/keploy/test-set-0/tests/test-108.yaml new file mode 100644 index 00000000..df110583 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-108.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-108 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.385304792+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.388019649+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-109.yaml b/java-dedup/keploy/test-set-0/tests/test-109.yaml new file mode 100644 index 00000000..db29e45a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-109.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-109 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.396645928+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.399186132+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/somewhere \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-11.yaml b/java-dedup/keploy/test-set-0/tests/test-11.yaml new file mode 100644 index 00000000..64d4a0e7 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-11.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.259592913+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.262830537+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-110.yaml b/java-dedup/keploy/test-set-0/tests/test-110.yaml new file mode 100644 index 00000000..f1c1a4f6 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-110.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-110 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.408016773+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.410194562+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/noone \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-111.yaml b/java-dedup/keploy/test-set-0/tests/test-111.yaml new file mode 100644 index 00000000..10ac7726 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-111.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-111 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.418426558+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.421117146+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/data \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-112.yaml b/java-dedup/keploy/test-set-0/tests/test-112.yaml new file mode 100644 index 00000000..e5cd8fba --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-112.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-112 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.430554581+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.433900301+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-113.yaml b/java-dedup/keploy/test-set-0/tests/test-113.yaml new file mode 100644 index 00000000..22bc6054 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-113.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-113 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.443041599+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.445710988+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/nothing \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-114.yaml b/java-dedup/keploy/test-set-0/tests/test-114.yaml new file mode 100644 index 00000000..9e2194f0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-114.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-114 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.453556311+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.456143912+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/data \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-115.yaml b/java-dedup/keploy/test-set-0/tests/test-115.yaml new file mode 100644 index 00000000..a3b9d0c4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-115.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-115 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.46483147+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.467251068+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/ping \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-116.yaml b/java-dedup/keploy/test-set-0/tests/test-116.yaml new file mode 100644 index 00000000..99bd5cfe --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-116.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-116 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.475646167+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.478163992+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/items \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-117.yaml b/java-dedup/keploy/test-set-0/tests/test-117.yaml new file mode 100644 index 00000000..15fdd496 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-117.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-117 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.485356562+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.487870376+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/status \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-118.yaml b/java-dedup/keploy/test-set-0/tests/test-118.yaml new file mode 100644 index 00000000..e4a173d0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-118.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-118 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.49471869+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.49757921+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-119.yaml b/java-dedup/keploy/test-set-0/tests/test-119.yaml new file mode 100644 index 00000000..16d9a332 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-119.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-119 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.50621475+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.508735575+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/data \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-12.yaml b/java-dedup/keploy/test-set-0/tests/test-12.yaml new file mode 100644 index 00000000..6e96e4c4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-12.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.271770604+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.274825167+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-120.yaml b/java-dedup/keploy/test-set-0/tests/test-120.yaml new file mode 100644 index 00000000..12dbf9b0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-120.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-120 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.516078918+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.518319765+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/ping \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-121.yaml b/java-dedup/keploy/test-set-0/tests/test-121.yaml new file mode 100644 index 00000000..8cfbfd15 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-121.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-121 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.52776529+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.530472537+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/data \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-122.yaml b/java-dedup/keploy/test-set-0/tests/test-122.yaml new file mode 100644 index 00000000..8134f128 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-122.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-122 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.539599505+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.543160566+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/user/123/profile \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-123.yaml b/java-dedup/keploy/test-set-0/tests/test-123.yaml new file mode 100644 index 00000000..d8930d84 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-123.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-123 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.552512425+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.555632445+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everyone \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-124.yaml b/java-dedup/keploy/test-set-0/tests/test-124.yaml new file mode 100644 index 00000000..3b6673a0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-124.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-124 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.564029624+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.566703373+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/info \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-125.yaml b/java-dedup/keploy/test-set-0/tests/test-125.yaml new file mode 100644 index 00000000..6a32a3dd --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-125.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-125 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.575681868+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.578268789+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/status \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-126.yaml b/java-dedup/keploy/test-set-0/tests/test-126.yaml new file mode 100644 index 00000000..24c08cac --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-126.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-126 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.587528263+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.590899072+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/system/logs \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-127.yaml b/java-dedup/keploy/test-set-0/tests/test-127.yaml new file mode 100644 index 00000000..5544cd67 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-127.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-127 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.600238102+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.603467027+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/users \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-128.yaml b/java-dedup/keploy/test-set-0/tests/test-128.yaml new file mode 100644 index 00000000..ba9ece77 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-128.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-128 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.611826688+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.615675926+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/system/logs \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-129.yaml b/java-dedup/keploy/test-set-0/tests/test-129.yaml new file mode 100644 index 00000000..73c29037 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-129.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-129 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.623574127+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.626422928+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/someone \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-13.yaml b/java-dedup/keploy/test-set-0/tests/test-13.yaml new file mode 100644 index 00000000..279045d3 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-13.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.283341231+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 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:15.294218108+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-130.yaml b/java-dedup/keploy/test-set-0/tests/test-130.yaml new file mode 100644 index 00000000..4662d43a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-130.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-130 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.634222982+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.637499485+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/user/123/profile \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-131.yaml b/java-dedup/keploy/test-set-0/tests/test-131.yaml new file mode 100644 index 00000000..6f4a69b1 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-131.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-131 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.646560976+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.649793961+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/user/123/profile \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-132.yaml b/java-dedup/keploy/test-set-0/tests/test-132.yaml new file mode 100644 index 00000000..37beb204 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-132.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-132 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.658532496+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.660814641+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/healthz \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-133.yaml b/java-dedup/keploy/test-set-0/tests/test-133.yaml new file mode 100644 index 00000000..b13e050f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-133.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-133 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.670059625+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.672356838+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/ping \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-134.yaml b/java-dedup/keploy/test-set-0/tests/test-134.yaml new file mode 100644 index 00000000..91782bc2 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-134.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-134 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.682031005+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.684674594+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/healthz \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-135.yaml b/java-dedup/keploy/test-set-0/tests/test-135.yaml new file mode 100644 index 00000000..29072305 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-135.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-135 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.693935667+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.697295677+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/healthz \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-136.yaml b/java-dedup/keploy/test-set-0/tests/test-136.yaml new file mode 100644 index 00000000..feae2e7d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-136.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8cf93d7f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-137.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e6a97452 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-138.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fbc5282c --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-139.yaml @@ -0,0 +1,39 @@ +# 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-14.yaml b/java-dedup/keploy/test-set-0/tests/test-14.yaml new file mode 100644 index 00000000..e788235d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-14.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.303059118+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.309501889+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-140.yaml b/java-dedup/keploy/test-set-0/tests/test-140.yaml new file mode 100644 index 00000000..148905de --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-140.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b7479922 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-141.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c9e9a5c4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-142.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8199a876 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-143.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8abf1225 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-144.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..32d88eaf --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-145.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..203d2528 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-146.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-146 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.816273985+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.818481063+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/data \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-147.yaml b/java-dedup/keploy/test-set-0/tests/test-147.yaml new file mode 100644 index 00000000..667a292d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-147.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-147 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.82717112+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.829387068+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/healthz \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-148.yaml b/java-dedup/keploy/test-set-0/tests/test-148.yaml new file mode 100644 index 00000000..33fe7aa3 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-148.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c482c67b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-149.yaml @@ -0,0 +1,39 @@ +# 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-15.yaml b/java-dedup/keploy/test-set-0/tests/test-15.yaml new file mode 100644 index 00000000..ff30a733 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-15.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.317694997+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.321284488+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-150.yaml b/java-dedup/keploy/test-set-0/tests/test-150.yaml new file mode 100644 index 00000000..e115d983 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-150.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..c9f9d1b6 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-151.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..782e4454 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-152.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c9facba9 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-153.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c2c9e487 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-154.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..407f39bc --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-155.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-155 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.911201289+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.913658567+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/somewhere \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-156.yaml b/java-dedup/keploy/test-set-0/tests/test-156.yaml new file mode 100644 index 00000000..d3c82429 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-156.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-156 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.92219454+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.925103788+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/info \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-157.yaml b/java-dedup/keploy/test-set-0/tests/test-157.yaml new file mode 100644 index 00000000..decf429d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-157.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7d4950e6 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-158.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d57c42a7 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-159.yaml @@ -0,0 +1,39 @@ +# 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-16.yaml b/java-dedup/keploy/test-set-0/tests/test-16.yaml new file mode 100644 index 00000000..7b0bf4e5 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-16.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.330829639+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.333827734+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/noone \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-160.yaml b/java-dedup/keploy/test-set-0/tests/test-160.yaml new file mode 100644 index 00000000..0b0a05ec --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-160.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..641ff73e --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-161.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..89ac640a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-162.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6d1464b3 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-163.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9e9aa5f1 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-164.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7821cc9b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-165.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2c3bffd7 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-166.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-166 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.03657691+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.038994729+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/somebody \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-167.yaml b/java-dedup/keploy/test-set-0/tests/test-167.yaml new file mode 100644 index 00000000..7f03f334 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-167.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-167 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.046391439+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.048178564+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/proxy \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-168.yaml b/java-dedup/keploy/test-set-0/tests/test-168.yaml new file mode 100644 index 00000000..30c139c8 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-168.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-168 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.055632102+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.057983234+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-169.yaml b/java-dedup/keploy/test-set-0/tests/test-169.yaml new file mode 100644 index 00000000..21326774 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-169.yaml @@ -0,0 +1,39 @@ +# 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-17.yaml b/java-dedup/keploy/test-set-0/tests/test-17.yaml new file mode 100644 index 00000000..25f9c35c --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-17.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.341390169+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.34424254+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-170.yaml b/java-dedup/keploy/test-set-0/tests/test-170.yaml new file mode 100644 index 00000000..1bcc91a8 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-170.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-170 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.075936433+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.078344923+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/noone \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-171.yaml b/java-dedup/keploy/test-set-0/tests/test-171.yaml new file mode 100644 index 00000000..4536d6e4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-171.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-171 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.087623624+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.090898327+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/user/123/profile \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-172.yaml b/java-dedup/keploy/test-set-0/tests/test-172.yaml new file mode 100644 index 00000000..f6dfc147 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-172.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-172 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.098009029+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.100834402+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/users \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-173.yaml b/java-dedup/keploy/test-set-0/tests/test-173.yaml new file mode 100644 index 00000000..355c8852 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-173.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-173 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.109668013+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.112140589+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/nothing \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-174.yaml b/java-dedup/keploy/test-set-0/tests/test-174.yaml new file mode 100644 index 00000000..7441bf6a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-174.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-174 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.119459523+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.121937619+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/data \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-175.yaml b/java-dedup/keploy/test-set-0/tests/test-175.yaml new file mode 100644 index 00000000..2363a2b6 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-175.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-175 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.129408606+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.131812026+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/data \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-176.yaml b/java-dedup/keploy/test-set-0/tests/test-176.yaml new file mode 100644 index 00000000..3e9868e9 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-176.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-176 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.140113929+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.142393863+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/someone \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-177.yaml b/java-dedup/keploy/test-set-0/tests/test-177.yaml new file mode 100644 index 00000000..12efca7d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-177.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-177 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.149540444+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.151594078+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/users \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-178.yaml b/java-dedup/keploy/test-set-0/tests/test-178.yaml new file mode 100644 index 00000000..921e4f42 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-178.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..28f24653 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-179.yaml @@ -0,0 +1,39 @@ +# 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-18.yaml b/java-dedup/keploy/test-set-0/tests/test-18.yaml new file mode 100644 index 00000000..f31d7f49 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-18.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.350819355+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.354737881+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-180.yaml b/java-dedup/keploy/test-set-0/tests/test-180.yaml new file mode 100644 index 00000000..c01040b2 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-180.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..551ce59f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-181.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2cf00138 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-182.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b409c442 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-183.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..410ec67e --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-184.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..20fe8f4f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-185.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..473a5992 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-186.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4be81315 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-187.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e8a12aaa --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-188.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f0cc66e4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-189.yaml @@ -0,0 +1,39 @@ +# 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-19.yaml b/java-dedup/keploy/test-set-0/tests/test-19.yaml new file mode 100644 index 00000000..e8b35847 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-19.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.362777407+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.365855248+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-190.yaml b/java-dedup/keploy/test-set-0/tests/test-190.yaml new file mode 100644 index 00000000..ff8f8c4a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-190.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b62055cb --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-191.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9d7f905a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-192.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1de22de6 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-193.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-193 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.332165627+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.334657382+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-194.yaml b/java-dedup/keploy/test-set-0/tests/test-194.yaml new file mode 100644 index 00000000..3a704539 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-194.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-194 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.341997486+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.344477801+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/user/123/profile \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-195.yaml b/java-dedup/keploy/test-set-0/tests/test-195.yaml new file mode 100644 index 00000000..744e1932 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-195.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-195 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.352353322+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.354813069+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/someone \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-196.yaml b/java-dedup/keploy/test-set-0/tests/test-196.yaml new file mode 100644 index 00000000..77063008 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-196.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..29f1ad2f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-197.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..669e30d4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-198.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..33fb94ff --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-199.yaml @@ -0,0 +1,39 @@ +# 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-2.yaml b/java-dedup/keploy/test-set-0/tests/test-2.yaml new file mode 100644 index 00000000..6e5fd67b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-2.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-2 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.089211704+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.11014017+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-20.yaml b/java-dedup/keploy/test-set-0/tests/test-20.yaml new file mode 100644 index 00000000..0e8a4c00 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-20.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.373896932+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.377126848+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-200.yaml b/java-dedup/keploy/test-set-0/tests/test-200.yaml new file mode 100644 index 00000000..89ffecfa --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-200.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..24e547ec --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-201.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1785e873 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-202.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c9d6f5b8 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-203.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ddcef289 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-204.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d9ee8c31 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-205.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..56b2d042 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-206.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ffb00855 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-207.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..51fc0256 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-208.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a1d33a9a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-209.yaml @@ -0,0 +1,39 @@ +# 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-21.yaml b/java-dedup/keploy/test-set-0/tests/test-21.yaml new file mode 100644 index 00000000..aef0739a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-21.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.385656262+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.388574869+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-210.yaml b/java-dedup/keploy/test-set-0/tests/test-210.yaml new file mode 100644 index 00000000..31b8018f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-210.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..dc733491 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-211.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e665ff32 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-212.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a874fca0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-213.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..69aeec76 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-214.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a4c4aee0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-215.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fa965b3a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-216.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..52ec434b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-217.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4f5931cd --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-218.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2667e913 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-219.yaml @@ -0,0 +1,40 @@ +# 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-22.yaml b/java-dedup/keploy/test-set-0/tests/test-22.yaml new file mode 100644 index 00000000..4b070dea --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-22.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.395782179+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.398408679+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-220.yaml b/java-dedup/keploy/test-set-0/tests/test-220.yaml new file mode 100644 index 00000000..7e344716 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-220.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..83274971 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-221.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..f3bd9092 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-222.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..78bdc13d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-223.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..fd855178 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-224.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d1002e79 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-225.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..e267a724 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-226.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3a81117a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-227.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b4a0f41f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-228.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d8de5cc9 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-229.yaml @@ -0,0 +1,39 @@ +# 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-23.yaml b/java-dedup/keploy/test-set-0/tests/test-23.yaml new file mode 100644 index 00000000..b80d6148 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-23.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.407039159+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.410247636+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-230.yaml b/java-dedup/keploy/test-set-0/tests/test-230.yaml new file mode 100644 index 00000000..d1259db4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-230.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..895c0301 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-231.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..25d4b48f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-232.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bdba514d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-233.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1c28336b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-234.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1348977d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-235.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..03571375 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-236.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9549aa51 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-237.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fb1e1c3d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-238.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3bdc24e2 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-239.yaml @@ -0,0 +1,39 @@ +# 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-24.yaml b/java-dedup/keploy/test-set-0/tests/test-24.yaml new file mode 100644 index 00000000..a0313343 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-24.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.418832957+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.421297513+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-240.yaml b/java-dedup/keploy/test-set-0/tests/test-240.yaml new file mode 100644 index 00000000..619aabae --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-240.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ed312076 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-241.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..aeb9165a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-242.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..146f0d0c --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-243.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8293210b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-244.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..96808875 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-245.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..85798b17 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-246.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f1a4fff7 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-247.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..01be1e38 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-248.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2fd48ba4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-249.yaml @@ -0,0 +1,39 @@ +# 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-25.yaml b/java-dedup/keploy/test-set-0/tests/test-25.yaml new file mode 100644 index 00000000..b0c22ab9 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-25.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.428713034+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.431826254+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-250.yaml b/java-dedup/keploy/test-set-0/tests/test-250.yaml new file mode 100644 index 00000000..3980725d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-250.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-250 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:17.990992211+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:17.994080441+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015097 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/data \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-251.yaml b/java-dedup/keploy/test-set-0/tests/test-251.yaml new file mode 100644 index 00000000..5ebff6fc --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-251.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-251 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:18.003518256+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:17 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:18.005594789+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015098 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-26.yaml b/java-dedup/keploy/test-set-0/tests/test-26.yaml new file mode 100644 index 00000000..1ec7d734 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-26.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.440352828+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.443141802+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-27.yaml b/java-dedup/keploy/test-set-0/tests/test-27.yaml new file mode 100644 index 00000000..d68849fa --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-27.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.449964647+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.452932833+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/noone \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-28.yaml b/java-dedup/keploy/test-set-0/tests/test-28.yaml new file mode 100644 index 00000000..5e22e3f6 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-28.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.460148822+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.462807441+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-29.yaml b/java-dedup/keploy/test-set-0/tests/test-29.yaml new file mode 100644 index 00000000..1e044ec9 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-29.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.470434753+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.474848799+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-3.yaml b/java-dedup/keploy/test-set-0/tests/test-3.yaml new file mode 100644 index 00000000..f2363ef9 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-3.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-3 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.119386275+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.122922237+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-30.yaml b/java-dedup/keploy/test-set-0/tests/test-30.yaml new file mode 100644 index 00000000..be1ef634 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-30.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.483631232+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.486893696+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-31.yaml b/java-dedup/keploy/test-set-0/tests/test-31.yaml new file mode 100644 index 00000000..5519edcf --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-31.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.494195981+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.497324791+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-32.yaml b/java-dedup/keploy/test-set-0/tests/test-32.yaml new file mode 100644 index 00000000..dc7834ea --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-32.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-32 +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:15.506087604+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.508910327+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-33.yaml b/java-dedup/keploy/test-set-0/tests/test-33.yaml new file mode 100644 index 00000000..9c31bcce --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-33.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.515609887+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.519111651+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-34.yaml b/java-dedup/keploy/test-set-0/tests/test-34.yaml new file mode 100644 index 00000000..3eb9a7da --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-34.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.533654574+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 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:15.53639861+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-35.yaml b/java-dedup/keploy/test-set-0/tests/test-35.yaml new file mode 100644 index 00000000..f7511579 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-35.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.543253384+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.546736568+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-36.yaml b/java-dedup/keploy/test-set-0/tests/test-36.yaml new file mode 100644 index 00000000..3ae12838 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-36.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.563119554+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.566551772+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-37.yaml b/java-dedup/keploy/test-set-0/tests/test-37.yaml new file mode 100644 index 00000000..61ba00f9 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-37.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.57618174+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.579409935+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-38.yaml b/java-dedup/keploy/test-set-0/tests/test-38.yaml new file mode 100644 index 00000000..fc6d3437 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-38.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.593624861+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.598378823+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-39.yaml b/java-dedup/keploy/test-set-0/tests/test-39.yaml new file mode 100644 index 00000000..8527f394 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-39.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.608605996+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 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:15.611572482+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-4.yaml b/java-dedup/keploy/test-set-0/tests/test-4.yaml new file mode 100644 index 00000000..60a9c9c7 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-4.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.13077401+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.135140206+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-40.yaml b/java-dedup/keploy/test-set-0/tests/test-40.yaml new file mode 100644 index 00000000..0d8a971e --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-40.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.623223115+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.626153894+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-41.yaml b/java-dedup/keploy/test-set-0/tests/test-41.yaml new file mode 100644 index 00000000..bbbc112f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-41.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.633576794+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.636410066+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-42.yaml b/java-dedup/keploy/test-set-0/tests/test-42.yaml new file mode 100644 index 00000000..9317f8eb --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-42.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.645455848+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.648505121+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-43.yaml b/java-dedup/keploy/test-set-0/tests/test-43.yaml new file mode 100644 index 00000000..00239937 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-43.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.657997554+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.661292038+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-44.yaml b/java-dedup/keploy/test-set-0/tests/test-44.yaml new file mode 100644 index 00000000..2cc6b4e0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-44.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.67081526+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.673844402+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-45.yaml b/java-dedup/keploy/test-set-0/tests/test-45.yaml new file mode 100644 index 00000000..e4556eac --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-45.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.681525482+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.68517059+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/noone \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-46.yaml b/java-dedup/keploy/test-set-0/tests/test-46.yaml new file mode 100644 index 00000000..a16c2f4d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-46.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.693363458+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.695897332+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-47.yaml b/java-dedup/keploy/test-set-0/tests/test-47.yaml new file mode 100644 index 00000000..7b855443 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-47.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.704623149+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.707189541+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-48.yaml b/java-dedup/keploy/test-set-0/tests/test-48.yaml new file mode 100644 index 00000000..aa1d8ba8 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-48.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.713564776+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.715537983+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-49.yaml b/java-dedup/keploy/test-set-0/tests/test-49.yaml new file mode 100644 index 00000000..3fda9bcb --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-49.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.721762573+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.72400678+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-5.yaml b/java-dedup/keploy/test-set-0/tests/test-5.yaml new file mode 100644 index 00000000..36cda728 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-5.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.143247918+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 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:15.1741081+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-50.yaml b/java-dedup/keploy/test-set-0/tests/test-50.yaml new file mode 100644 index 00000000..345bc889 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-50.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.731131953+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.733321521+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-51.yaml b/java-dedup/keploy/test-set-0/tests/test-51.yaml new file mode 100644 index 00000000..d9fbc3b0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-51.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.740121868+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.743103903+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-52.yaml b/java-dedup/keploy/test-set-0/tests/test-52.yaml new file mode 100644 index 00000000..a5de0c26 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-52.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.751666175+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.754286685+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-53.yaml b/java-dedup/keploy/test-set-0/tests/test-53.yaml new file mode 100644 index 00000000..2e27fda7 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-53.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.76233114+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.765340125+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-54.yaml b/java-dedup/keploy/test-set-0/tests/test-54.yaml new file mode 100644 index 00000000..4b33c1c5 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-54.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.772436688+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 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:15.775396964+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-55.yaml b/java-dedup/keploy/test-set-0/tests/test-55.yaml new file mode 100644 index 00000000..50e87651 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-55.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.785955315+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.788656261+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-56.yaml b/java-dedup/keploy/test-set-0/tests/test-56.yaml new file mode 100644 index 00000000..377b9e6a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-56.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.799431362+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.802229835+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-57.yaml b/java-dedup/keploy/test-set-0/tests/test-57.yaml new file mode 100644 index 00000000..52d2c497 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-57.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.810295548+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.812819012+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-58.yaml b/java-dedup/keploy/test-set-0/tests/test-58.yaml new file mode 100644 index 00000000..14110339 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-58.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.820603607+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.823223508+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-0/tests/test-59.yaml b/java-dedup/keploy/test-set-0/tests/test-59.yaml new file mode 100644 index 00000000..ed12d632 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-59.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.833192883+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.835705997+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-6.yaml b/java-dedup/keploy/test-set-0/tests/test-6.yaml new file mode 100644 index 00000000..c2a0dc4f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-6.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.183819775+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.187117168+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-60.yaml b/java-dedup/keploy/test-set-0/tests/test-60.yaml new file mode 100644 index 00000000..3f2374f5 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-60.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.844689203+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.847673317+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-61.yaml b/java-dedup/keploy/test-set-0/tests/test-61.yaml new file mode 100644 index 00000000..890f78ad --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-61.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.859075122+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.861878635+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-62.yaml b/java-dedup/keploy/test-set-0/tests/test-62.yaml new file mode 100644 index 00000000..526b564a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-62.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.870822852+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.873816757+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-63.yaml b/java-dedup/keploy/test-set-0/tests/test-63.yaml new file mode 100644 index 00000000..118f0776 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-63.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.882197267+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 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:15.885060527+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-64.yaml b/java-dedup/keploy/test-set-0/tests/test-64.yaml new file mode 100644 index 00000000..72b6f703 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-64.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.892746546+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.896393634+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-65.yaml b/java-dedup/keploy/test-set-0/tests/test-65.yaml new file mode 100644 index 00000000..147d6960 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-65.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.903871262+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.906759152+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-66.yaml b/java-dedup/keploy/test-set-0/tests/test-66.yaml new file mode 100644 index 00000000..cad5f5c0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-66.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.915282085+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.918281632+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-67.yaml b/java-dedup/keploy/test-set-0/tests/test-67.yaml new file mode 100644 index 00000000..bab278fa --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-67.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.927801274+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.930900334+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-68.yaml b/java-dedup/keploy/test-set-0/tests/test-68.yaml new file mode 100644 index 00000000..a92ee34a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-68.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.939242296+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.941564589+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-69.yaml b/java-dedup/keploy/test-set-0/tests/test-69.yaml new file mode 100644 index 00000000..8076267f --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-69.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.949865033+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.952985083+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-7.yaml b/java-dedup/keploy/test-set-0/tests/test-7.yaml new file mode 100644 index 00000000..18757bfb --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-7.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.196349423+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.203398288+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-70.yaml b/java-dedup/keploy/test-set-0/tests/test-70.yaml new file mode 100644 index 00000000..42aaca6c --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-70.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.961472098+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.964477033+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-71.yaml b/java-dedup/keploy/test-set-0/tests/test-71.yaml new file mode 100644 index 00000000..ac4fd561 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-71.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.973581103+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.976436853+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-72.yaml b/java-dedup/keploy/test-set-0/tests/test-72.yaml new file mode 100644 index 00000000..1b32ff46 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-72.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.986416708+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.989147893+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-73.yaml b/java-dedup/keploy/test-set-0/tests/test-73.yaml new file mode 100644 index 00000000..481f2efe --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-73.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:15.99807687+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.000181382+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-74.yaml b/java-dedup/keploy/test-set-0/tests/test-74.yaml new file mode 100644 index 00000000..1aa1a6fa --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-74.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.009719734+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.012465989+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header '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-75.yaml b/java-dedup/keploy/test-set-0/tests/test-75.yaml new file mode 100644 index 00000000..7dc42871 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-75.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.022606606+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.025032815+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-76.yaml b/java-dedup/keploy/test-set-0/tests/test-76.yaml new file mode 100644 index 00000000..0168a2b5 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-76.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.031518203+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.034002169+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-77.yaml b/java-dedup/keploy/test-set-0/tests/test-77.yaml new file mode 100644 index 00000000..45db5157 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-77.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.041578903+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.04405845+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/status \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-78.yaml b/java-dedup/keploy/test-set-0/tests/test-78.yaml new file mode 100644 index 00000000..b2825d52 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-78.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.051947731+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.054955264+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/status \ + --header '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-79.yaml b/java-dedup/keploy/test-set-0/tests/test-79.yaml new file mode 100644 index 00000000..91adefa4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-79.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.065680626+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.068291127+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 '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-8.yaml b/java-dedup/keploy/test-set-0/tests/test-8.yaml new file mode 100644 index 00000000..9e0d8ba1 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-8.yaml @@ -0,0 +1,42 @@ +# 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/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:15.214448427+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.223436382+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-80.yaml b/java-dedup/keploy/test-set-0/tests/test-80.yaml new file mode 100644 index 00000000..d1dd1788 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-80.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.077157506+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.08017922+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + 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-0/tests/test-81.yaml b/java-dedup/keploy/test-set-0/tests/test-81.yaml new file mode 100644 index 00000000..da0e9ae4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-81.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.08929152+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.091742287+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/info \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-82.yaml b/java-dedup/keploy/test-set-0/tests/test-82.yaml new file mode 100644 index 00000000..6ffc351c --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-82.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.100870516+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:16.103925678+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + 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-0/tests/test-83.yaml b/java-dedup/keploy/test-set-0/tests/test-83.yaml new file mode 100644 index 00000000..2cf88bb3 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-83.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.115793772+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.118988039+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/data \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-84.yaml b/java-dedup/keploy/test-set-0/tests/test-84.yaml new file mode 100644 index 00000000..046852bd --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-84.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.127774291+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.130267178+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/items \ + --header '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-85.yaml b/java-dedup/keploy/test-set-0/tests/test-85.yaml new file mode 100644 index 00000000..16521420 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-85.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.140476872+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.142845742+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-86.yaml b/java-dedup/keploy/test-set-0/tests/test-86.yaml new file mode 100644 index 00000000..1f9735a8 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-86.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.153870912+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.156846748+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header '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-87.yaml b/java-dedup/keploy/test-set-0/tests/test-87.yaml new file mode 100644 index 00000000..a28c2121 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-87.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.164962218+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.168104787+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/status \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-88.yaml b/java-dedup/keploy/test-set-0/tests/test-88.yaml new file mode 100644 index 00000000..ad52c2b4 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-88.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.177134239+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.179953731+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-89.yaml b/java-dedup/keploy/test-set-0/tests/test-89.yaml new file mode 100644 index 00000000..ad9bc268 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-89.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.187453818+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:16.190686653+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/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-9.yaml b/java-dedup/keploy/test-set-0/tests/test-9.yaml new file mode 100644 index 00000000..394d92ed --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-9.yaml @@ -0,0 +1,42 @@ +# 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/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:15.234605135+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:15 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:15.239474372+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015095 + 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-90.yaml b/java-dedup/keploy/test-set-0/tests/test-90.yaml new file mode 100644 index 00000000..f3b8cfb0 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-90.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.199350491+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.202333387+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-91.yaml b/java-dedup/keploy/test-set-0/tests/test-91.yaml new file mode 100644 index 00000000..ffb352cd --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-91.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.211278263+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.214312756+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-92.yaml b/java-dedup/keploy/test-set-0/tests/test-92.yaml new file mode 100644 index 00000000..f6f45e5a --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-92.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.222306933+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.224884985+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + 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-93.yaml b/java-dedup/keploy/test-set-0/tests/test-93.yaml new file mode 100644 index 00000000..0a59dae1 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-93.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.233697156+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.236520379+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/system/logs \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-0/tests/test-94.yaml b/java-dedup/keploy/test-set-0/tests/test-94.yaml new file mode 100644 index 00000000..c7cb5208 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-94.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.24415261+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.246603027+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 '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-95.yaml b/java-dedup/keploy/test-set-0/tests/test-95.yaml new file mode 100644 index 00000000..63c42b27 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-95.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-95 +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.253913621+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.256448156+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-96.yaml b/java-dedup/keploy/test-set-0/tests/test-96.yaml new file mode 100644 index 00000000..24a84f2b --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-96.yaml @@ -0,0 +1,42 @@ +# 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/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.264280308+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.267313872+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-97.yaml b/java-dedup/keploy/test-set-0/tests/test-97.yaml new file mode 100644 index 00000000..b22a422d --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-97.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.273736283+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.275871654+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-98.yaml b/java-dedup/keploy/test-set-0/tests/test-98.yaml new file mode 100644 index 00000000..3cfd8299 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-98.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.281631984+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.284321251+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-99.yaml b/java-dedup/keploy/test-set-0/tests/test-99.yaml new file mode 100644 index 00000000..2235b978 --- /dev/null +++ b/java-dedup/keploy/test-set-0/tests/test-99.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:48:16.291304919+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:18:16 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:48:16.293698238+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015096 + 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-10.yaml b/java-dedup/keploy/test-set-1/tests/test-10.yaml new file mode 100644 index 00000000..65fc49bd --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-10.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.654399317+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.657679652+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-100.yaml b/java-dedup/keploy/test-set-1/tests/test-100.yaml new file mode 100644 index 00000000..68dc64b1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-100.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.639162423+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.641538008+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 '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-101.yaml b/java-dedup/keploy/test-set-1/tests/test-101.yaml new file mode 100644 index 00000000..33279547 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-101.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-101 +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.648021589+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.650108527+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 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-102.yaml b/java-dedup/keploy/test-set-1/tests/test-102.yaml new file mode 100644 index 00000000..f0d0da8a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-102.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-102 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.65815846+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '[{"id":"item1","name":"Laptop","price":1200.00},{"id":"item2","name":"Mouse","price":25.50},{"id":"item3","name":"Keyboard","price":75.00}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.660478006+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/items \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-103.yaml b/java-dedup/keploy/test-set-1/tests/test-103.yaml new file mode 100644 index 00000000..818e430f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-103.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-103 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.667441657+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.669943557+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/users \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-104.yaml b/java-dedup/keploy/test-set-1/tests/test-104.yaml new file mode 100644 index 00000000..501b71fd --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-104.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-104 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.677357217+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.679674984+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-105.yaml b/java-dedup/keploy/test-set-1/tests/test-105.yaml new file mode 100644 index 00000000..81011f57 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-105.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-105 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.686228564+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.688218735+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/products \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-106.yaml b/java-dedup/keploy/test-set-1/tests/test-106.yaml new file mode 100644 index 00000000..901ccec6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-106.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..ac3d8eb0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-107.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..22d57b9a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-108.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..83748820 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-109.yaml @@ -0,0 +1,39 @@ +# 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-11.yaml b/java-dedup/keploy/test-set-1/tests/test-11.yaml new file mode 100644 index 00000000..f2b9d9bc --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-11.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.668017902+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.67077988+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-110.yaml b/java-dedup/keploy/test-set-1/tests/test-110.yaml new file mode 100644 index 00000000..c8579ff9 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-110.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a61a7b2a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-111.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c96288a0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-112.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2b91da78 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-113.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bf5cba9f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-114.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-114 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.774873006+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.777127207+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/ \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-115.yaml b/java-dedup/keploy/test-set-1/tests/test-115.yaml new file mode 100644 index 00000000..6636fd3b --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-115.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-115 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.784871013+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.786603336+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/ \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-116.yaml b/java-dedup/keploy/test-set-1/tests/test-116.yaml new file mode 100644 index 00000000..eb4fb55b --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-116.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..bf836367 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-117.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d39136c3 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-118.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..94364670 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-119.yaml @@ -0,0 +1,39 @@ +# 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-12.yaml b/java-dedup/keploy/test-set-1/tests/test-12.yaml new file mode 100644 index 00000000..5d354d72 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-12.yaml @@ -0,0 +1,42 @@ +# 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/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:35.677900754+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.68319034+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-120.yaml b/java-dedup/keploy/test-set-1/tests/test-120.yaml new file mode 100644 index 00000000..e4d48b1e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-120.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-120 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.832728198+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.835237026+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everyone \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-121.yaml b/java-dedup/keploy/test-set-1/tests/test-121.yaml new file mode 100644 index 00000000..6bc9a1ba --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-121.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..eefe25c0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-122.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f238390d --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-123.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..21f162eb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-124.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..92a02c40 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-125.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f08a27ee --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-126.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..22b73a3c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-127.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6d7d5870 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-128.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-128 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.903273624+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.905946026+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/users \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-129.yaml b/java-dedup/keploy/test-set-1/tests/test-129.yaml new file mode 100644 index 00000000..1edeef30 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-129.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-129 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.912213158+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.914546684+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-13.yaml b/java-dedup/keploy/test-set-1/tests/test-13.yaml new file mode 100644 index 00000000..6f756b8e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-13.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.691035781+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.693836147+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-130.yaml b/java-dedup/keploy/test-set-1/tests/test-130.yaml new file mode 100644 index 00000000..771832eb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-130.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-130 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.922317789+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.924747791+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/users \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-131.yaml b/java-dedup/keploy/test-set-1/tests/test-131.yaml new file mode 100644 index 00000000..2658cd41 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-131.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..08c37176 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-132.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4c939a94 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-133.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1542d485 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-134.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0a9422c5 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-135.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..515c56a0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-136.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2e16ba05 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-137.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..54ae4d12 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-138.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b0d903b1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-139.yaml @@ -0,0 +1,39 @@ +# 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-14.yaml b/java-dedup/keploy/test-set-1/tests/test-14.yaml new file mode 100644 index 00000000..3addbf2c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-14.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.701323024+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 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:35.725904964+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-140.yaml b/java-dedup/keploy/test-set-1/tests/test-140.yaml new file mode 100644 index 00000000..1767cdd0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-140.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4a820cea --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-141.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8d82d129 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-142.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4dfb0277 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-143.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..06d0d11c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-144.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..688e7fe6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-145.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8e115e8e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-146.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f61487cd --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-147.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c454a3a5 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-148.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..308fe8df --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-149.yaml @@ -0,0 +1,39 @@ +# 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-15.yaml b/java-dedup/keploy/test-set-1/tests/test-15.yaml new file mode 100644 index 00000000..8f54d8d6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-15.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.734959421+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.738264024+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-150.yaml b/java-dedup/keploy/test-set-1/tests/test-150.yaml new file mode 100644 index 00000000..16c1d618 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-150.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b47f2fbf --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-151.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..72e6037e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-152.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c6ac47f1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-153.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a8741afd --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-154.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..497560be --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-155.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..285c7885 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-156.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..56194140 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-157.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a67650ec --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-158.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..0f8b866e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-159.yaml @@ -0,0 +1,39 @@ +# 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-16.yaml b/java-dedup/keploy/test-set-1/tests/test-16.yaml new file mode 100644 index 00000000..22dc4b6a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-16.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.747506495+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.750911743+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-160.yaml b/java-dedup/keploy/test-set-1/tests/test-160.yaml new file mode 100644 index 00000000..b380f5c1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-160.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..80f4c724 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-161.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c08858ff --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-162.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1af5fdd1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-163.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..790f015e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-164.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d519e407 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-165.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ff307b9f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-166.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d4c9346d --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-167.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2d438c60 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-168.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d48cbb8e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-169.yaml @@ -0,0 +1,39 @@ +# 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-17.yaml b/java-dedup/keploy/test-set-1/tests/test-17.yaml new file mode 100644 index 00000000..70898a18 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-17.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.759860746+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.762848344+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-170.yaml b/java-dedup/keploy/test-set-1/tests/test-170.yaml new file mode 100644 index 00000000..93d0ac59 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-170.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bb618ba8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-171.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..06377cc6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-172.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..843bcc8e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-173.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..db9b5ffb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-174.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bdd3062a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-175.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3d1782d5 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-176.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bfc918ab --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-177.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-177 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:37.36796594+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:37.370173001+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015177 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anything \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-178.yaml b/java-dedup/keploy/test-set-1/tests/test-178.yaml new file mode 100644 index 00000000..62facf24 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-178.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-178 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:37.376676312+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:37.378685023+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015177 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v2/data \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-179.yaml b/java-dedup/keploy/test-set-1/tests/test-179.yaml new file mode 100644 index 00000000..3886b583 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-179.yaml @@ -0,0 +1,39 @@ +# 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-18.yaml b/java-dedup/keploy/test-set-1/tests/test-18.yaml new file mode 100644 index 00000000..4f9343d7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-18.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.77171822+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.774089045+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-180.yaml b/java-dedup/keploy/test-set-1/tests/test-180.yaml new file mode 100644 index 00000000..cf3e29bf --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-180.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d8fc98b3 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-181.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2a3a08a4 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-182.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4e33c4fa --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-183.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..692e7e17 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-184.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e0799e8a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-185.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d961dcef --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-186.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..841ca96f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-187.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2babb4d9 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-188.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..36ecab29 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-189.yaml @@ -0,0 +1,39 @@ +# 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-19.yaml b/java-dedup/keploy/test-set-1/tests/test-19.yaml new file mode 100644 index 00000000..6f49d0aa --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-19.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.781672769+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.784177967+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-190.yaml b/java-dedup/keploy/test-set-1/tests/test-190.yaml new file mode 100644 index 00000000..6ac56635 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-190.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9408b92d --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-191.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4ee4796b --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-192.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..a4c2e624 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-193.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bf9b2213 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-194.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..dcaa9762 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-195.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ebacefe7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-196.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b5f772b2 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-197.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7c6c19eb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-198.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bfb2a837 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-199.yaml @@ -0,0 +1,39 @@ +# 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-2.yaml b/java-dedup/keploy/test-set-1/tests/test-2.yaml new file mode 100644 index 00000000..342ee3f0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-2.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-2 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.561926501+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.577041281+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-20.yaml b/java-dedup/keploy/test-set-1/tests/test-20.yaml new file mode 100644 index 00000000..725b484f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-20.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.791723183+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.794639853+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-1/tests/test-200.yaml b/java-dedup/keploy/test-set-1/tests/test-200.yaml new file mode 100644 index 00000000..6c461fdb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-200.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8943408b --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-201.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f32715ea --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-202.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fd5d233c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-203.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3823b41b --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-204.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..968bae4a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-205.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..77a8af17 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-206.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..34c50ed0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-207.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d2e6aca6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-208.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..603c14f8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-209.yaml @@ -0,0 +1,39 @@ +# 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-21.yaml b/java-dedup/keploy/test-set-1/tests/test-21.yaml new file mode 100644 index 00000000..48b460e8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-21.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.804178659+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.807642446+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-210.yaml b/java-dedup/keploy/test-set-1/tests/test-210.yaml new file mode 100644 index 00000000..adbda33f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-210.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6ab8eaa1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-211.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5e0bdec6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-212.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6b6e3e49 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-213.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ddef060a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-214.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bd0f33a7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-215.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..77bd9398 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-216.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d37308c5 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-217.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..dac4ff44 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-218.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a4b8800e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-219.yaml @@ -0,0 +1,39 @@ +# 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-22.yaml b/java-dedup/keploy/test-set-1/tests/test-22.yaml new file mode 100644 index 00000000..6c6471b6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-22.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.817277808+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.820758523+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-220.yaml b/java-dedup/keploy/test-set-1/tests/test-220.yaml new file mode 100644 index 00000000..9b7c0169 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-220.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c56c4906 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-221.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..18a06aa0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-222.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3c881c34 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-223.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..78603046 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-224.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9358c26b --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-225.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b1fb83bb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-226.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..445d446a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-227.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..64d9867d --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-228.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..12938a1e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-229.yaml @@ -0,0 +1,39 @@ +# 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-23.yaml b/java-dedup/keploy/test-set-1/tests/test-23.yaml new file mode 100644 index 00000000..c54843d7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-23.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.829978495+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.833292107+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-230.yaml b/java-dedup/keploy/test-set-1/tests/test-230.yaml new file mode 100644 index 00000000..d9daf897 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-230.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b8483174 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-231.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0788d716 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-232.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fa749c05 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-233.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..91f308b5 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-234.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d5a0a6cf --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-235.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6f4f2f4f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-236.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3ffe7e92 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-237.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f5c03fb0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-238.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0a2e0ef8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-239.yaml @@ -0,0 +1,39 @@ +# 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-24.yaml b/java-dedup/keploy/test-set-1/tests/test-24.yaml new file mode 100644 index 00000000..28f30536 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-24.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.843193248+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.84606496+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-240.yaml b/java-dedup/keploy/test-set-1/tests/test-240.yaml new file mode 100644 index 00000000..3f349a9a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-240.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..555143c1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-241.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..981e96ad --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-242.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..7590d71c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-243.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ce0c1ff7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-244.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..010484f1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-245.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..64dc6e2f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-246.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..cbae74e0 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-247.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5e10b256 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-248.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fb5639da --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-249.yaml @@ -0,0 +1,39 @@ +# 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-25.yaml b/java-dedup/keploy/test-set-1/tests/test-25.yaml new file mode 100644 index 00000000..ae76abf6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-25.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.854789292+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.857692764+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-250.yaml b/java-dedup/keploy/test-set-1/tests/test-250.yaml new file mode 100644 index 00000000..5fd541c4 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-250.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c7caa756 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-251.yaml @@ -0,0 +1,39 @@ +# 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-1/tests/test-26.yaml b/java-dedup/keploy/test-set-1/tests/test-26.yaml new file mode 100644 index 00000000..6229fcf1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-26.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.867435952+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.870595502+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-27.yaml b/java-dedup/keploy/test-set-1/tests/test-27.yaml new file mode 100644 index 00000000..f5941c14 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-27.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.879698827+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.883506598+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-28.yaml b/java-dedup/keploy/test-set-1/tests/test-28.yaml new file mode 100644 index 00000000..0d939943 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-28.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.891854308+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.895033887+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-29.yaml b/java-dedup/keploy/test-set-1/tests/test-29.yaml new file mode 100644 index 00000000..32208ce8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-29.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.901673322+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.904409211+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-3.yaml b/java-dedup/keploy/test-set-1/tests/test-3.yaml new file mode 100644 index 00000000..63b14f21 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-3.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-3 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.583188158+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.586939972+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-30.yaml b/java-dedup/keploy/test-set-1/tests/test-30.yaml new file mode 100644 index 00000000..ebb80461 --- /dev/null +++ b/java-dedup/keploy/test-set-1/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/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:35.911725336+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.914257183+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-31.yaml b/java-dedup/keploy/test-set-1/tests/test-31.yaml new file mode 100644 index 00000000..0833cac7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-31.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.921184476+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.924220632+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-32.yaml b/java-dedup/keploy/test-set-1/tests/test-32.yaml new file mode 100644 index 00000000..eb53c9a6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-32.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-32 +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:35.931047348+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.934697326+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-33.yaml b/java-dedup/keploy/test-set-1/tests/test-33.yaml new file mode 100644 index 00000000..04f5565e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-33.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.94361423+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.946843497+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-34.yaml b/java-dedup/keploy/test-set-1/tests/test-34.yaml new file mode 100644 index 00000000..a8476317 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-34.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.954191611+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.956777447+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-35.yaml b/java-dedup/keploy/test-set-1/tests/test-35.yaml new file mode 100644 index 00000000..f6d12ef8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-35.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.96528069+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.967846405+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-36.yaml b/java-dedup/keploy/test-set-1/tests/test-36.yaml new file mode 100644 index 00000000..c7512991 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-36.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.975066434+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.977790584+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-37.yaml b/java-dedup/keploy/test-set-1/tests/test-37.yaml new file mode 100644 index 00000000..1ab3f68e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-37.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.985641444+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 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:35.98847177+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-38.yaml b/java-dedup/keploy/test-set-1/tests/test-38.yaml new file mode 100644 index 00000000..c5a3c491 --- /dev/null +++ b/java-dedup/keploy/test-set-1/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/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:35.996649676+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.99904461+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-39.yaml b/java-dedup/keploy/test-set-1/tests/test-39.yaml new file mode 100644 index 00000000..757ee6ff --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-39.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.005518033+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.007874378+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 '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-4.yaml b/java-dedup/keploy/test-set-1/tests/test-4.yaml new file mode 100644 index 00000000..599b60a4 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-4.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.594441039+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.596802824+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-40.yaml b/java-dedup/keploy/test-set-1/tests/test-40.yaml new file mode 100644 index 00000000..ce0a28d9 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-40.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.015196753+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.017365047+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-1/tests/test-41.yaml b/java-dedup/keploy/test-set-1/tests/test-41.yaml new file mode 100644 index 00000000..bdc2c86d --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-41.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.024095428+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.026498182+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-42.yaml b/java-dedup/keploy/test-set-1/tests/test-42.yaml new file mode 100644 index 00000000..c9117134 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-42.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.034426759+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.037202576+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-43.yaml b/java-dedup/keploy/test-set-1/tests/test-43.yaml new file mode 100644 index 00000000..851bbc6a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-43.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.045068436+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.047945849+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-44.yaml b/java-dedup/keploy/test-set-1/tests/test-44.yaml new file mode 100644 index 00000000..daf371e7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-44.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.057359401+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.060429454+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everyone \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-45.yaml b/java-dedup/keploy/test-set-1/tests/test-45.yaml new file mode 100644 index 00000000..9ed4a452 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-45.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.067849506+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.070699708+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-46.yaml b/java-dedup/keploy/test-set-1/tests/test-46.yaml new file mode 100644 index 00000000..bd32fcbc --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-46.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.079315916+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.081560526+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-47.yaml b/java-dedup/keploy/test-set-1/tests/test-47.yaml new file mode 100644 index 00000000..56ef66ab --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-47.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.08867323+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.091346991+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 '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-48.yaml b/java-dedup/keploy/test-set-1/tests/test-48.yaml new file mode 100644 index 00000000..3afae133 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-48.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.098720374+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.101260071+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/products \ + --header '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-49.yaml b/java-dedup/keploy/test-set-1/tests/test-49.yaml new file mode 100644 index 00000000..74ec2543 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-49.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.108622295+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.110844676+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-5.yaml b/java-dedup/keploy/test-set-1/tests/test-5.yaml new file mode 100644 index 00000000..906a5f57 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-5.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.60365321+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.606315291+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-50.yaml b/java-dedup/keploy/test-set-1/tests/test-50.yaml new file mode 100644 index 00000000..55b3bc25 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-50.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.118135952+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.120678208+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-51.yaml b/java-dedup/keploy/test-set-1/tests/test-51.yaml new file mode 100644 index 00000000..6cfbf329 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-51.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.127818072+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.131445461+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 '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-52.yaml b/java-dedup/keploy/test-set-1/tests/test-52.yaml new file mode 100644 index 00000000..e8da267f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-52.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.139915625+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.142480221+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-53.yaml b/java-dedup/keploy/test-set-1/tests/test-53.yaml new file mode 100644 index 00000000..d1c2e3ce --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-53.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.150210918+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.152743515+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-1/tests/test-54.yaml b/java-dedup/keploy/test-set-1/tests/test-54.yaml new file mode 100644 index 00000000..4aff2447 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-54.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.160813476+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.163377243+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-1/tests/test-55.yaml b/java-dedup/keploy/test-set-1/tests/test-55.yaml new file mode 100644 index 00000000..809d4809 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-55.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.1717734+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.174326106+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 '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-56.yaml b/java-dedup/keploy/test-set-1/tests/test-56.yaml new file mode 100644 index 00000000..6c98b57f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-56.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.181598694+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.184193609+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-57.yaml b/java-dedup/keploy/test-set-1/tests/test-57.yaml new file mode 100644 index 00000000..b05288c1 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-57.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.192468351+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.194867584+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-58.yaml b/java-dedup/keploy/test-set-1/tests/test-58.yaml new file mode 100644 index 00000000..7d1b0146 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-58.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.201839985+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.204024427+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 '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-59.yaml b/java-dedup/keploy/test-set-1/tests/test-59.yaml new file mode 100644 index 00000000..a4535a3e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-59.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.211288325+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.213764075+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 '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-6.yaml b/java-dedup/keploy/test-set-1/tests/test-6.yaml new file mode 100644 index 00000000..7ed93534 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-6.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.613318711+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.616432923+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-60.yaml b/java-dedup/keploy/test-set-1/tests/test-60.yaml new file mode 100644 index 00000000..de212267 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-60.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.22153614+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.224186552+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-61.yaml b/java-dedup/keploy/test-set-1/tests/test-61.yaml new file mode 100644 index 00000000..011f6dd8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-61.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.232302922+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.235613205+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 '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-62.yaml b/java-dedup/keploy/test-set-1/tests/test-62.yaml new file mode 100644 index 00000000..7cfc5c9d --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-62.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.244161015+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.246495332+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 '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-63.yaml b/java-dedup/keploy/test-set-1/tests/test-63.yaml new file mode 100644 index 00000000..18ff844f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-63.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.254306855+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.256625371+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-1/tests/test-64.yaml b/java-dedup/keploy/test-set-1/tests/test-64.yaml new file mode 100644 index 00000000..5bd4009f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-64.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.264453964+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.267277618+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-65.yaml b/java-dedup/keploy/test-set-1/tests/test-65.yaml new file mode 100644 index 00000000..5fbbb2ad --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-65.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.274297466+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.277466126+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-66.yaml b/java-dedup/keploy/test-set-1/tests/test-66.yaml new file mode 100644 index 00000000..1f7656d8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-66.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.285017021+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.288451608+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/products \ + --header '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-67.yaml b/java-dedup/keploy/test-set-1/tests/test-67.yaml new file mode 100644 index 00000000..93d305ae --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-67.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.295785143+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.298505751+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-68.yaml b/java-dedup/keploy/test-set-1/tests/test-68.yaml new file mode 100644 index 00000000..48d66deb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-68.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.305578017+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.308153733+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-69.yaml b/java-dedup/keploy/test-set-1/tests/test-69.yaml new file mode 100644 index 00000000..87e615b7 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-69.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.316667536+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.319054829+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-7.yaml b/java-dedup/keploy/test-set-1/tests/test-7.yaml new file mode 100644 index 00000000..5a0a496e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-7.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.623275269+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.627350938+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-1/tests/test-70.yaml b/java-dedup/keploy/test-set-1/tests/test-70.yaml new file mode 100644 index 00000000..40d56fa6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-70.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.328504429+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.331169652+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-71.yaml b/java-dedup/keploy/test-set-1/tests/test-71.yaml new file mode 100644 index 00000000..f5a82dde --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-71.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.339124658+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.341734582+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-1/tests/test-72.yaml b/java-dedup/keploy/test-set-1/tests/test-72.yaml new file mode 100644 index 00000000..8c20db26 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-72.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.349752906+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.352026165+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-73.yaml b/java-dedup/keploy/test-set-1/tests/test-73.yaml new file mode 100644 index 00000000..7381f9bb --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-73.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.360605114+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.362842495+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-74.yaml b/java-dedup/keploy/test-set-1/tests/test-74.yaml new file mode 100644 index 00000000..a436e0fe --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-74.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.370271414+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.37284285+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 '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-75.yaml b/java-dedup/keploy/test-set-1/tests/test-75.yaml new file mode 100644 index 00000000..07d58062 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-75.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.380124918+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.382702493+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-76.yaml b/java-dedup/keploy/test-set-1/tests/test-76.yaml new file mode 100644 index 00000000..e684205f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-76.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.392198701+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.394992127+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-77.yaml b/java-dedup/keploy/test-set-1/tests/test-77.yaml new file mode 100644 index 00000000..3277375b --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-77.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.402965223+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.405549788+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 '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-78.yaml b/java-dedup/keploy/test-set-1/tests/test-78.yaml new file mode 100644 index 00000000..e5f7d49e --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-78.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.413535493+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.41630916+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-79.yaml b/java-dedup/keploy/test-set-1/tests/test-79.yaml new file mode 100644 index 00000000..3e91ed0a --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-79.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.42398548+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.426773985+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 '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-8.yaml b/java-dedup/keploy/test-set-1/tests/test-8.yaml new file mode 100644 index 00000000..424a194c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-8.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.634631784+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.637723158+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-80.yaml b/java-dedup/keploy/test-set-1/tests/test-80.yaml new file mode 100644 index 00000000..7cb467c6 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-80.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.434980291+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.4377034+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-1/tests/test-81.yaml b/java-dedup/keploy/test-set-1/tests/test-81.yaml new file mode 100644 index 00000000..9f36ed67 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-81.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.446363396+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.449444849+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 '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-82.yaml b/java-dedup/keploy/test-set-1/tests/test-82.yaml new file mode 100644 index 00000000..730a7572 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-82.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.457018742+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.460043078+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-83.yaml b/java-dedup/keploy/test-set-1/tests/test-83.yaml new file mode 100644 index 00000000..bb70a597 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-83.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.468454975+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.471363045+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 '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-84.yaml b/java-dedup/keploy/test-set-1/tests/test-84.yaml new file mode 100644 index 00000000..8e329a25 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-84.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.479963173+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.482636355+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-1/tests/test-85.yaml b/java-dedup/keploy/test-set-1/tests/test-85.yaml new file mode 100644 index 00000000..dd8d50ce --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-85.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.491196625+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.494100496+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-86.yaml b/java-dedup/keploy/test-set-1/tests/test-86.yaml new file mode 100644 index 00000000..1d90d278 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-86.yaml @@ -0,0 +1,42 @@ +# 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/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.501507487+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.504547102+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 '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-87.yaml b/java-dedup/keploy/test-set-1/tests/test-87.yaml new file mode 100644 index 00000000..89a1490c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-87.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.513642157+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.516402865+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-88.yaml b/java-dedup/keploy/test-set-1/tests/test-88.yaml new file mode 100644 index 00000000..7da55994 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-88.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.524444358+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.527156517+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-89.yaml b/java-dedup/keploy/test-set-1/tests/test-89.yaml new file mode 100644 index 00000000..15a21b56 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-89.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.534267182+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.53632048+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-9.yaml b/java-dedup/keploy/test-set-1/tests/test-9.yaml new file mode 100644 index 00000000..a0a708e3 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-9.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:35.644309306+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:35.646843053+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015175 + 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-90.yaml b/java-dedup/keploy/test-set-1/tests/test-90.yaml new file mode 100644 index 00000000..fc4e5ac4 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-90.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.542594702+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:35 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.544679669+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 '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-91.yaml b/java-dedup/keploy/test-set-1/tests/test-91.yaml new file mode 100644 index 00000000..724caecd --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-91.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.550850715+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.553187721+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-92.yaml b/java-dedup/keploy/test-set-1/tests/test-92.yaml new file mode 100644 index 00000000..8105aaf8 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-92.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.560695238+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.57010833+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 '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-93.yaml b/java-dedup/keploy/test-set-1/tests/test-93.yaml new file mode 100644 index 00000000..03992ae9 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-93.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.577059271+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.579308631+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-94.yaml b/java-dedup/keploy/test-set-1/tests/test-94.yaml new file mode 100644 index 00000000..1644733c --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-94.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.586822078+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.588993091+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-95.yaml b/java-dedup/keploy/test-set-1/tests/test-95.yaml new file mode 100644 index 00000000..1fe9a7bd --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-95.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-95 +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.594844812+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.596663721+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 '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-96.yaml b/java-dedup/keploy/test-set-1/tests/test-96.yaml new file mode 100644 index 00000000..059a87e4 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-96.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.603307665+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.605527247+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 '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-97.yaml b/java-dedup/keploy/test-set-1/tests/test-97.yaml new file mode 100644 index 00000000..4d833956 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-97.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.61110729+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:36.613252124+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-98.yaml b/java-dedup/keploy/test-set-1/tests/test-98.yaml new file mode 100644 index 00000000..1bae898f --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-98.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.62077598+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:19:36 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:49:36.623613353+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015176 + 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-99.yaml b/java-dedup/keploy/test-set-1/tests/test-99.yaml new file mode 100644 index 00000000..92dbecb3 --- /dev/null +++ b/java-dedup/keploy/test-set-1/tests/test-99.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:49:36.629665355+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.631651577+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 '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-10.yaml b/java-dedup/keploy/test-set-2/tests/test-10.yaml new file mode 100644 index 00000000..d1f052e0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-10.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.174043416+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.180312137+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-100.yaml b/java-dedup/keploy/test-set-2/tests/test-100.yaml new file mode 100644 index 00000000..6306b99e --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-100.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.2257625+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.228462875+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-101.yaml b/java-dedup/keploy/test-set-2/tests/test-101.yaml new file mode 100644 index 00000000..085a985e --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-101.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-101 +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.235317351+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.238027395+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 '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-102.yaml b/java-dedup/keploy/test-set-2/tests/test-102.yaml new file mode 100644 index 00000000..6895bd3f --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-102.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6da18b4d --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-103.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bc047c58 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-104.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a8f53717 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-105.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-105 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.2764749+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:41 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:41.279351186+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015241 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-106.yaml b/java-dedup/keploy/test-set-2/tests/test-106.yaml new file mode 100644 index 00000000..fcec0594 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-106.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-106 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.288911936+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:41 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:41.291952424+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015241 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/anybody \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-107.yaml b/java-dedup/keploy/test-set-2/tests/test-107.yaml new file mode 100644 index 00000000..4d647ea1 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-107.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a1fa1205 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-108.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..430eea78 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-109.yaml @@ -0,0 +1,42 @@ +# 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-11.yaml b/java-dedup/keploy/test-set-2/tests/test-11.yaml new file mode 100644 index 00000000..f645bea2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-11.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.189793428+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.197610048+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-110.yaml b/java-dedup/keploy/test-set-2/tests/test-110.yaml new file mode 100644 index 00000000..c29ddba2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-110.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8a990e50 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-111.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..cdee58de --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-112.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..52db6737 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-113.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e8b74c1c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-114.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fe421e89 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-115.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ea3501bc --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-116.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fa3791fa --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-117.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..12d67288 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-118.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..f10288e2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-119.yaml @@ -0,0 +1,39 @@ +# 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-12.yaml b/java-dedup/keploy/test-set-2/tests/test-12.yaml new file mode 100644 index 00000000..2700bebe --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-12.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.206742665+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.210447143+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-120.yaml b/java-dedup/keploy/test-set-2/tests/test-120.yaml new file mode 100644 index 00000000..d5dcc0d3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-120.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a4035b9c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-121.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..12a1793f --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-122.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..533d65fe --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-123.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7cc7d809 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-124.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7079702c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-125.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c2e2139a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-126.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4f0c8a0a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-127.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d0788c6a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-128.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a88f09ae --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-129.yaml @@ -0,0 +1,39 @@ +# 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-13.yaml b/java-dedup/keploy/test-set-2/tests/test-13.yaml new file mode 100644 index 00000000..41a8156a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-13.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.219525289+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.22273687+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-130.yaml b/java-dedup/keploy/test-set-2/tests/test-130.yaml new file mode 100644 index 00000000..e6267e77 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-130.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..425c8730 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-131.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4c5c64b9 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-132.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d2552c57 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-133.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e1426de2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-134.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a4be077e --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-135.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b0645948 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-136.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bed8cbb1 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-137.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..08a3d256 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-138.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..db1e9950 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-139.yaml @@ -0,0 +1,39 @@ +# 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-14.yaml b/java-dedup/keploy/test-set-2/tests/test-14.yaml new file mode 100644 index 00000000..308da5c6 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-14.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.231842306+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.235162819+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-140.yaml b/java-dedup/keploy/test-set-2/tests/test-140.yaml new file mode 100644 index 00000000..d4d15b43 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-140.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..27075972 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-141.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1a23ae17 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-142.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a15035a7 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-143.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0f9b6398 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-144.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..30d151df --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-145.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..47790a54 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-146.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c6ff8bdb --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-147.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..96a2ea53 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-148.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..c46af4f7 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-149.yaml @@ -0,0 +1,39 @@ +# 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-15.yaml b/java-dedup/keploy/test-set-2/tests/test-15.yaml new file mode 100644 index 00000000..80a0da09 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-15.yaml @@ -0,0 +1,42 @@ +# 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/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:40.244991694+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.248004343+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-150.yaml b/java-dedup/keploy/test-set-2/tests/test-150.yaml new file mode 100644 index 00000000..8fa73570 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-150.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..5a2beebc --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-151.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a572a4aa --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-152.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d36f11ba --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-153.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b7399b92 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-154.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c4d24faf --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-155.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f4e89023 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-156.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..40a92287 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-157.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7d1ea4e5 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-158.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ab7491cb --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-159.yaml @@ -0,0 +1,40 @@ +# 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-16.yaml b/java-dedup/keploy/test-set-2/tests/test-16.yaml new file mode 100644 index 00000000..1bdc139c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-16.yaml @@ -0,0 +1,42 @@ +# 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/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:40.256873137+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.259874925+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-160.yaml b/java-dedup/keploy/test-set-2/tests/test-160.yaml new file mode 100644 index 00000000..37bbbe2d --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-160.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..36f946be --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-161.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3bd473b7 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-162.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..19a65e8a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-163.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5563c3c4 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-164.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a1d096ca --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-165.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2f59d050 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-166.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e38741a2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-167.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..94cecf91 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-168.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6e582052 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-169.yaml @@ -0,0 +1,39 @@ +# 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-17.yaml b/java-dedup/keploy/test-set-2/tests/test-17.yaml new file mode 100644 index 00000000..5fe44f60 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-17.yaml @@ -0,0 +1,42 @@ +# 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/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:40.266883356+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.269894814+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-170.yaml b/java-dedup/keploy/test-set-2/tests/test-170.yaml new file mode 100644 index 00000000..dfd9ae5a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-170.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6d17d049 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-171.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4eb66be3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-172.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..983accfc --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-173.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d0821ffa --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-174.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3cec9066 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-175.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2a0ebda0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-176.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..dfd52a46 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-177.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f387a579 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-178.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4c7355f3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-179.yaml @@ -0,0 +1,39 @@ +# 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-18.yaml b/java-dedup/keploy/test-set-2/tests/test-18.yaml new file mode 100644 index 00000000..6e7661e2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-18.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.278202031+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.281357791+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-180.yaml b/java-dedup/keploy/test-set-2/tests/test-180.yaml new file mode 100644 index 00000000..3a801d3c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-180.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..40a2aea4 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-181.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..98d782f2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-182.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..da7aaa63 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-183.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..d74cccfb --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-184.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ef952831 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-185.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-185 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:42.176854972+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:42 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:42.179213742+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015242 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everyone \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-186.yaml b/java-dedup/keploy/test-set-2/tests/test-186.yaml new file mode 100644 index 00000000..e0bccc3f --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-186.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-186 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:42.189023613+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:42 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:42.19280883+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015242 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/info \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-187.yaml b/java-dedup/keploy/test-set-2/tests/test-187.yaml new file mode 100644 index 00000000..a2269c36 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-187.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a6134974 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-188.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..51265bb6 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-189.yaml @@ -0,0 +1,39 @@ +# 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-19.yaml b/java-dedup/keploy/test-set-2/tests/test-19.yaml new file mode 100644 index 00000000..19ec9ecf --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-19.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.290417587+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.29382907+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-190.yaml b/java-dedup/keploy/test-set-2/tests/test-190.yaml new file mode 100644 index 00000000..e2e142cb --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-190.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e2d75aa1 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-191.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..660bb4b2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-192.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b87b4e0e --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-193.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1d4f9c21 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-194.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..69174654 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-195.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d6f5a1bb --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-196.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-196 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:42.294599492+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:42 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:42.296809419+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015242 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/nothing \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-197.yaml b/java-dedup/keploy/test-set-2/tests/test-197.yaml new file mode 100644 index 00000000..b6c088a4 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-197.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-197 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:42.303990618+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:42 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:42.306381818+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015242 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/healthz \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-2/tests/test-198.yaml b/java-dedup/keploy/test-set-2/tests/test-198.yaml new file mode 100644 index 00000000..0527ffcf --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-198.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9e9a435e --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-199.yaml @@ -0,0 +1,39 @@ +# 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-2.yaml b/java-dedup/keploy/test-set-2/tests/test-2.yaml new file mode 100644 index 00000000..448ba964 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-2.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-2 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.04935686+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.078885807+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-20.yaml b/java-dedup/keploy/test-set-2/tests/test-20.yaml new file mode 100644 index 00000000..61af7e89 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-20.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.302300149+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.30621566+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-200.yaml b/java-dedup/keploy/test-set-2/tests/test-200.yaml new file mode 100644 index 00000000..b158cf93 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-200.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bc556707 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-201.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..ac97211b --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-202.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e83c6594 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-203.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..41c2cb34 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-204.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..815f10d9 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-205.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0895aa08 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-206.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7222391d --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-207.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..51e5fbaa --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-208.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e87f8333 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-209.yaml @@ -0,0 +1,39 @@ +# 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-21.yaml b/java-dedup/keploy/test-set-2/tests/test-21.yaml new file mode 100644 index 00000000..68570011 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-21.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.315428837+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.319343378+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-210.yaml b/java-dedup/keploy/test-set-2/tests/test-210.yaml new file mode 100644 index 00000000..334128e2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-210.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2cc77a74 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-211.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6b16be69 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-212.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9808bee0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-213.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2983f523 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-214.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..122a0e65 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-215.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..73a9bd42 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-216.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..933acd39 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-217.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ec198639 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-218.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..65b866f0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-219.yaml @@ -0,0 +1,39 @@ +# 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-22.yaml b/java-dedup/keploy/test-set-2/tests/test-22.yaml new file mode 100644 index 00000000..f310a259 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-22.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.329083132+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.332541586+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-220.yaml b/java-dedup/keploy/test-set-2/tests/test-220.yaml new file mode 100644 index 00000000..e46c4692 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-220.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..34f8db5a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-221.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..26d03b60 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-222.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..087a55c3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-223.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f9607540 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-224.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..37f830f5 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-225.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5e725814 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-226.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4b15abcf --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-227.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2a8ae7f4 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-228.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..b43dc293 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-229.yaml @@ -0,0 +1,39 @@ +# 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-23.yaml b/java-dedup/keploy/test-set-2/tests/test-23.yaml new file mode 100644 index 00000000..d176bf24 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-23.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.344379468+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.34762198+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-230.yaml b/java-dedup/keploy/test-set-2/tests/test-230.yaml new file mode 100644 index 00000000..594b4bd3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-230.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8bbaca70 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-231.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fb8ed78c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-232.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..dc93aff2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-233.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..29fbbf16 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-234.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..415fb406 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-235.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3728004d --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-236.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a513238c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-237.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..684d53d0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-238.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9fe16689 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-239.yaml @@ -0,0 +1,39 @@ +# 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-24.yaml b/java-dedup/keploy/test-set-2/tests/test-24.yaml new file mode 100644 index 00000000..bc37512b --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-24.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.35703556+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.36011054+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-240.yaml b/java-dedup/keploy/test-set-2/tests/test-240.yaml new file mode 100644 index 00000000..8d1c131d --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-240.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..139f780b --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-241.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b51c66e6 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-242.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..64ea6a52 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-243.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0635b6d4 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-244.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b7821556 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-245.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3679952c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-246.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7a3838df --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-247.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0fd5c01a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-248.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fa15eef6 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-249.yaml @@ -0,0 +1,39 @@ +# 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-25.yaml b/java-dedup/keploy/test-set-2/tests/test-25.yaml new file mode 100644 index 00000000..3198d6e3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-25.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.368641418+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.3719181+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-250.yaml b/java-dedup/keploy/test-set-2/tests/test-250.yaml new file mode 100644 index 00000000..8c8ef5fe --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-250.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..dce7f07a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-251.yaml @@ -0,0 +1,39 @@ +# 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-2/tests/test-26.yaml b/java-dedup/keploy/test-set-2/tests/test-26.yaml new file mode 100644 index 00000000..aa508aee --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-26.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.381043818+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.384154487+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-27.yaml b/java-dedup/keploy/test-set-2/tests/test-27.yaml new file mode 100644 index 00000000..7dc1a8eb --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-27.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.39291531+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.395911928+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-28.yaml b/java-dedup/keploy/test-set-2/tests/test-28.yaml new file mode 100644 index 00000000..590099ac --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-28.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.405549191+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.408313697+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-29.yaml b/java-dedup/keploy/test-set-2/tests/test-29.yaml new file mode 100644 index 00000000..42b652b7 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-29.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.417297902+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.420058387+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-3.yaml b/java-dedup/keploy/test-set-2/tests/test-3.yaml new file mode 100644 index 00000000..c04a4580 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-3.yaml @@ -0,0 +1,42 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-3 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/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:40.088181707+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.095610982+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-30.yaml b/java-dedup/keploy/test-set-2/tests/test-30.yaml new file mode 100644 index 00000000..18d1a52a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-30.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.429163194+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.432461246+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-31.yaml b/java-dedup/keploy/test-set-2/tests/test-31.yaml new file mode 100644 index 00000000..a31facf7 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-31.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.441955408+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.444729243+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-32.yaml b/java-dedup/keploy/test-set-2/tests/test-32.yaml new file mode 100644 index 00000000..e96eaa97 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-32.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-32 +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:40.452797187+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.455749885+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-33.yaml b/java-dedup/keploy/test-set-2/tests/test-33.yaml new file mode 100644 index 00000000..0556a235 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-33.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.464400625+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.468425537+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-34.yaml b/java-dedup/keploy/test-set-2/tests/test-34.yaml new file mode 100644 index 00000000..d00bb7a0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-34.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.477410262+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.48047283+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-35.yaml b/java-dedup/keploy/test-set-2/tests/test-35.yaml new file mode 100644 index 00000000..f0775741 --- /dev/null +++ b/java-dedup/keploy/test-set-2/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/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:40.48819735+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.491153578+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-36.yaml b/java-dedup/keploy/test-set-2/tests/test-36.yaml new file mode 100644 index 00000000..c7d009a3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-36.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.501282557+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.504705721+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-37.yaml b/java-dedup/keploy/test-set-2/tests/test-37.yaml new file mode 100644 index 00000000..58b0e52c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-37.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.512742014+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.516199059+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-38.yaml b/java-dedup/keploy/test-set-2/tests/test-38.yaml new file mode 100644 index 00000000..4de1d7ce --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-38.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.52568242+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.528568967+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-39.yaml b/java-dedup/keploy/test-set-2/tests/test-39.yaml new file mode 100644 index 00000000..228e390e --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-39.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.537425091+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.540621672+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-4.yaml b/java-dedup/keploy/test-set-2/tests/test-4.yaml new file mode 100644 index 00000000..0c77f553 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-4.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.103696186+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.108258404+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-40.yaml b/java-dedup/keploy/test-set-2/tests/test-40.yaml new file mode 100644 index 00000000..f55f9935 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-40.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.549472434+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.552441923+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-41.yaml b/java-dedup/keploy/test-set-2/tests/test-41.yaml new file mode 100644 index 00000000..2dd077bd --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-41.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.561950884+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.56469412+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-42.yaml b/java-dedup/keploy/test-set-2/tests/test-42.yaml new file mode 100644 index 00000000..cf4963d9 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-42.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.572663051+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 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:40.597141845+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-43.yaml b/java-dedup/keploy/test-set-2/tests/test-43.yaml new file mode 100644 index 00000000..3fe0b88c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-43.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.60613117+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.609631285+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-44.yaml b/java-dedup/keploy/test-set-2/tests/test-44.yaml new file mode 100644 index 00000000..c609a876 --- /dev/null +++ b/java-dedup/keploy/test-set-2/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/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:40.617352514+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.620641886+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-45.yaml b/java-dedup/keploy/test-set-2/tests/test-45.yaml new file mode 100644 index 00000000..65d315c0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-45.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.628977323+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.631751298+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-46.yaml b/java-dedup/keploy/test-set-2/tests/test-46.yaml new file mode 100644 index 00000000..268f9e24 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-46.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.641262711+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.64427131+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-47.yaml b/java-dedup/keploy/test-set-2/tests/test-47.yaml new file mode 100644 index 00000000..88d54a43 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-47.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.653233024+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.655996739+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-48.yaml b/java-dedup/keploy/test-set-2/tests/test-48.yaml new file mode 100644 index 00000000..5f9a443c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-48.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.663768908+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.666072448+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-49.yaml b/java-dedup/keploy/test-set-2/tests/test-49.yaml new file mode 100644 index 00000000..f053d26a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-49.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.677613966+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.68035359+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-5.yaml b/java-dedup/keploy/test-set-2/tests/test-5.yaml new file mode 100644 index 00000000..131e9d05 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-5.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.11729618+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.120290937+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-50.yaml b/java-dedup/keploy/test-set-2/tests/test-50.yaml new file mode 100644 index 00000000..a61be664 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-50.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.689785402+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.692661699+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-51.yaml b/java-dedup/keploy/test-set-2/tests/test-51.yaml new file mode 100644 index 00000000..3f00774f --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-51.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.70134506+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.704607402+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-52.yaml b/java-dedup/keploy/test-set-2/tests/test-52.yaml new file mode 100644 index 00000000..349bc194 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-52.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.712769346+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.715790235+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-53.yaml b/java-dedup/keploy/test-set-2/tests/test-53.yaml new file mode 100644 index 00000000..2e766e63 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-53.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.725078464+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.727942961+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-54.yaml b/java-dedup/keploy/test-set-2/tests/test-54.yaml new file mode 100644 index 00000000..eb2587f2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-54.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.738336484+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.741164369+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-55.yaml b/java-dedup/keploy/test-set-2/tests/test-55.yaml new file mode 100644 index 00000000..8f3ad640 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-55.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.749622948+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.75283227+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-56.yaml b/java-dedup/keploy/test-set-2/tests/test-56.yaml new file mode 100644 index 00000000..8891f670 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-56.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.759558876+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.762448602+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-57.yaml b/java-dedup/keploy/test-set-2/tests/test-57.yaml new file mode 100644 index 00000000..1d456c87 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-57.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.770941361+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.773466863+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-58.yaml b/java-dedup/keploy/test-set-2/tests/test-58.yaml new file mode 100644 index 00000000..136c0cd2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-58.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.779846105+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.78247117+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-59.yaml b/java-dedup/keploy/test-set-2/tests/test-59.yaml new file mode 100644 index 00000000..de3180f2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-59.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.79027994+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.792907543+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-6.yaml b/java-dedup/keploy/test-set-2/tests/test-6.yaml new file mode 100644 index 00000000..361ceb64 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-6.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.129711289+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.132763587+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-60.yaml b/java-dedup/keploy/test-set-2/tests/test-60.yaml new file mode 100644 index 00000000..93a9bd40 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-60.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.802630247+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.805738897+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-61.yaml b/java-dedup/keploy/test-set-2/tests/test-61.yaml new file mode 100644 index 00000000..4a89ad09 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-61.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.814790823+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.817497218+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-62.yaml b/java-dedup/keploy/test-set-2/tests/test-62.yaml new file mode 100644 index 00000000..67a720d0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-62.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.826431552+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.829919587+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-63.yaml b/java-dedup/keploy/test-set-2/tests/test-63.yaml new file mode 100644 index 00000000..3ffef908 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-63.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.837991881+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.841543966+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-64.yaml b/java-dedup/keploy/test-set-2/tests/test-64.yaml new file mode 100644 index 00000000..c9feb10b --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-64.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.848563245+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.851390902+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-65.yaml b/java-dedup/keploy/test-set-2/tests/test-65.yaml new file mode 100644 index 00000000..7dfd7c98 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-65.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.858084827+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.860764541+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-66.yaml b/java-dedup/keploy/test-set-2/tests/test-66.yaml new file mode 100644 index 00000000..97814190 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-66.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.868949147+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.870999503+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-67.yaml b/java-dedup/keploy/test-set-2/tests/test-67.yaml new file mode 100644 index 00000000..1abcf35d --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-67.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.877102631+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.87934821+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-68.yaml b/java-dedup/keploy/test-set-2/tests/test-68.yaml new file mode 100644 index 00000000..34175bfa --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-68.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.887117959+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.889664982+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-69.yaml b/java-dedup/keploy/test-set-2/tests/test-69.yaml new file mode 100644 index 00000000..75651094 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-69.yaml @@ -0,0 +1,42 @@ +# 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?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:40.896380037+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"searching_for":"test","limit":"5"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.899168123+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-7.yaml b/java-dedup/keploy/test-set-2/tests/test-7.yaml new file mode 100644 index 00000000..701ad31a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-7.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.140599768+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.143699238+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-70.yaml b/java-dedup/keploy/test-set-2/tests/test-70.yaml new file mode 100644 index 00000000..475ade41 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-70.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.9059708+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.908771497+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-71.yaml b/java-dedup/keploy/test-set-2/tests/test-71.yaml new file mode 100644 index 00000000..3266b5e3 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-71.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.915461903+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.917813532+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-72.yaml b/java-dedup/keploy/test-set-2/tests/test-72.yaml new file mode 100644 index 00000000..8f69e85d --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-72.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.924796662+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.927709399+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-73.yaml b/java-dedup/keploy/test-set-2/tests/test-73.yaml new file mode 100644 index 00000000..b3437067 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-73.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.935797013+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.93871119+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-74.yaml b/java-dedup/keploy/test-set-2/tests/test-74.yaml new file mode 100644 index 00000000..18468845 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-74.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.946437869+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.949027503+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-75.yaml b/java-dedup/keploy/test-set-2/tests/test-75.yaml new file mode 100644 index 00000000..7b4dbf7e --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-75.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.954820056+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.957000955+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-76.yaml b/java-dedup/keploy/test-set-2/tests/test-76.yaml new file mode 100644 index 00000000..8e329470 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-76.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.963766321+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.966223043+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-77.yaml b/java-dedup/keploy/test-set-2/tests/test-77.yaml new file mode 100644 index 00000000..fed81fd0 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-77.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.9746361+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.977535057+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-78.yaml b/java-dedup/keploy/test-set-2/tests/test-78.yaml new file mode 100644 index 00000000..7d1f67af --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-78.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.986162578+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.989689213+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-2/tests/test-79.yaml b/java-dedup/keploy/test-set-2/tests/test-79.yaml new file mode 100644 index 00000000..8596e83b --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-79.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.997018367+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.999572529+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-8.yaml b/java-dedup/keploy/test-set-2/tests/test-8.yaml new file mode 100644 index 00000000..ba8b23e4 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-8.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.151050611+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.153635786+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-80.yaml b/java-dedup/keploy/test-set-2/tests/test-80.yaml new file mode 100644 index 00000000..3640994c --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-80.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.007112954+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:41.00986766+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 '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-81.yaml b/java-dedup/keploy/test-set-2/tests/test-81.yaml new file mode 100644 index 00000000..3639b1e5 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-81.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.018161665+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:41.020696536+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 '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-82.yaml b/java-dedup/keploy/test-set-2/tests/test-82.yaml new file mode 100644 index 00000000..7ddc7709 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-82.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.02898234+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.039701846+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 '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-83.yaml b/java-dedup/keploy/test-set-2/tests/test-83.yaml new file mode 100644 index 00000000..dc491f46 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-83.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.046810515+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.050166578+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-84.yaml b/java-dedup/keploy/test-set-2/tests/test-84.yaml new file mode 100644 index 00000000..a3e36022 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-84.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.057098934+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.05912543+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-85.yaml b/java-dedup/keploy/test-set-2/tests/test-85.yaml new file mode 100644 index 00000000..6841c177 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-85.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.065635632+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.068458488+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 '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-86.yaml b/java-dedup/keploy/test-set-2/tests/test-86.yaml new file mode 100644 index 00000000..ee7c4a9a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-86.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.076343697+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.079251424+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 '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-87.yaml b/java-dedup/keploy/test-set-2/tests/test-87.yaml new file mode 100644 index 00000000..56b1c594 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-87.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.086418685+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.088922916+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-88.yaml b/java-dedup/keploy/test-set-2/tests/test-88.yaml new file mode 100644 index 00000000..e05eeabe --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-88.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.095769942+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.098554617+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 '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-89.yaml b/java-dedup/keploy/test-set-2/tests/test-89.yaml new file mode 100644 index 00000000..78fb79a1 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-89.yaml @@ -0,0 +1,42 @@ +# 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/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.106442857+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.108958058+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-9.yaml b/java-dedup/keploy/test-set-2/tests/test-9.yaml new file mode 100644 index 00000000..7431556a --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-9.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:40.161110091+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:20:40 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:50:40.164558064+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015240 + 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-90.yaml b/java-dedup/keploy/test-set-2/tests/test-90.yaml new file mode 100644 index 00000000..4ba87a18 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-90.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.117631698+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.120378543+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-91.yaml b/java-dedup/keploy/test-set-2/tests/test-91.yaml new file mode 100644 index 00000000..77cde2e2 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-91.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.130311577+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.132779048+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-92.yaml b/java-dedup/keploy/test-set-2/tests/test-92.yaml new file mode 100644 index 00000000..1805f147 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-92.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.141213195+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.143377312+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-93.yaml b/java-dedup/keploy/test-set-2/tests/test-93.yaml new file mode 100644 index 00000000..1df91b53 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-93.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.151332903+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.153933216+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 '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-94.yaml b/java-dedup/keploy/test-set-2/tests/test-94.yaml new file mode 100644 index 00000000..28889597 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-94.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.161724613+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.164335886+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-95.yaml b/java-dedup/keploy/test-set-2/tests/test-95.yaml new file mode 100644 index 00000000..2b7e6a64 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-95.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-95 +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.172691492+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.175216783+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 '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-96.yaml b/java-dedup/keploy/test-set-2/tests/test-96.yaml new file mode 100644 index 00000000..e9413b20 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-96.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.183414016+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.186416405+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 '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-97.yaml b/java-dedup/keploy/test-set-2/tests/test-97.yaml new file mode 100644 index 00000000..4b6cd0cf --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-97.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.195433648+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.198408435+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 '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-98.yaml b/java-dedup/keploy/test-set-2/tests/test-98.yaml new file mode 100644 index 00000000..74566502 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-98.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.20587143+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.208698435+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 '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-99.yaml b/java-dedup/keploy/test-set-2/tests/test-99.yaml new file mode 100644 index 00000000..cd42c249 --- /dev/null +++ b/java-dedup/keploy/test-set-2/tests/test-99.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:50:41.215734454+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.21856483+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 '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-10.yaml b/java-dedup/keploy/test-set-3/tests/test-10.yaml new file mode 100644 index 00000000..d932bc7e --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-10.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.922440569+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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:44.950044903+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-100.yaml b/java-dedup/keploy/test-set-3/tests/test-100.yaml new file mode 100644 index 00000000..69c30a63 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-100.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.836794416+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:45.839183968+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-101.yaml b/java-dedup/keploy/test-set-3/tests/test-101.yaml new file mode 100644 index 00000000..68ee9d16 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-101.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-101 +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:45.846133645+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:45.848025558+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-102.yaml b/java-dedup/keploy/test-set-3/tests/test-102.yaml new file mode 100644 index 00000000..3d9551df --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-102.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c447e037 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-103.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ada3ee78 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-104.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..be9aa753 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-105.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..616340e0 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-106.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..b9e1f94e --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-107.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..b09b99ad --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-108.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..560f47c6 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-109.yaml @@ -0,0 +1,39 @@ +# 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-11.yaml b/java-dedup/keploy/test-set-3/tests/test-11.yaml new file mode 100644 index 00000000..ab83e8e1 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-11.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.959263734+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.964458411+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-110.yaml b/java-dedup/keploy/test-set-3/tests/test-110.yaml new file mode 100644 index 00000000..368203b8 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-110.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a8685abe --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-111.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2dd09621 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-112.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1e5a594b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-113.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8638a49d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-114.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d9d989b2 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-115.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..42a924f6 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-116.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..00413939 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-117.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..79490e76 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-118.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6ba03b5c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-119.yaml @@ -0,0 +1,39 @@ +# 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-12.yaml b/java-dedup/keploy/test-set-3/tests/test-12.yaml new file mode 100644 index 00000000..95aa5c9e --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-12.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.974021162+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.976388794+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-120.yaml b/java-dedup/keploy/test-set-3/tests/test-120.yaml new file mode 100644 index 00000000..269f4010 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-120.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-120 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.022087359+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.024205931+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/ \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-121.yaml b/java-dedup/keploy/test-set-3/tests/test-121.yaml new file mode 100644 index 00000000..304494e7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-121.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-121 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.029898657+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.032527488+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everything \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-122.yaml b/java-dedup/keploy/test-set-3/tests/test-122.yaml new file mode 100644 index 00000000..6e478bcb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-122.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3e7dc8e3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-123.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..99dc22e3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-124.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..56fb9e7b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-125.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b0a15321 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-126.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a79ae6a4 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-127.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e9df7cfb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-128.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4691747f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-129.yaml @@ -0,0 +1,39 @@ +# 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-13.yaml b/java-dedup/keploy/test-set-3/tests/test-13.yaml new file mode 100644 index 00000000..216ce9a1 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-13.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.984250384+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.988784041+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-130.yaml b/java-dedup/keploy/test-set-3/tests/test-130.yaml new file mode 100644 index 00000000..0c9e273c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-130.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d0a4a5ad --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-131.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..11b0efa7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-132.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bca19fde --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-133.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b068786d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-134.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7063f0cc --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-135.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4904752b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-136.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f9c82b1d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-137.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..263b94ef --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-138.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..92d1be08 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-139.yaml @@ -0,0 +1,39 @@ +# 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-14.yaml b/java-dedup/keploy/test-set-3/tests/test-14.yaml new file mode 100644 index 00000000..ae0adf90 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-14.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.997725621+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.000368215+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-140.yaml b/java-dedup/keploy/test-set-3/tests/test-140.yaml new file mode 100644 index 00000000..39101459 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-140.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..83629516 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-141.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f11a63eb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-142.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0ce40416 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-143.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..5f9108cd --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-144.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..651532af --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-145.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..eec54dbb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-146.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..b1e003e0 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-147.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..b7bf9351 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-148.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..95cf474f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-149.yaml @@ -0,0 +1,39 @@ +# 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-15.yaml b/java-dedup/keploy/test-set-3/tests/test-15.yaml new file mode 100644 index 00000000..8e115d6d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-15.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.007778022+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.011084046+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-150.yaml b/java-dedup/keploy/test-set-3/tests/test-150.yaml new file mode 100644 index 00000000..20c91609 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-150.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..fd8a62f3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-151.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5b32b1e6 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-152.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5f9107f3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-153.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8ebfc51c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-154.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f5cc1a91 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-155.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..a670183d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-156.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..103a0241 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-157.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d34c44cb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-158.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e567e718 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-159.yaml @@ -0,0 +1,39 @@ +# 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-16.yaml b/java-dedup/keploy/test-set-3/tests/test-16.yaml new file mode 100644 index 00000000..68cb37d7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-16.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.018546784+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.020988777+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-160.yaml b/java-dedup/keploy/test-set-3/tests/test-160.yaml new file mode 100644 index 00000000..9b469c3f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-160.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2022d487 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-161.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6be231b0 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-162.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..e81649da --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-163.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8f4ceae2 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-164.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..9601d3a0 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-165.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-165 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.416638197+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.418126409+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/somebody \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-166.yaml b/java-dedup/keploy/test-set-3/tests/test-166.yaml new file mode 100644 index 00000000..fc925cf7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-166.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-166 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.423991374+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.426226316+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/somebody \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-167.yaml b/java-dedup/keploy/test-set-3/tests/test-167.yaml new file mode 100644 index 00000000..c9ef5208 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-167.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..14222d86 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-168.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..a3c081ce --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-169.yaml @@ -0,0 +1,39 @@ +# 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-17.yaml b/java-dedup/keploy/test-set-3/tests/test-17.yaml new file mode 100644 index 00000000..c50915cd --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-17.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.029111945+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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:45.038128504+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-170.yaml b/java-dedup/keploy/test-set-3/tests/test-170.yaml new file mode 100644 index 00000000..2a11004b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-170.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b8fbde2c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-171.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..22fe5117 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-172.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-172 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.472795477+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '[{"name":"Eco-friendly Water Bottle","description":"A reusable bottle.","tags":["eco","kitchen"],"product_id":"prod001"},{"name":"Wireless Charger","description":"Charges your devices.","tags":["tech","mobile"],"product_id":"prod002"}]' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.47496743+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/products \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-173.yaml b/java-dedup/keploy/test-set-3/tests/test-173.yaml new file mode 100644 index 00000000..0eda48bb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-173.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-173 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.480731015+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.481911136+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/everyone \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-174.yaml b/java-dedup/keploy/test-set-3/tests/test-174.yaml new file mode 100644 index 00000000..1e5cb44d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-174.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5e01ef29 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-175.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-175 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.49587885+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.497001619+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/somewhere \ + --header 'Accept: */*' \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-176.yaml b/java-dedup/keploy/test-set-3/tests/test-176.yaml new file mode 100644 index 00000000..19964a63 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-176.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-176 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/api/v1/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:46.501932595+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:45 GMT + body: '{"version":1,"users":["alpha","beta"]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:46.503033665+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015306 + app_port: 8080 +curl: | + curl --request GET \ + --url http://127.0.0.1:8080/api/v1/users \ + --header 'Host: 127.0.0.1:8080' \ + --header 'User-Agent: curl/8.19.0' \ + --header 'Accept: */*' \ diff --git a/java-dedup/keploy/test-set-3/tests/test-177.yaml b/java-dedup/keploy/test-set-3/tests/test-177.yaml new file mode 100644 index 00000000..b18e2459 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-177.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f781ccf9 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-178.yaml @@ -0,0 +1,40 @@ +# 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 new file mode 100644 index 00000000..eb7ae2d7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-179.yaml @@ -0,0 +1,39 @@ +# 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-18.yaml b/java-dedup/keploy/test-set-3/tests/test-18.yaml new file mode 100644 index 00000000..4bba6594 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-18.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.048160906+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.050763658+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-180.yaml b/java-dedup/keploy/test-set-3/tests/test-180.yaml new file mode 100644 index 00000000..31e8425c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-180.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..78a29343 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-181.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b7b5b102 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-182.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1f393bce --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-183.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1525c03f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-184.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..0ee20588 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-185.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6cc5b4aa --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-186.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..34c2af14 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-187.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a89f5285 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-188.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ca61dc97 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-189.yaml @@ -0,0 +1,39 @@ +# 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-19.yaml b/java-dedup/keploy/test-set-3/tests/test-19.yaml new file mode 100644 index 00000000..8389c998 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-19.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.057599386+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.059616257+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-190.yaml b/java-dedup/keploy/test-set-3/tests/test-190.yaml new file mode 100644 index 00000000..7d33d8bf --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-190.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f5385168 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-191.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3106128c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-192.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..371d2a60 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-193.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4360e812 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-194.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..59a9ea4a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-195.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ce97d474 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-196.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..42402af5 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-197.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a898ab37 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-198.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..1891d2c0 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-199.yaml @@ -0,0 +1,39 @@ +# 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-2.yaml b/java-dedup/keploy/test-set-3/tests/test-2.yaml new file mode 100644 index 00000000..c91a881c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-2.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-2 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.808081369+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.829617705+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-3/tests/test-20.yaml b/java-dedup/keploy/test-set-3/tests/test-20.yaml new file mode 100644 index 00000000..55adeb54 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-20.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.065843754+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.068151277+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-200.yaml b/java-dedup/keploy/test-set-3/tests/test-200.yaml new file mode 100644 index 00000000..b7ab084e --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-200.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7f37e384 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-201.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ae009cae --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-202.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..3ff39ed3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-203.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ffc0c5ae --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-204.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..63a0feae --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-205.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4741caec --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-206.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4def0110 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-207.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..c71be5f3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-208.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d747f17f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-209.yaml @@ -0,0 +1,39 @@ +# 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-21.yaml b/java-dedup/keploy/test-set-3/tests/test-21.yaml new file mode 100644 index 00000000..c353f762 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-21.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.077072737+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.079442429+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-210.yaml b/java-dedup/keploy/test-set-3/tests/test-210.yaml new file mode 100644 index 00000000..4505e55b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-210.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..a7f25da8 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-211.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..78d27d69 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-212.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..48f54cc3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-213.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..2d827b2b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-214.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8938143b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-215.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..331d1fbe --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-216.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..cfbb7168 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-217.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4c548462 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-218.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..bf4130ac --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-219.yaml @@ -0,0 +1,40 @@ +# 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-22.yaml b/java-dedup/keploy/test-set-3/tests/test-22.yaml new file mode 100644 index 00000000..066766ba --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-22.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.086472156+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.088988289+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-220.yaml b/java-dedup/keploy/test-set-3/tests/test-220.yaml new file mode 100644 index 00000000..1a7a7896 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-220.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d37ea348 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-221.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7913e167 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-222.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..96538384 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-223.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..ffa39c4d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-224.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..05fe417b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-225.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..8f78d5cb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-226.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5825e4eb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-227.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..55e1321b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-228.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..463b80f8 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-229.yaml @@ -0,0 +1,39 @@ +# 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-23.yaml b/java-dedup/keploy/test-set-3/tests/test-23.yaml new file mode 100644 index 00000000..058b900b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-23.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.097111388+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.0995269+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-230.yaml b/java-dedup/keploy/test-set-3/tests/test-230.yaml new file mode 100644 index 00000000..863147c2 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-230.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..c69c867f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-231.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..280bf67f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-232.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..da07469c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-233.yaml @@ -0,0 +1,42 @@ +# 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 new file mode 100644 index 00000000..6bcac7ec --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-234.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..4429b4d6 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-235.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..960e9312 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-236.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..74c586b7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-237.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6c4af566 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-238.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6281172a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-239.yaml @@ -0,0 +1,39 @@ +# 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-24.yaml b/java-dedup/keploy/test-set-3/tests/test-24.yaml new file mode 100644 index 00000000..12a7a691 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-24.yaml @@ -0,0 +1,39 @@ +# 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/everything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.106330027+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.109154891+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-240.yaml b/java-dedup/keploy/test-set-3/tests/test-240.yaml new file mode 100644 index 00000000..5651ec07 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-240.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..5b54a501 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-241.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..d107f25e --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-242.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..93e98cde --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-243.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7209b52c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-244.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..7cd8864b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-245.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..11d128e8 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-246.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..b77642db --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-247.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6d465e10 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-248.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..f15395f7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-249.yaml @@ -0,0 +1,39 @@ +# 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-25.yaml b/java-dedup/keploy/test-set-3/tests/test-25.yaml new file mode 100644 index 00000000..56680c6a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-25.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.11800661+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.120667623+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-250.yaml b/java-dedup/keploy/test-set-3/tests/test-250.yaml new file mode 100644 index 00000000..4175906a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-250.yaml @@ -0,0 +1,39 @@ +# 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 new file mode 100644 index 00000000..6963a631 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-251.yaml @@ -0,0 +1,39 @@ +# 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/keploy/test-set-3/tests/test-26.yaml b/java-dedup/keploy/test-set-3/tests/test-26.yaml new file mode 100644 index 00000000..4f3ca98b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-26.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.127584751+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.129956503+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-27.yaml b/java-dedup/keploy/test-set-3/tests/test-27.yaml new file mode 100644 index 00000000..f7eb8f87 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-27.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.138548882+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.141515984+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-28.yaml b/java-dedup/keploy/test-set-3/tests/test-28.yaml new file mode 100644 index 00000000..e76e691b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-28.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.147582661+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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.150000854+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-29.yaml b/java-dedup/keploy/test-set-3/tests/test-29.yaml new file mode 100644 index 00000000..7b911554 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-29.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.157063271+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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.159749505+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 '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-3.yaml b/java-dedup/keploy/test-set-3/tests/test-3.yaml new file mode 100644 index 00000000..8d556d84 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-3.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-3 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://127.0.0.1:8080/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.838323007+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.842100971+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-3/tests/test-30.yaml b/java-dedup/keploy/test-set-3/tests/test-30.yaml new file mode 100644 index 00000000..f27fd3c2 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-30.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.167359703+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.170426405+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 '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-31.yaml b/java-dedup/keploy/test-set-3/tests/test-31.yaml new file mode 100644 index 00000000..3d6c8c4a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-31.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.177876644+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.180467066+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-32.yaml b/java-dedup/keploy/test-set-3/tests/test-32.yaml new file mode 100644 index 00000000..0970e2fd --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-32.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-32 +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:45.186909223+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.189948776+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-33.yaml b/java-dedup/keploy/test-set-3/tests/test-33.yaml new file mode 100644 index 00000000..a6eeead8 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-33.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.197171204+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.199839767+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-34.yaml b/java-dedup/keploy/test-set-3/tests/test-34.yaml new file mode 100644 index 00000000..ae84077c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-34.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.206257083+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.208838956+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-35.yaml b/java-dedup/keploy/test-set-3/tests/test-35.yaml new file mode 100644 index 00000000..2795b48e --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-35.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.215275653+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.218310116+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-36.yaml b/java-dedup/keploy/test-set-3/tests/test-36.yaml new file mode 100644 index 00000000..72f26ea0 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-36.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.225598504+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.228471677+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-37.yaml b/java-dedup/keploy/test-set-3/tests/test-37.yaml new file mode 100644 index 00000000..90f97ed5 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-37.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.235870895+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.239208728+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-38.yaml b/java-dedup/keploy/test-set-3/tests/test-38.yaml new file mode 100644 index 00000000..088f5765 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-38.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.245991246+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.248462698+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-39.yaml b/java-dedup/keploy/test-set-3/tests/test-39.yaml new file mode 100644 index 00000000..c13e10b4 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-39.yaml @@ -0,0 +1,39 @@ +# 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/products + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.255575516+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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:45.257802378+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-4.yaml b/java-dedup/keploy/test-set-3/tests/test-4.yaml new file mode 100644 index 00000000..39d8da66 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-4.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.851688143+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.856890219+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-3/tests/test-40.yaml b/java-dedup/keploy/test-set-3/tests/test-40.yaml new file mode 100644 index 00000000..e7b98d9c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-40.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.265151846+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.26810262+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-41.yaml b/java-dedup/keploy/test-set-3/tests/test-41.yaml new file mode 100644 index 00000000..e375c3cf --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-41.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.27688667+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.279351952+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-42.yaml b/java-dedup/keploy/test-set-3/tests/test-42.yaml new file mode 100644 index 00000000..013e2808 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-42.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.286057529+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.288637571+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-43.yaml b/java-dedup/keploy/test-set-3/tests/test-43.yaml new file mode 100644 index 00000000..6bbbf037 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-43.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.297855032+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.300929815+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-44.yaml b/java-dedup/keploy/test-set-3/tests/test-44.yaml new file mode 100644 index 00000000..0774be0d --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-44.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.309367254+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.312866697+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-45.yaml b/java-dedup/keploy/test-set-3/tests/test-45.yaml new file mode 100644 index 00000000..656d94e3 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-45.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.320143374+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.322554958+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-46.yaml b/java-dedup/keploy/test-set-3/tests/test-46.yaml new file mode 100644 index 00000000..6eedc97b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-46.yaml @@ -0,0 +1,39 @@ +# 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/somebody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.329538145+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Somebody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.331900918+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-47.yaml b/java-dedup/keploy/test-set-3/tests/test-47.yaml new file mode 100644 index 00000000..87cce975 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-47.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.339588606+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.341861119+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/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-48.yaml b/java-dedup/keploy/test-set-3/tests/test-48.yaml new file mode 100644 index 00000000..e1e3e561 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-48.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.346828384+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.348658675+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 '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-49.yaml b/java-dedup/keploy/test-set-3/tests/test-49.yaml new file mode 100644 index 00000000..fc75f674 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-49.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.354720171+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.357328284+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-5.yaml b/java-dedup/keploy/test-set-3/tests/test-5.yaml new file mode 100644 index 00000000..b81850db --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-5.yaml @@ -0,0 +1,39 @@ +# 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/proxy + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.867258622+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"forwarding_to":"downstream-service"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.870278396+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-50.yaml b/java-dedup/keploy/test-set-3/tests/test-50.yaml new file mode 100644 index 00000000..2f4560eb --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-50.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.365531423+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.367764506+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-51.yaml b/java-dedup/keploy/test-set-3/tests/test-51.yaml new file mode 100644 index 00000000..11b65d51 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-51.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.374400832+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.378138146+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-52.yaml b/java-dedup/keploy/test-set-3/tests/test-52.yaml new file mode 100644 index 00000000..fa954f58 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-52.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.385804786+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.388002237+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 '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-53.yaml b/java-dedup/keploy/test-set-3/tests/test-53.yaml new file mode 100644 index 00000000..b1c3edd7 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-53.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.393728973+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.395083465+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 '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-54.yaml b/java-dedup/keploy/test-set-3/tests/test-54.yaml new file mode 100644 index 00000000..8703af5c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-54.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.401509652+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.402926363+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 '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-55.yaml b/java-dedup/keploy/test-set-3/tests/test-55.yaml new file mode 100644 index 00000000..e90705c1 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-55.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.408599989+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.40973683+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 '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-56.yaml b/java-dedup/keploy/test-set-3/tests/test-56.yaml new file mode 100644 index 00000000..b1f4232a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-56.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.415065136+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.416234547+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 '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-57.yaml b/java-dedup/keploy/test-set-3/tests/test-57.yaml new file mode 100644 index 00000000..55c58122 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-57.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.423443835+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.425578647+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-58.yaml b/java-dedup/keploy/test-set-3/tests/test-58.yaml new file mode 100644 index 00000000..fb01734a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-58.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.432290424+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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.434599736+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 '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-59.yaml b/java-dedup/keploy/test-set-3/tests/test-59.yaml new file mode 100644 index 00000000..04fb3cc8 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-59.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.440329373+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.442857375+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-6.yaml b/java-dedup/keploy/test-set-3/tests/test-6.yaml new file mode 100644 index 00000000..80f2bee1 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-6.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.877589674+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.883411292+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-3/tests/test-60.yaml b/java-dedup/keploy/test-set-3/tests/test-60.yaml new file mode 100644 index 00000000..cb513137 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-60.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.451541155+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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.453828938+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 '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-61.yaml b/java-dedup/keploy/test-set-3/tests/test-61.yaml new file mode 100644 index 00000000..6a06411f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-61.yaml @@ -0,0 +1,39 @@ +# 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/info + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.461285495+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":"1.0.2","author":"Keploy"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.463832338+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 '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-62.yaml b/java-dedup/keploy/test-set-3/tests/test-62.yaml new file mode 100644 index 00000000..fac12237 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-62.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.472032376+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"payload":"new data format"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.47432279+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 '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-63.yaml b/java-dedup/keploy/test-set-3/tests/test-63.yaml new file mode 100644 index 00000000..b6e514ae --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-63.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.480843786+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.483294068+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/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-64.yaml b/java-dedup/keploy/test-set-3/tests/test-64.yaml new file mode 100644 index 00000000..e96e4e50 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-64.yaml @@ -0,0 +1,39 @@ +# 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/healthz + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.491854508+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"healthy":true}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.49390372+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 '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-65.yaml b/java-dedup/keploy/test-set-3/tests/test-65.yaml new file mode 100644 index 00000000..1f57fd96 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-65.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.500117636+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.502534479+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-66.yaml b/java-dedup/keploy/test-set-3/tests/test-66.yaml new file mode 100644 index 00000000..86c7ad12 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-66.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.509904257+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.511717319+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 '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-67.yaml b/java-dedup/keploy/test-set-3/tests/test-67.yaml new file mode 100644 index 00000000..49dbe6cf --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-67.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.517893315+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.520103758+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 '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-68.yaml b/java-dedup/keploy/test-set-3/tests/test-68.yaml new file mode 100644 index 00000000..d579a044 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-68.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.527814336+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.530033889+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-69.yaml b/java-dedup/keploy/test-set-3/tests/test-69.yaml new file mode 100644 index 00000000..b9cdc17c --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-69.yaml @@ -0,0 +1,39 @@ +# 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/someone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.537443747+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Someone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.539901558+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-7.yaml b/java-dedup/keploy/test-set-3/tests/test-7.yaml new file mode 100644 index 00000000..934a1441 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-7.yaml @@ -0,0 +1,40 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-7 +spec: + metadata: {} + req: + method: 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:44.892117302+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.895161335+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-70.yaml b/java-dedup/keploy/test-set-3/tests/test-70.yaml new file mode 100644 index 00000000..496348b8 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-70.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.547571358+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.550499721+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/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-71.yaml b/java-dedup/keploy/test-set-3/tests/test-71.yaml new file mode 100644 index 00000000..bdfe3869 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-71.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.556728667+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":1,"data":"legacy data"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.558504359+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 '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-72.yaml b/java-dedup/keploy/test-set-3/tests/test-72.yaml new file mode 100644 index 00000000..5385de3b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-72.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.566342667+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.56926952+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-73.yaml b/java-dedup/keploy/test-set-3/tests/test-73.yaml new file mode 100644 index 00000000..79788f69 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-73.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.577198559+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.579373481+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-74.yaml b/java-dedup/keploy/test-set-3/tests/test-74.yaml new file mode 100644 index 00000000..6f9e866b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-74.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.588495731+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.591518354+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-75.yaml b/java-dedup/keploy/test-set-3/tests/test-75.yaml new file mode 100644 index 00000000..ae815830 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-75.yaml @@ -0,0 +1,40 @@ +# 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/ping + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.599901862+05:30 + resp: + status_code: 200 + header: + Content-Length: "4" + Content-Type: text/plain;charset=UTF-8 + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: pong + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.601929755+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 '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-76.yaml b/java-dedup/keploy/test-set-3/tests/test-76.yaml new file mode 100644 index 00000000..a2065db5 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-76.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.609211363+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.611592986+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-77.yaml b/java-dedup/keploy/test-set-3/tests/test-77.yaml new file mode 100644 index 00000000..065ebd83 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-77.yaml @@ -0,0 +1,39 @@ +# 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/system/logs + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.616848221+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"log_level":"INFO","entries":1024}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.618670103+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-78.yaml b/java-dedup/keploy/test-set-3/tests/test-78.yaml new file mode 100644 index 00000000..4f0ef072 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-78.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.624777859+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.627433003+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-79.yaml b/java-dedup/keploy/test-set-3/tests/test-79.yaml new file mode 100644 index 00000000..e0066434 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-79.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.636276901+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Anything"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.638464084+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-8.yaml b/java-dedup/keploy/test-set-3/tests/test-8.yaml new file mode 100644 index 00000000..37af5286 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-8.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.903119815+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.906073789+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-80.yaml b/java-dedup/keploy/test-set-3/tests/test-80.yaml new file mode 100644 index 00000000..44c43dc9 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-80.yaml @@ -0,0 +1,39 @@ +# 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/user/123/profile + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.646397853+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"user_id":"123","profile":"..."}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.650080367+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-81.yaml b/java-dedup/keploy/test-set-3/tests/test-81.yaml new file mode 100644 index 00000000..594abc08 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-81.yaml @@ -0,0 +1,39 @@ +# 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/nowhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.658588925+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nowhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.661058248+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-82.yaml b/java-dedup/keploy/test-set-3/tests/test-82.yaml new file mode 100644 index 00000000..1d1de5ac --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-82.yaml @@ -0,0 +1,39 @@ +# 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/noone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.668363406+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"No one"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.670651458+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-83.yaml b/java-dedup/keploy/test-set-3/tests/test-83.yaml new file mode 100644 index 00000000..0ad1490f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-83.yaml @@ -0,0 +1,39 @@ +# 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/system/metrics + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.678152536+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"cpu_usage":"15%","memory":"256MB"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.680102598+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-84.yaml b/java-dedup/keploy/test-set-3/tests/test-84.yaml new file mode 100644 index 00000000..0750efea --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-84.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.686315615+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.688598788+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-3/tests/test-85.yaml b/java-dedup/keploy/test-set-3/tests/test-85.yaml new file mode 100644 index 00000000..4c520439 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-85.yaml @@ -0,0 +1,39 @@ +# 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/ + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.695522604+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"status":"ok"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.697829537+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-86.yaml b/java-dedup/keploy/test-set-3/tests/test-86.yaml new file mode 100644 index 00000000..6c9e0651 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-86.yaml @@ -0,0 +1,39 @@ +# 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/items + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.703392444+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 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.706510706+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 '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-87.yaml b/java-dedup/keploy/test-set-3/tests/test-87.yaml new file mode 100644 index 00000000..5bb13c7f --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-87.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.713903535+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"version":2,"users":[{"name":"gamma"},{"name":"delta"}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.716047057+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/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-88.yaml b/java-dedup/keploy/test-set-3/tests/test-88.yaml new file mode 100644 index 00000000..e9cb723a --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-88.yaml @@ -0,0 +1,39 @@ +# 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/anybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.722082624+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Anybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.724042645+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-89.yaml b/java-dedup/keploy/test-set-3/tests/test-89.yaml new file mode 100644 index 00000000..fdd29c5e --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-89.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.730875532+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.734070246+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 '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-9.yaml b/java-dedup/keploy/test-set-3/tests/test-9.yaml new file mode 100644 index 00000000..9a68f093 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-9.yaml @@ -0,0 +1,39 @@ +# 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/somewhere + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:44.912728247+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Somewhere"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:44.91497638+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015304 + 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-90.yaml b/java-dedup/keploy/test-set-3/tests/test-90.yaml new file mode 100644 index 00000000..ba5faa50 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-90.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.741543093+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.743769967+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-91.yaml b/java-dedup/keploy/test-set-3/tests/test-91.yaml new file mode 100644 index 00000000..d38f1808 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-91.yaml @@ -0,0 +1,39 @@ +# 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/status + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.750572033+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"service":"user-api","status":"active"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.752907766+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-92.yaml b/java-dedup/keploy/test-set-3/tests/test-92.yaml new file mode 100644 index 00000000..4a2b65b1 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-92.yaml @@ -0,0 +1,39 @@ +# 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/nothing + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.760081064+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Nothing"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.762288266+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 '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-93.yaml b/java-dedup/keploy/test-set-3/tests/test-93.yaml new file mode 100644 index 00000000..dd96754b --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-93.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.770132954+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.772464726+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-94.yaml b/java-dedup/keploy/test-set-3/tests/test-94.yaml new file mode 100644 index 00000000..c16023f9 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-94.yaml @@ -0,0 +1,39 @@ +# 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/everybody + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.780595995+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everybody"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.782729878+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-95.yaml b/java-dedup/keploy/test-set-3/tests/test-95.yaml new file mode 100644 index 00000000..f6b42027 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-95.yaml @@ -0,0 +1,39 @@ +# Generated by Keploy (3-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-95 +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:45.790251155+05:30 + resp: + status_code: 200 + header: + Content-Type: application/json + Date: Fri, 24 Apr 2026 07:21:44 GMT + body: '{"message":"Everyone"}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2026-04-24T12:51:45.792617978+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-96.yaml b/java-dedup/keploy/test-set-3/tests/test-96.yaml new file mode 100644 index 00000000..32bb3241 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-96.yaml @@ -0,0 +1,39 @@ +# 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/api/v1/data + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.800117606+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.802180328+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-97.yaml b/java-dedup/keploy/test-set-3/tests/test-97.yaml new file mode 100644 index 00000000..325f4608 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-97.yaml @@ -0,0 +1,39 @@ +# 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/everyone + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.808133795+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:45.810162157+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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-98.yaml b/java-dedup/keploy/test-set-3/tests/test-98.yaml new file mode 100644 index 00000000..3be9dc76 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-98.yaml @@ -0,0 +1,39 @@ +# 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/api/v2/users + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.816209663+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:45.818460996+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/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-99.yaml b/java-dedup/keploy/test-set-3/tests/test-99.yaml new file mode 100644 index 00000000..211bc3a4 --- /dev/null +++ b/java-dedup/keploy/test-set-3/tests/test-99.yaml @@ -0,0 +1,39 @@ +# 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/anything + header: + Accept: '*/*' + Host: 127.0.0.1:8080 + User-Agent: curl/8.19.0 + body: "" + timestamp: 2026-04-24T12:51:45.826422244+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:45.828670427+05:30 + objects: [] + assertions: + noise: + header.Date: [] + created: 1777015305 + 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' \ From 4212b878e5b1dab785e6458de3bcf671a15e9b54 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Fri, 24 Apr 2026 14:02:57 +0530 Subject: [PATCH 08/10] fix: prebuild Java dedup Docker image Signed-off-by: Asish Kumar --- java-dedup/README.md | 8 ++++++-- java-dedup/docker-compose.yml | 5 +++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/java-dedup/README.md b/java-dedup/README.md index 9da96fa8..8ea0167c 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -34,11 +34,15 @@ keploy test \ Run it with Docker Compose after the Maven package step has created `target/java-dedup-0.0.1-SNAPSHOT.jar`: ```bash -docker compose up --build +docker compose build +docker compose up ``` +The Compose file supports `JAVA_DEDUP_IMAGE`, `JAVA_DEDUP_CONTAINER_NAME`, and `JAVA_DEDUP_HOST_PORT` so CI can isolate repeated replay runs without recording new tests. + The Compose app bind-mounts host `/tmp` into the container so Keploy and the Java SDK use the same Unix socket paths for `/tmp/coverage_control.sock` and `/tmp/coverage_data.sock`. The image runs as a non-root user. For a more restricted container run with a read-only root filesystem, dropped capabilities, `no-new-privileges`, and writable host `/tmp` bind-mounted for Keploy's Unix sockets: ```bash -docker compose -f docker-compose.yml -f docker-compose.restricted.yml up --build +docker compose -f docker-compose.yml -f docker-compose.restricted.yml build +docker compose -f docker-compose.yml -f docker-compose.restricted.yml up ``` diff --git a/java-dedup/docker-compose.yml b/java-dedup/docker-compose.yml index 97bd4b84..0cbfea73 100644 --- a/java-dedup/docker-compose.yml +++ b/java-dedup/docker-compose.yml @@ -1,13 +1,14 @@ services: java-dedup: + image: ${JAVA_DEDUP_IMAGE:-java-dedup:local} build: context: . dockerfile: Dockerfile args: JAVA_VERSION: ${JAVA_VERSION:-8} - container_name: dedup-java + container_name: ${JAVA_DEDUP_CONTAINER_NAME:-dedup-java} ports: - - "8080:8080" + - "${JAVA_DEDUP_HOST_PORT:-8080}:8080" environment: KEPLOY_JAVA_CLASS_DIRS: /app/target/classes volumes: From 48a8a615ebbab2115c274f79ef832235de325d61 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Sat, 25 Apr 2026 19:38:02 +0530 Subject: [PATCH 09/10] fix(java-dedup): drop JaCoCo TCP server requirement - Update Dockerfile entrypoint to load jacocoagent.jar without output=tcpserver, address, or port options. The Java SDK now reads coverage in-process via JaCoCo's runtime API. - Rewrite README to cover dedup mode for native, Docker, and restricted Docker without --pass-through-ports. Signed-off-by: Asish Kumar --- java-dedup/Dockerfile | 2 +- java-dedup/README.md | 62 ++++++++++++++++++++++++++++++++++--------- 2 files changed, 50 insertions(+), 14 deletions(-) diff --git a/java-dedup/Dockerfile b/java-dedup/Dockerfile index c7d357c7..14fe6721 100644 --- a/java-dedup/Dockerfile +++ b/java-dedup/Dockerfile @@ -13,4 +13,4 @@ COPY --chown=10001:10001 target/classes /app/target/classes ENV KEPLOY_JAVA_CLASS_DIRS=/app/target/classes EXPOSE 8080 USER 10001:10001 -ENTRYPOINT ["java", "-javaagent:/app/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=/tmp/jacoco-keploy.exec,output=tcpserver", "-jar", "/app/app.jar"] +ENTRYPOINT ["java", "-javaagent:/app/jacocoagent.jar", "-jar", "/app/app.jar"] diff --git a/java-dedup/README.md b/java-dedup/README.md index 8ea0167c..75594167 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -1,48 +1,84 @@ # Java Dynamic Deduplication Sample -This sample is a Spring Boot application used by Keploy CI to validate Java dynamic deduplication in native and Docker runs. 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 in native and Docker runs. It mirrors the Go dedup sample by exposing a broad set of endpoints and committing 1000 replay fixtures across four testsets. CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup`. -Build the application after installing the Java SDK locally: +## How dedup works for Java + +Keploy's dynamic dedup engine asks the application for per-test code coverage between every replayed test, then skips future tests whose coverage signature it has already seen. The Java SDK (`io.keploy.dedup.KeployDedupAgent`, bundled in the app via the `keploy-sdk` dependency) handles that coverage exchange. + +The SDK reads coverage **in-process** through JaCoCo's runtime API (`org.jacoco.agent.rt.RT.getAgent().getExecutionData(...)`). All you have to do is attach the JaCoCo Java agent — no TCP server, no port choice, no `--pass-through-ports`: + +``` +-javaagent:target/jacocoagent.jar +``` + +The SDK still falls back to JaCoCo's TCP server mode if the in-process API is unavailable for some reason, which is why the `KEPLOY_JACOCO_HOST` and `KEPLOY_JACOCO_PORT` environment variables are still honoured. + +## Build ```bash mvn -B -DskipTests package ``` -Run it natively with JaCoCo TCP server mode: +This produces `target/java-dedup-0.0.1-SNAPSHOT.jar` and copies `target/jacocoagent.jar` next to it. + +## Native run + +Start the app with the JaCoCo agent attached: ```bash -java -javaagent:target/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=target/jacoco-keploy.exec,output=tcpserver \ +java -javaagent:target/jacocoagent.jar \ -jar target/java-dedup-0.0.1-SNAPSHOT.jar ``` +Replay with dynamic dedup: + +```bash +keploy test \ + -c "java -javaagent:target/jacocoagent.jar -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ + --dedup --language java --delay 20 +``` + To regenerate the committed fixtures locally, record high-volume traffic against the running app: ```bash ./run_random_1000.sh ``` -When replaying with dynamic deduplication, pass the JaCoCo port through Keploy so the SDK can talk to the local JaCoCo TCP server: +## Docker run + +Build the JAR first, then build the image. The Dockerfile already wires the JaCoCo agent into the entrypoint: ```bash -keploy test \ - -c "java -javaagent:target/jacocoagent.jar=address=127.0.0.1,port=36320,destfile=target/jacoco-keploy.exec,output=tcpserver -jar target/java-dedup-0.0.1-SNAPSHOT.jar" \ - --dedup --pass-through-ports 36320 +mvn -B -DskipTests package +docker compose build ``` -Run it with Docker Compose after the Maven package step has created `target/java-dedup-0.0.1-SNAPSHOT.jar`: +Run with Keploy in dedup mode: ```bash -docker compose build -docker compose up +keploy test \ + -c "docker compose up" \ + --container-name "dedup-java" \ + --dedup --language java --delay 20 ``` The Compose file supports `JAVA_DEDUP_IMAGE`, `JAVA_DEDUP_CONTAINER_NAME`, and `JAVA_DEDUP_HOST_PORT` so CI can isolate repeated replay runs without recording new tests. -The Compose app bind-mounts host `/tmp` into the container so Keploy and the Java SDK use the same Unix socket paths for `/tmp/coverage_control.sock` and `/tmp/coverage_data.sock`. The image runs as a non-root user. For a more restricted container run with a read-only root filesystem, dropped capabilities, `no-new-privileges`, and writable host `/tmp` bind-mounted for Keploy's Unix sockets: +The Compose app bind-mounts host `/tmp` into the container so Keploy and the Java SDK use the same Unix socket paths for `/tmp/coverage_control.sock` and `/tmp/coverage_data.sock`. + +### Restricted Docker + +For a more restricted container — read-only root filesystem, dropped capabilities, and `no-new-privileges` — overlay the restricted compose file: ```bash docker compose -f docker-compose.yml -f docker-compose.restricted.yml build -docker compose -f docker-compose.yml -f docker-compose.restricted.yml up +keploy test \ + -c "docker compose -f docker-compose.yml -f docker-compose.restricted.yml up" \ + --container-name "dedup-java" \ + --dedup --language java --delay 20 ``` + +Host `/tmp` is still bind-mounted so the SDK and Keploy share the dedup Unix sockets. From e313cc4d3d3e10b68aecf5c27864ee7c6d56cdeb Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Sat, 25 Apr 2026 19:40:35 +0530 Subject: [PATCH 10/10] docs(java-dedup): focus README on dedup-mode replay - Trim the README to only cover running the sample in dedup mode for native, Docker, and restricted Docker. - Drop generic build/recording sections; the sample is replay-only and CI does not record. Signed-off-by: Asish Kumar --- java-dedup/README.md | 45 +++++++++----------------------------------- 1 file changed, 9 insertions(+), 36 deletions(-) diff --git a/java-dedup/README.md b/java-dedup/README.md index 75594167..4273f980 100644 --- a/java-dedup/README.md +++ b/java-dedup/README.md @@ -1,20 +1,10 @@ # Java Dynamic Deduplication Sample -A Spring Boot application used by Keploy CI to validate Java dynamic deduplication in native and Docker runs. 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 1000 replay fixtures across four testsets. CI does not record this sample. The `keploy/` directory is checked in so the pipeline only builds the app and runs replay with `--dedup`. -## How dedup works for Java - -Keploy's dynamic dedup engine asks the application for per-test code coverage between every replayed test, then skips future tests whose coverage signature it has already seen. The Java SDK (`io.keploy.dedup.KeployDedupAgent`, bundled in the app via the `keploy-sdk` dependency) handles that coverage exchange. - -The SDK reads coverage **in-process** through JaCoCo's runtime API (`org.jacoco.agent.rt.RT.getAgent().getExecutionData(...)`). All you have to do is attach the JaCoCo Java agent — no TCP server, no port choice, no `--pass-through-ports`: - -``` --javaagent:target/jacocoagent.jar -``` - -The SDK still falls back to JaCoCo's TCP server mode if the in-process API is unavailable for some reason, which is why the `KEPLOY_JACOCO_HOST` and `KEPLOY_JACOCO_PORT` environment variables are still honoured. +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`. ## Build @@ -24,16 +14,7 @@ mvn -B -DskipTests package This produces `target/java-dedup-0.0.1-SNAPSHOT.jar` and copies `target/jacocoagent.jar` next to it. -## Native run - -Start the app with the JaCoCo agent attached: - -```bash -java -javaagent:target/jacocoagent.jar \ - -jar target/java-dedup-0.0.1-SNAPSHOT.jar -``` - -Replay with dynamic dedup: +## Run dedup natively ```bash keploy test \ @@ -41,22 +22,15 @@ keploy test \ --dedup --language java --delay 20 ``` -To regenerate the committed fixtures locally, record high-volume traffic against the running app: - -```bash -./run_random_1000.sh -``` +## Run dedup with Docker -## Docker run - -Build the JAR first, then build the image. The Dockerfile already wires the JaCoCo agent into the entrypoint: +Build the image (the Dockerfile already attaches the JaCoCo agent): ```bash -mvn -B -DskipTests package docker compose build ``` -Run with Keploy in dedup mode: +Replay with dedup: ```bash keploy test \ @@ -65,16 +39,15 @@ keploy test \ --dedup --language java --delay 20 ``` -The Compose file supports `JAVA_DEDUP_IMAGE`, `JAVA_DEDUP_CONTAINER_NAME`, and `JAVA_DEDUP_HOST_PORT` so CI can isolate repeated replay runs without recording new tests. - -The Compose app bind-mounts host `/tmp` into the container so Keploy and the Java SDK use the same Unix socket paths for `/tmp/coverage_control.sock` and `/tmp/coverage_data.sock`. +The Compose file bind-mounts host `/tmp` into the container so Keploy and the Java SDK share `/tmp/coverage_control.sock` and `/tmp/coverage_data.sock`. ### Restricted Docker -For a more restricted container — read-only root filesystem, dropped capabilities, and `no-new-privileges` — overlay the restricted compose file: +For a read-only root filesystem with dropped capabilities and `no-new-privileges`, overlay the restricted compose file: ```bash docker compose -f docker-compose.yml -f docker-compose.restricted.yml build + keploy test \ -c "docker compose -f docker-compose.yml -f docker-compose.restricted.yml up" \ --container-name "dedup-java" \