diff --git a/.github/workflows/keploy-e2e.yml b/.github/workflows/keploy-e2e.yml new file mode 100644 index 0000000..21435f3 --- /dev/null +++ b/.github/workflows/keploy-e2e.yml @@ -0,0 +1,89 @@ +name: Keploy E2E on PR + +on: + pull_request: + branches: [ main ] + +permissions: + contents: read + +concurrency: + group: keploy-e2e-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + keploy-e2e: + name: Install Keploy, build, and run tests + runs-on: ubuntu-latest + timeout-minutes: 60 + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Show Docker and Compose versions + run: | + docker --version + docker compose version + + - name: Install Keploy CLI + shell: bash + run: | + set -euo pipefail + curl --silent -O -L https://keploy.io/install.sh + # Source in current shell so the script can modify PATH for this step if needed + source install.sh + # Verify installation + command -v keploy + keploy version || true + + - name: Build Docker images (compose) + run: | + docker compose build --pull + + - name: Run Keploy tests against docker compose + env: + # Increase Docker's default logs size to keep useful output (optional) + COMPOSE_HTTP_TIMEOUT: "200" + run: | + # Run keploy with the provided command and options + keploy test -c "docker compose up" \ + --container-name="user_service" \ + --path="./user_service" \ + --config-path="./user_service" \ + --delay 20 \ + -t atg + + - name: Upload Keploy artifacts (user_service) + if: always() + uses: actions/upload-artifact@v4 + with: + name: keploy-user_service-artifacts + path: | + user_service/keploy/** + if-no-files-found: warn + retention-days: 7 + + - name: Upload service coverage (optional) + if: always() + uses: actions/upload-artifact@v4 + with: + name: service-coverage + path: | + coverage/** + apigateway/coverage/** + user_service/coverage/** + product_service/coverage/** + order_service/coverage/** + if-no-files-found: ignore + retention-days: 7 + + - name: Teardown docker compose + if: always() + run: | + docker compose ps + docker compose logs --no-color | tail -n 200 || true + docker compose down -v --remove-orphans diff --git a/coverage/.coverage.order_service.combined b/coverage/.coverage.order_service.combined index ec3d1fa..f8d77e9 100644 Binary files a/coverage/.coverage.order_service.combined and b/coverage/.coverage.order_service.combined differ diff --git a/coverage/.coverage.user_service.combined b/coverage/.coverage.user_service.combined index 95fbddc..956af0e 100644 Binary files a/coverage/.coverage.user_service.combined and b/coverage/.coverage.user_service.combined differ diff --git a/keploy.yml b/keploy.yml new file mode 100755 index 0000000..c42bd57 --- /dev/null +++ b/keploy.yml @@ -0,0 +1,98 @@ +# Generated by Keploy (2-dev) +path: "" +appName: ecommerce_sample_app +appId: 0 +command: docker compose up +templatize: + testSets: [] +port: 0 +e2e: false +dnsPort: 26789 +proxyPort: 16789 +debug: false +disableTele: false +disableANSI: false +containerName: "" +networkName: "" +buildDelay: 30 +test: + selectedTests: {} + globalNoise: + global: {} + test-sets: {} + delay: 5 + host: "" + port: 0 + grpcPort: 0 + apiTimeout: 5 + skipCoverage: false + coverageReportPath: "" + ignoreOrdering: true + mongoPassword: default@123 + language: "" + removeUnusedMocks: false + fallBackOnMiss: false + jacocoAgentPath: "" + basePath: "" + mocking: true + ignoredTests: {} + disableLineCoverage: false + disableMockUpload: true + useLocalMock: false + updateTemplate: false + mustPass: false + maxFailAttempts: 5 + maxFlakyChecks: 1 + protoFile: "" + protoDir: "" + protoInclude: [] +record: + filters: [] + basePath: "" + recordTimer: 0s + metadata: "" + globalPassthrough: false +report: + selectedTestSets: {} + showFullBody: false + reportPath: "" + summary: false + testCaseIDs: [] +disableMapping: false +configPath: "" +bypassRules: [] +generateGithubActions: false +keployContainer: keploy-v3 +keployNetwork: keploy-network +cmdType: native +contract: + services: [] + tests: [] + path: "" + download: false + generate: false + driven: consumer + mappings: + servicesMapping: {} + self: s1 +agent: + setupoptions: + clientnspid: 0 + container: "" + keploycontainer: "" + dockerdelay: 0 + agenturi: "" + isdocker: false + commandtype: "" + enabletesting: false + proxyport: 0 + dnsport: 0 + mode: "" + globalpassthrough: false + agentport: 0 + appports: [] + appnetworks: [] +inCi: false +serverPort: 0 + +# Visit [https://keploy.io/docs/running-keploy/configuration-file/] to learn about using keploy through configration file. diff --git a/scripts/user_service_flow.sh b/scripts/user_service_flow.sh new file mode 100755 index 0000000..561357e --- /dev/null +++ b/scripts/user_service_flow.sh @@ -0,0 +1,175 @@ +#!/usr/bin/env bash +# User Service flow using curl based on postman/collection.microservices.json +# Endpoints covered: +# - POST /login (get JWT) +# - POST /users (create user) +# - POST /users/{id}/addresses (create default address) +# - GET /users/{id}/addresses (list addresses) +# - GET /users/{id} (get user) +# - DELETE /users/{id} (delete user) +# +# Requirements: curl, jq +# +# Env overrides (with sensible defaults): +# USER_BASE - default http://localhost:8082/api/v1 +# USERNAME - default alice +# EMAIL - default alice@example.com +# PASSWORD - default p@ssw0rd +# ADDRESS_* vars - override address fields if needed +# SKIP_DELETE=1 - if set, skip deleting the created user +# +set -euo pipefail + +if ! command -v curl >/dev/null 2>&1; then + echo "Error: curl is required" >&2; exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "Error: jq is required (e.g. sudo apt-get install jq)" >&2; exit 1 +fi + +USER_BASE=${USER_BASE:-"http://localhost:8082/api/v1"} +USERNAME=${USERNAME:-"alice"} +EMAIL=${EMAIL:-"alice@example.com"} +PASSWORD=${PASSWORD:-"p@ssw0rd"} + +# Address defaults (matches Postman example) +ADDRESS_LINE1=${ADDRESS_LINE1:-"1 Main St"} +ADDRESS_CITY=${ADDRESS_CITY:-"NYC"} +ADDRESS_STATE=${ADDRESS_STATE:-"NY"} +ADDRESS_POSTAL=${ADDRESS_POSTAL:-"10001"} +ADDRESS_COUNTRY=${ADDRESS_COUNTRY:-"US"} +ADDRESS_PHONE=${ADDRESS_PHONE:-"+1-555-0000"} +ADDRESS_IS_DEFAULT=${ADDRESS_IS_DEFAULT:-true} + +# Slight randomness to avoid collisions when the backend enforces unique usernames/emails +RAND_SUFFIX=$(printf "%04d" $((RANDOM % 10000))) +RAND_EMAIL_TAG=$(date +%s) +USERNAME_UNIQ=${USERNAME}-${RAND_SUFFIX} +EMAIL_UNIQ=${EMAIL/@@/@} # noop if not placeholder +if [[ "$EMAIL" == *"@"* ]]; then + EMAIL_UNIQ="${EMAIL%%@*}+${RAND_EMAIL_TAG}@${EMAIL##*@}" +fi + +SEP="__HTTP_STATUS__SEPARATOR__" + +req() { + # Usage: req METHOD URL DATA_JSON [AUTH_TOKEN] + local method="$1" url="$2" data="${3:-}" token="${4:-}" + local headers=("-H" "Accept: application/json") + if [[ -n "$data" ]]; then + headers+=("-H" "Content-Type: application/json" "--data" "$data") + fi + if [[ -n "$token" ]]; then + headers+=("-H" "Authorization: Bearer $token") + fi + # -sS silent but show errors, include http code with delimiter + curl -sS -X "$method" "$url" "${headers[@]}" -w "${SEP}%{http_code}" +} + +handle_response() { + # Split body and status using our delimiter + local resp="$1" + local http_code body + http_code="${resp##*${SEP}}" + body="${resp%${SEP}*}" + echo "$http_code" "$body" +} + +say() { printf "\n==> %s\n" "$*"; } + +say "User base: $USER_BASE" + +# 1) Login to get JWT +say "Logging in to get JWT" +LOGIN_PAYLOAD=$(jq -n --arg u "$USERNAME" --arg p "$PASSWORD" '{username: $u, password: $p}') +resp=$(req POST "$USER_BASE/login" "$LOGIN_PAYLOAD") +read -r code body < <(handle_response "$resp") +echo "HTTP $code" +echo "$body" | jq '.' || true +if [[ "$code" != "200" && "$code" != "201" ]]; then + echo "Error: login failed (HTTP $code)" >&2; exit 1 +fi +JWT=$(echo "$body" | jq -r '.token // empty') +if [[ -z "${JWT}" || "$JWT" == "null" ]]; then + echo "Error: token not found in login response" >&2; exit 1 +fi +say "JWT acquired" + +# 2) Create user (authorized) +say "Creating user: $USERNAME_UNIQ ($EMAIL_UNIQ)" +CREATE_USER_PAYLOAD=$(jq -n \ + --arg u "$USERNAME_UNIQ" \ + --arg e "$EMAIL_UNIQ" \ + --arg p "$PASSWORD" \ + '{username: $u, email: $e, password: $p}') +resp=$(req POST "$USER_BASE/users" "$CREATE_USER_PAYLOAD" "$JWT") +read -r code body < <(handle_response "$resp") +echo "HTTP $code" +echo "$body" | jq '.' || true +if [[ "$code" != "200" && "$code" != "201" ]]; then + echo "Warning: create user returned HTTP $code; continuing" >&2 +fi +USER_ID=$(echo "$body" | jq -r '.id // empty') +if [[ -z "$USER_ID" || "$USER_ID" == "null" ]]; then + # Try to login again with the unique username to fetch a user profile if backend supports it + USER_ID=$(echo "$body" | jq -r '.user.id // empty') +fi +if [[ -z "$USER_ID" || "$USER_ID" == "null" ]]; then + echo "Warning: user id not returned; attempting to fetch via GET /users (may not be supported)" >&2 +fi + +# 3) Add default address if we have a user id +if [[ -n "${USER_ID:-}" ]]; then + say "Adding default address for user $USER_ID" + ADDR_PAYLOAD=$(jq -n \ + --arg l1 "$ADDRESS_LINE1" \ + --arg city "$ADDRESS_CITY" \ + --arg st "$ADDRESS_STATE" \ + --arg pc "$ADDRESS_POSTAL" \ + --arg ctry "$ADDRESS_COUNTRY" \ + --arg ph "$ADDRESS_PHONE" \ + --argjson def "$ADDRESS_IS_DEFAULT" \ + '{line1: $l1, city: $city, state: $st, postal_code: $pc, country: $ctry, phone: $ph, is_default: $def}') + resp=$(req POST "$USER_BASE/users/$USER_ID/addresses" "$ADDR_PAYLOAD" "$JWT") + read -r code body < <(handle_response "$resp") + echo "HTTP $code" + echo "$body" | jq '.' || true + ADDRESS_ID=$(echo "$body" | jq -r '.id // empty') +else + echo "Skipping address creation (no USER_ID)" >&2 +fi + +# 4) List addresses (if we have a user id) +if [[ -n "${USER_ID:-}" ]]; then + say "Listing addresses for user $USER_ID" + resp=$(req GET "$USER_BASE/users/$USER_ID/addresses" "" "$JWT") + read -r code body < <(handle_response "$resp") + echo "HTTP $code" + echo "$body" | jq '.' || true +fi + +# 5) Get user (if we have a user id) +if [[ -n "${USER_ID:-}" ]]; then + say "Fetching user $USER_ID" + resp=$(req GET "$USER_BASE/users/$USER_ID" "" "$JWT") + read -r code body < <(handle_response "$resp") + echo "HTTP $code" + echo "$body" | jq '.' || true +fi + +# 6) Optionally delete the user +if [[ -z "${SKIP_DELETE:-}" && -n "${USER_ID:-}" ]]; then + say "Deleting user $USER_ID (set SKIP_DELETE=1 to keep)" + resp=$(req DELETE "$USER_BASE/users/$USER_ID" "" "$JWT") + read -r code body < <(handle_response "$resp") + echo "HTTP $code" + if [[ "$code" == "200" || "$code" == "404" ]]; then + echo "Delete completed (ok or not found)" + else + echo "$body" | jq '.' || true + fi +else + say "Skip delete (SKIP_DELETE=1 or missing USER_ID)" +fi + +say "Done." diff --git a/scripts/user_service_manual_tests.sh b/scripts/user_service_manual_tests.sh new file mode 100755 index 0000000..1498ade --- /dev/null +++ b/scripts/user_service_manual_tests.sh @@ -0,0 +1,108 @@ +#!/usr/bin/env bash +# Replay user_service/keploy/manual/tests (test-1..test-5) as curl commands +# +# test-1: POST /login (admin/admin123) +# test-2: POST /users (alice) +# test-3: POST /users/{userId}/addresses (default) +# test-4: GET /users/{userId}/addresses +# test-5: GET /users/{userId} +# +# Requirements: curl, jq +# Overrides via env: +# USER_BASE=http://localhost:8082/api/v1 +# ADMIN_USER=admin +# ADMIN_PASS=admin123 +# NEW_USERNAME=alice +# NEW_EMAIL=alice@example.com +# NEW_PASSWORD='p@ssw0rd' +set -euo pipefail + +if ! command -v curl >/dev/null 2>&1; then echo "curl required" >&2; exit 1; fi +if ! command -v jq >/dev/null 2>&1; then echo "jq required (sudo apt-get install jq)" >&2; exit 1; fi + +USER_BASE=${USER_BASE:-"http://localhost:8082/api/v1"} +ADMIN_USER=${ADMIN_USER:-"admin"} +ADMIN_PASS=${ADMIN_PASS:-"admin123"} +NEW_USERNAME=${NEW_USERNAME:-"alice"} +NEW_EMAIL=${NEW_EMAIL:-"alice@example.com"} +NEW_PASSWORD=${NEW_PASSWORD:-"p@ssw0rd"} + +say(){ printf "\n==> %s\n" "$*"; } +SEP="__SEP__HTTP__" + +req(){ + # req METHOD URL DATA_JSON [AUTH_TOKEN] + local method="$1" url="$2" data="${3:-}" token="${4:-}"; + local args=( -sS -X "$method" "$url" -H "Accept: application/json" ); + if [[ -n "$data" ]]; then + args+=( -H "Content-Type: application/json" --data "$data" ); + fi + if [[ -n "$token" ]]; then + args+=( -H "Authorization: Bearer $token" ); + fi + curl "${args[@]}" -w "${SEP}%{http_code}" +} + +parse(){ + local resp="$1"; local code body; + code="${resp##*${SEP}}"; body="${resp%${SEP}*}"; + echo "$code" "$body"; +} + +echo "USER_BASE=$USER_BASE" + +# test-1: Login +say "test-1: POST /login" +LOGIN_PAYLOAD=$(jq -n --arg u "$ADMIN_USER" --arg p "$ADMIN_PASS" '{username:$u,password:$p}') +resp=$(req POST "$USER_BASE/login" "$LOGIN_PAYLOAD") +read -r code body < <(parse "$resp"); echo "HTTP $code"; echo "$body" | jq '.' || true +if [[ "$code" != 200 && "$code" != 201 ]]; then echo "Login failed" >&2; exit 1; fi +TOKEN=$(echo "$body" | jq -r '.token // empty'); [[ -n "$TOKEN" ]] || { echo "No token" >&2; exit 1; } + +# test-2: Create user +say "test-2: POST /users (create $NEW_USERNAME)" +# Avoid unique constraint conflicts by default; insert a short suffix. +# Disable by setting DISABLE_RANDOM_SUFFIX=1 +if [[ -z "${DISABLE_RANDOM_SUFFIX:-}" ]]; then + TS=$(date +%s) + SUFFIX="-${TS}-${RANDOM}" + USERNAME_EFF="${NEW_USERNAME}${SUFFIX}" + if [[ "$NEW_EMAIL" == *"@"* ]]; then + EMAIL_EFF="${NEW_EMAIL%%@*}${SUFFIX}@${NEW_EMAIL##*@}" + else + EMAIL_EFF="${NEW_EMAIL}${SUFFIX}" + fi +else + USERNAME_EFF="$NEW_USERNAME"; EMAIL_EFF="$NEW_EMAIL" +fi +echo "Using username: $USERNAME_EFF" +echo "Using email : $EMAIL_EFF" +CREATE_PAYLOAD=$(jq -n --arg u "$USERNAME_EFF" --arg e "$EMAIL_EFF" --arg p "$NEW_PASSWORD" '{username:$u,email:$e,password:$p}') +resp=$(req POST "$USER_BASE/users" "$CREATE_PAYLOAD" "$TOKEN") +read -r code body < <(parse "$resp"); echo "HTTP $code"; echo "$body" | jq '.' || true +if [[ "$code" != 200 && "$code" != 201 ]]; then + echo "Create user returned $code (continuing)" >&2 + # Common cause: unique constraint violation on username/email when reusing same inputs. + # You can set DISABLE_RANDOM_SUFFIX= to keep inputs stable, or change NEW_USERNAME/NEW_EMAIL. +fi +USER_ID=$(echo "$body" | jq -r '.id // empty'); +if [[ -z "$USER_ID" || "$USER_ID" == null ]]; then echo "No user id in response, cannot continue" >&2; exit 1; fi + +# test-3: Add address +say "test-3: POST /users/$USER_ID/addresses (default)" +ADDR_PAYLOAD='{"line1":"1 Main St","city":"NYC","state":"NY","postal_code":"10001","country":"US","phone":"+1-555-0000","is_default":true}' +resp=$(req POST "$USER_BASE/users/$USER_ID/addresses" "$ADDR_PAYLOAD" "$TOKEN") +read -r code body < <(parse "$resp"); echo "HTTP $code"; echo "$body" | jq '.' || true +ADDR_ID=$(echo "$body" | jq -r '.id // empty') || true + +# test-4: List addresses +say "test-4: GET /users/$USER_ID/addresses" +resp=$(req GET "$USER_BASE/users/$USER_ID/addresses" "" "$TOKEN") +read -r code body < <(parse "$resp"); echo "HTTP $code"; echo "$body" | jq '.' || true + +# test-5: Get user +say "test-5: GET /users/$USER_ID" +resp=$(req GET "$USER_BASE/users/$USER_ID" "" "$TOKEN") +read -r code body < <(parse "$resp"); echo "HTTP $code"; echo "$body" | jq '.' || true + +say "Done (manual tests 1-5 replayed)." diff --git a/user_service/keploy-logs.txt b/user_service/keploy-logs.txt new file mode 100755 index 0000000..7aa38a7 --- /dev/null +++ b/user_service/keploy-logs.txt @@ -0,0 +1,15 @@ +🐰 Keploy: 2025-11-10T13:02:03Z WARN AppName in config (microservices) does not match current directory name (user_service). using current directory name as appName +🐰 Keploy: 2025-11-10T13:02:03Z INFO Parsing TestSuite File {"path": "keploy/testsuite/suite-0.yaml"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Starting load test {"vus": 50, "duration": "5m", "rps": 0} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Parsing TestSuite File {"path": "keploy/testsuite/suite-0.yaml"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Skipping security checks for failed step {"stepName": "Login_User", "failureReason": "expected status code 200 but got 401"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Skipping security checks for failed step {"stepName": "Create_Address", "failureReason": "expected status code 201 but got 404"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Skipping security checks for failed step {"stepName": "Create_Order", "failureReason": "expected status code 201 but got 404"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Skipping security checks for failed step {"stepName": "Get_Order_Details", "failureReason": "expected status code 200 but got 404"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Skipping security checks for failed step {"stepName": "Delete_User", "failureReason": "expected status code 204 but got 404"} +🐰 Keploy: 2025-11-10T13:02:03Z WARN Unknown ruleset, falling back to basic {"ruleset": "strict"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Starting dashboard server {"URL": "http://localhost:3000"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Opening browser on dashboard {"URL": "http://localhost:3000/?dashboard=20251110_130203"} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Metrics server starting on port {"port": 9090} +🐰 Keploy: 2025-11-10T13:02:03Z INFO Starting token server on port 2345 +🐰 Keploy: 2025-11-10T13:02:03Z ERROR Dashboard server failed {"error": "listen tcp :3000: bind: address already in use"} diff --git a/user_service/keploy/atg/mocks.yaml b/user_service/keploy/atg/mocks.yaml new file mode 100755 index 0000000..09033da --- /dev/null +++ b/user_service/keploy/atg/mocks.yaml @@ -0,0 +1,121443 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-0 +spec: + metadata: + connID: "0" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [93, 45, 95, 242, 103, 141, 51, 196, 21, 178, 106, 136, 44, 44, 24, 165, 119, 70, 94, 208, 62, 254, 126, 80, 91, 12, 133, 50, 155, 3, 167, 231] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1059" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + - header: + header: + payload_length: 9 + sequence_id: 4 + packet_type: plain_password + message: cGFzc3dvcmQA + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 9 + auth_plugin_data: [111, 106, 3, 127, 126, 87, 5, 4, 19, 58, 115, 80, 2, 60, 29, 69, 62, 32, 18, 116, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: PerformFullAuthentication + - header: + header: + payload_length: 19 + sequence_id: 5 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776550 + reqtimestampmock: 2025-11-10T12:09:10.262787101Z + restimestampmock: 2025-11-10T12:09:10.275262328Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1 +spec: + metadata: + connID: "0" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776550 + reqtimestampmock: 2025-11-10T12:09:10.275731573Z + restimestampmock: 2025-11-10T12:09:10.275945481Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2 +spec: + metadata: + connID: "0" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776550 + reqtimestampmock: 2025-11-10T12:09:10.2760796Z + restimestampmock: 2025-11-10T12:09:10.276228929Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-3 +spec: + metadata: + connID: "0" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776550 + reqtimestampmock: 2025-11-10T12:09:10.276360817Z + restimestampmock: 2025-11-10T12:09:10.276505775Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-4 +spec: + metadata: + connID: "0" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 241 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: "\n CREATE TABLE IF NOT EXISTS schema_migrations (\n id INT AUTO_INCREMENT PRIMARY KEY,\n version VARCHAR(64) NOT NULL UNIQUE,\n applied_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP\n )\n " + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 1 + info: "" + created: 1762776550 + reqtimestampmock: 2025-11-10T12:09:10.276652605Z + restimestampmock: 2025-11-10T12:09:10.283838223Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-5 +spec: + metadata: + connID: "0" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 40 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT version FROM schema_migrations + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 77 + sequence_id: 2 + catalog: def + schema: user_db + table: schema_migrations + org_table: schema_migrations + name: version + org_name: version + fixed_length: 12 + character_set: 255 + column_length: 256 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 5 + sequence_id: 3 + values: + - type: 253 + name: version + value: "0001" + unsigned: false + - header: + payload_length: 5 + sequence_id: 4 + values: + - type: 253 + name: version + value: "0002" + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 5 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776550 + reqtimestampmock: 2025-11-10T12:09:10.284011172Z + restimestampmock: 2025-11-10T12:09:10.284947313Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-6 +spec: + metadata: + connID: "2" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [220, 69, 35, 64, 60, 254, 62, 35, 181, 64, 165, 2, 125, 189, 114, 99, 109, 163, 14, 15, 34, 103, 165, 177, 177, 32, 239, 235, 118, 56, 176, 68] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 60 + auth_plugin_data: [45, 46, 39, 85, 15, 103, 3, 77, 65, 104, 127, 118, 19, 51, 114, 45, 19, 34, 2, 24, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776804 + reqtimestampmock: 2025-11-10T12:13:24.928394232Z + restimestampmock: 2025-11-10T12:13:24.93890796Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-7 +spec: + metadata: + connID: "2" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776804 + reqtimestampmock: 2025-11-10T12:13:24.939384175Z + restimestampmock: 2025-11-10T12:13:24.939602423Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-8 +spec: + metadata: + connID: "2" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776804 + reqtimestampmock: 2025-11-10T12:13:24.939746603Z + restimestampmock: 2025-11-10T12:13:24.939899201Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-9 +spec: + metadata: + connID: "2" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776804 + reqtimestampmock: 2025-11-10T12:13:24.940018619Z + restimestampmock: 2025-11-10T12:13:24.940157058Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-10 +spec: + metadata: + connID: "2" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776804 + reqtimestampmock: 2025-11-10T12:13:24.940384846Z + restimestampmock: 2025-11-10T12:13:24.943135502Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-11 +spec: + metadata: + connID: "4" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [53, 190, 152, 44, 52, 45, 239, 101, 74, 105, 121, 148, 79, 73, 5, 200, 62, 68, 158, 198, 83, 15, 56, 174, 147, 204, 143, 165, 58, 49, 148, 82] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 62 + auth_plugin_data: [106, 108, 108, 100, 95, 6, 84, 16, 47, 27, 56, 101, 71, 20, 13, 85, 87, 113, 81, 121, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776811 + reqtimestampmock: 2025-11-10T12:13:31.193208483Z + restimestampmock: 2025-11-10T12:13:31.199525187Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-12 +spec: + metadata: + connID: "4" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776811 + reqtimestampmock: 2025-11-10T12:13:31.199707496Z + restimestampmock: 2025-11-10T12:13:31.199909294Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-13 +spec: + metadata: + connID: "4" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776811 + reqtimestampmock: 2025-11-10T12:13:31.200042313Z + restimestampmock: 2025-11-10T12:13:31.2002338Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-14 +spec: + metadata: + connID: "4" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776811 + reqtimestampmock: 2025-11-10T12:13:31.200396849Z + restimestampmock: 2025-11-10T12:13:31.200488598Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-15 +spec: + metadata: + connID: "4" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776811 + reqtimestampmock: 2025-11-10T12:13:31.200687947Z + restimestampmock: 2025-11-10T12:13:31.201132533Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-16 +spec: + metadata: + connID: "6" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [64, 175, 32, 245, 66, 94, 98, 82, 84, 103, 61, 74, 8, 177, 221, 96, 222, 204, 93, 212, 135, 5, 32, 130, 239, 26, 54, 71, 56, 100, 227, 66] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 65 + auth_plugin_data: [39, 5, 23, 12, 127, 56, 71, 120, 102, 41, 64, 46, 78, 99, 80, 82, 18, 48, 110, 70, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776817 + reqtimestampmock: 2025-11-10T12:13:37.141535202Z + restimestampmock: 2025-11-10T12:13:37.148642659Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-17 +spec: + metadata: + connID: "6" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776817 + reqtimestampmock: 2025-11-10T12:13:37.148893937Z + restimestampmock: 2025-11-10T12:13:37.149096865Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-18 +spec: + metadata: + connID: "6" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776817 + reqtimestampmock: 2025-11-10T12:13:37.149255033Z + restimestampmock: 2025-11-10T12:13:37.149463991Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-19 +spec: + metadata: + connID: "6" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776817 + reqtimestampmock: 2025-11-10T12:13:37.149619181Z + restimestampmock: 2025-11-10T12:13:37.14972578Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-20 +spec: + metadata: + connID: "6" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776817 + reqtimestampmock: 2025-11-10T12:13:37.149901307Z + restimestampmock: 2025-11-10T12:13:37.150335284Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-21 +spec: + metadata: + connID: "8" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [252, 193, 224, 38, 251, 3, 239, 214, 123, 116, 81, 48, 67, 124, 169, 154, 93, 157, 2, 153, 101, 61, 116, 165, 114, 16, 19, 36, 98, 236, 187, 97] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 67 + auth_plugin_data: [106, 101, 71, 127, 59, 69, 73, 29, 125, 126, 73, 64, 12, 101, 72, 118, 7, 48, 121, 106, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776823 + reqtimestampmock: 2025-11-10T12:13:43.21542866Z + restimestampmock: 2025-11-10T12:13:43.221431407Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-22 +spec: + metadata: + connID: "8" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776823 + reqtimestampmock: 2025-11-10T12:13:43.221627155Z + restimestampmock: 2025-11-10T12:13:43.221788793Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-23 +spec: + metadata: + connID: "8" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776823 + reqtimestampmock: 2025-11-10T12:13:43.221884952Z + restimestampmock: 2025-11-10T12:13:43.222100691Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-24 +spec: + metadata: + connID: "8" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776823 + reqtimestampmock: 2025-11-10T12:13:43.222289279Z + restimestampmock: 2025-11-10T12:13:43.222398208Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-25 +spec: + metadata: + connID: "8" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776823 + reqtimestampmock: 2025-11-10T12:13:43.222600896Z + restimestampmock: 2025-11-10T12:13:43.223188811Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-26 +spec: + metadata: + connID: "10" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [71, 188, 217, 186, 161, 142, 83, 226, 38, 200, 188, 119, 122, 187, 27, 183, 198, 37, 57, 214, 66, 206, 97, 87, 143, 162, 129, 148, 231, 17, 179, 128] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 68 + auth_plugin_data: [104, 112, 1, 72, 121, 97, 38, 29, 54, 9, 77, 118, 38, 40, 103, 90, 102, 51, 66, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.067859708Z + restimestampmock: 2025-11-10T12:13:44.075062914Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-27 +spec: + metadata: + connID: "10" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.075418291Z + restimestampmock: 2025-11-10T12:13:44.075626709Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-28 +spec: + metadata: + connID: "10" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.075801408Z + restimestampmock: 2025-11-10T12:13:44.075962756Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-29 +spec: + metadata: + connID: "10" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.076086515Z + restimestampmock: 2025-11-10T12:13:44.076212623Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-30 +spec: + metadata: + connID: "10" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 103 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='nonexistentuser_{{$randomInt}}' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 6 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.076425381Z + restimestampmock: 2025-11-10T12:13:44.076902048Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-31 +spec: + metadata: + connID: "12" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [214, 91, 121, 143, 186, 79, 102, 136, 62, 143, 50, 73, 32, 35, 73, 87, 10, 195, 182, 59, 84, 112, 246, 149, 53, 16, 147, 81, 52, 230, 81, 11] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 69 + auth_plugin_data: [5, 87, 125, 120, 116, 78, 116, 72, 82, 5, 20, 5, 87, 37, 66, 31, 62, 111, 90, 88, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.872216412Z + restimestampmock: 2025-11-10T12:13:44.878446296Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-32 +spec: + metadata: + connID: "12" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.878627774Z + restimestampmock: 2025-11-10T12:13:44.878826143Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-33 +spec: + metadata: + connID: "12" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.878944412Z + restimestampmock: 2025-11-10T12:13:44.87908626Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-34 +spec: + metadata: + connID: "12" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.879191209Z + restimestampmock: 2025-11-10T12:13:44.879290539Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-35 +spec: + metadata: + connID: "12" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776824 + reqtimestampmock: 2025-11-10T12:13:44.879472927Z + restimestampmock: 2025-11-10T12:13:44.880052182Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-36 +spec: + metadata: + connID: "14" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [29, 233, 134, 213, 9, 107, 226, 76, 31, 34, 197, 38, 13, 246, 51, 143, 229, 254, 66, 108, 10, 65, 10, 231, 3, 30, 35, 191, 85, 21, 243, 235] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 71 + auth_plugin_data: [52, 73, 46, 19, 92, 72, 114, 1, 4, 90, 109, 29, 21, 99, 100, 113, 13, 51, 4, 121, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776827 + reqtimestampmock: 2025-11-10T12:13:47.602642619Z + restimestampmock: 2025-11-10T12:13:47.611180873Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-37 +spec: + metadata: + connID: "14" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776827 + reqtimestampmock: 2025-11-10T12:13:47.611380122Z + restimestampmock: 2025-11-10T12:13:47.61162159Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-38 +spec: + metadata: + connID: "14" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776827 + reqtimestampmock: 2025-11-10T12:13:47.611763109Z + restimestampmock: 2025-11-10T12:13:47.611896617Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-39 +spec: + metadata: + connID: "14" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776827 + reqtimestampmock: 2025-11-10T12:13:47.612038976Z + restimestampmock: 2025-11-10T12:13:47.612238394Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-40 +spec: + metadata: + connID: "14" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776827 + reqtimestampmock: 2025-11-10T12:13:47.612570502Z + restimestampmock: 2025-11-10T12:13:47.613285595Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-41 +spec: + metadata: + connID: "16" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [18, 37, 107, 157, 208, 55, 216, 105, 28, 3, 91, 69, 246, 50, 134, 160, 233, 141, 124, 187, 95, 73, 68, 219, 87, 250, 106, 174, 95, 123, 73, 148] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 72 + auth_plugin_data: [45, 4, 63, 49, 80, 56, 85, 99, 68, 64, 5, 10, 73, 46, 106, 122, 50, 109, 119, 8, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776830 + reqtimestampmock: 2025-11-10T12:13:50.208501981Z + restimestampmock: 2025-11-10T12:13:50.215080243Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-42 +spec: + metadata: + connID: "16" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776830 + reqtimestampmock: 2025-11-10T12:13:50.21529299Z + restimestampmock: 2025-11-10T12:13:50.215501698Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-43 +spec: + metadata: + connID: "16" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776830 + reqtimestampmock: 2025-11-10T12:13:50.215615227Z + restimestampmock: 2025-11-10T12:13:50.215779026Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-44 +spec: + metadata: + connID: "16" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776830 + reqtimestampmock: 2025-11-10T12:13:50.215911075Z + restimestampmock: 2025-11-10T12:13:50.216060334Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-45 +spec: + metadata: + connID: "16" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776830 + reqtimestampmock: 2025-11-10T12:13:50.216244452Z + restimestampmock: 2025-11-10T12:13:50.216805027Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-46 +spec: + metadata: + connID: "18" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [208, 140, 24, 254, 208, 46, 162, 158, 197, 66, 198, 133, 112, 174, 201, 35, 158, 119, 142, 42, 168, 251, 126, 5, 185, 112, 157, 30, 3, 200, 176, 71] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 74 + auth_plugin_data: [92, 13, 56, 51, 39, 87, 105, 74, 114, 56, 93, 50, 68, 19, 4, 80, 6, 20, 42, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776832 + reqtimestampmock: 2025-11-10T12:13:52.853509601Z + restimestampmock: 2025-11-10T12:13:52.859719996Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-47 +spec: + metadata: + connID: "18" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776832 + reqtimestampmock: 2025-11-10T12:13:52.859899305Z + restimestampmock: 2025-11-10T12:13:52.860066464Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-48 +spec: + metadata: + connID: "18" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776832 + reqtimestampmock: 2025-11-10T12:13:52.860202032Z + restimestampmock: 2025-11-10T12:13:52.860340751Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-49 +spec: + metadata: + connID: "18" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776832 + reqtimestampmock: 2025-11-10T12:13:52.8604467Z + restimestampmock: 2025-11-10T12:13:52.86054311Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-50 +spec: + metadata: + connID: "18" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776832 + reqtimestampmock: 2025-11-10T12:13:52.860737127Z + restimestampmock: 2025-11-10T12:13:52.861257474Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-51 +spec: + metadata: + connID: "20" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [79, 234, 23, 225, 119, 239, 93, 209, 1, 233, 234, 103, 157, 252, 96, 189, 131, 234, 227, 168, 54, 151, 115, 75, 20, 195, 175, 145, 53, 62, 22, 219] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 75 + auth_plugin_data: [93, 70, 2, 29, 7, 125, 105, 57, 84, 35, 70, 94, 82, 106, 6, 16, 73, 80, 62, 93, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776836 + reqtimestampmock: 2025-11-10T12:13:56.212070149Z + restimestampmock: 2025-11-10T12:13:56.218507552Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-52 +spec: + metadata: + connID: "20" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776836 + reqtimestampmock: 2025-11-10T12:13:56.218738122Z + restimestampmock: 2025-11-10T12:13:56.218945899Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-53 +spec: + metadata: + connID: "20" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776836 + reqtimestampmock: 2025-11-10T12:13:56.219114717Z + restimestampmock: 2025-11-10T12:13:56.219434675Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-54 +spec: + metadata: + connID: "20" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776836 + reqtimestampmock: 2025-11-10T12:13:56.219573904Z + restimestampmock: 2025-11-10T12:13:56.219698802Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-55 +spec: + metadata: + connID: "20" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776836 + reqtimestampmock: 2025-11-10T12:13:56.219886551Z + restimestampmock: 2025-11-10T12:13:56.220404406Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-56 +spec: + metadata: + connID: "22" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [70, 142, 155, 169, 240, 183, 90, 254, 147, 68, 61, 126, 42, 179, 200, 221, 76, 193, 163, 231, 147, 161, 231, 97, 68, 166, 24, 218, 226, 156, 90, 138] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 77 + auth_plugin_data: [35, 121, 51, 8, 94, 97, 81, 124, 11, 33, 37, 66, 62, 38, 82, 19, 33, 99, 111, 34, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776839 + reqtimestampmock: 2025-11-10T12:13:59.49795436Z + restimestampmock: 2025-11-10T12:13:59.504412663Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-57 +spec: + metadata: + connID: "22" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776839 + reqtimestampmock: 2025-11-10T12:13:59.504561212Z + restimestampmock: 2025-11-10T12:13:59.50476045Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-58 +spec: + metadata: + connID: "22" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776839 + reqtimestampmock: 2025-11-10T12:13:59.504879349Z + restimestampmock: 2025-11-10T12:13:59.505058827Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-59 +spec: + metadata: + connID: "22" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776839 + reqtimestampmock: 2025-11-10T12:13:59.505172537Z + restimestampmock: 2025-11-10T12:13:59.505235556Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-60 +spec: + metadata: + connID: "22" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776839 + reqtimestampmock: 2025-11-10T12:13:59.505438774Z + restimestampmock: 2025-11-10T12:13:59.506106228Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-61 +spec: + metadata: + connID: "24" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [198, 105, 30, 107, 75, 90, 225, 144, 7, 73, 34, 48, 64, 135, 192, 119, 67, 249, 172, 154, 108, 20, 233, 7, 110, 81, 140, 148, 145, 135, 233, 131] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 79 + auth_plugin_data: [52, 41, 74, 19, 14, 106, 60, 21, 79, 66, 61, 120, 96, 94, 41, 69, 89, 113, 6, 54, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776842 + reqtimestampmock: 2025-11-10T12:14:02.618856524Z + restimestampmock: 2025-11-10T12:14:02.625113118Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-62 +spec: + metadata: + connID: "24" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776842 + reqtimestampmock: 2025-11-10T12:14:02.625312827Z + restimestampmock: 2025-11-10T12:14:02.625489764Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-63 +spec: + metadata: + connID: "24" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776842 + reqtimestampmock: 2025-11-10T12:14:02.625632333Z + restimestampmock: 2025-11-10T12:14:02.625859691Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-64 +spec: + metadata: + connID: "24" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776842 + reqtimestampmock: 2025-11-10T12:14:02.62605805Z + restimestampmock: 2025-11-10T12:14:02.626195258Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-65 +spec: + metadata: + connID: "24" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776842 + reqtimestampmock: 2025-11-10T12:14:02.626375447Z + restimestampmock: 2025-11-10T12:14:02.626948962Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-66 +spec: + metadata: + connID: "26" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [110, 162, 10, 196, 29, 143, 128, 164, 153, 40, 18, 135, 219, 121, 179, 71, 213, 140, 169, 130, 119, 139, 187, 35, 53, 208, 231, 17, 33, 58, 60, 36] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 80 + auth_plugin_data: [3, 68, 37, 122, 9, 103, 108, 122, 97, 35, 91, 110, 84, 59, 71, 38, 89, 5, 125, 8, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776845 + reqtimestampmock: 2025-11-10T12:14:05.635633251Z + restimestampmock: 2025-11-10T12:14:05.641874236Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-67 +spec: + metadata: + connID: "26" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776845 + reqtimestampmock: 2025-11-10T12:14:05.642031605Z + restimestampmock: 2025-11-10T12:14:05.642210133Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-68 +spec: + metadata: + connID: "26" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776845 + reqtimestampmock: 2025-11-10T12:14:05.642350652Z + restimestampmock: 2025-11-10T12:14:05.642555Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-69 +spec: + metadata: + connID: "26" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776845 + reqtimestampmock: 2025-11-10T12:14:05.642844048Z + restimestampmock: 2025-11-10T12:14:05.642920577Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-70 +spec: + metadata: + connID: "26" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776845 + reqtimestampmock: 2025-11-10T12:14:05.643080465Z + restimestampmock: 2025-11-10T12:14:05.64367129Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-71 +spec: + metadata: + connID: "28" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [117, 21, 108, 18, 32, 52, 137, 216, 129, 88, 11, 213, 152, 180, 194, 61, 122, 229, 82, 206, 127, 9, 59, 252, 121, 233, 124, 45, 234, 230, 238, 74] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 82 + auth_plugin_data: [20, 111, 8, 31, 67, 81, 103, 44, 76, 24, 28, 91, 109, 63, 126, 24, 43, 72, 111, 120, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776847 + reqtimestampmock: 2025-11-10T12:14:07.445186084Z + restimestampmock: 2025-11-10T12:14:07.454240615Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-72 +spec: + metadata: + connID: "28" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776847 + reqtimestampmock: 2025-11-10T12:14:07.454469102Z + restimestampmock: 2025-11-10T12:14:07.454661002Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-73 +spec: + metadata: + connID: "28" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776847 + reqtimestampmock: 2025-11-10T12:14:07.454801869Z + restimestampmock: 2025-11-10T12:14:07.454968159Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-74 +spec: + metadata: + connID: "28" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776847 + reqtimestampmock: 2025-11-10T12:14:07.455090528Z + restimestampmock: 2025-11-10T12:14:07.455198436Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-75 +spec: + metadata: + connID: "28" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776847 + reqtimestampmock: 2025-11-10T12:14:07.455387515Z + restimestampmock: 2025-11-10T12:14:07.456022299Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-76 +spec: + metadata: + connID: "30" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [68, 5, 112, 35, 105, 243, 106, 209, 73, 181, 246, 79, 24, 81, 16, 89, 115, 167, 191, 170, 49, 232, 246, 206, 104, 151, 131, 175, 212, 248, 80, 63] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 83 + auth_plugin_data: [82, 117, 104, 51, 22, 9, 74, 78, 27, 83, 84, 23, 55, 26, 22, 30, 37, 22, 102, 79, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776851 + reqtimestampmock: 2025-11-10T12:14:11.156712877Z + restimestampmock: 2025-11-10T12:14:11.162851554Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-77 +spec: + metadata: + connID: "30" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776851 + reqtimestampmock: 2025-11-10T12:14:11.162994572Z + restimestampmock: 2025-11-10T12:14:11.16316159Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-78 +spec: + metadata: + connID: "30" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776851 + reqtimestampmock: 2025-11-10T12:14:11.163273729Z + restimestampmock: 2025-11-10T12:14:11.163420598Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-79 +spec: + metadata: + connID: "30" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776851 + reqtimestampmock: 2025-11-10T12:14:11.163518177Z + restimestampmock: 2025-11-10T12:14:11.163625186Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-80 +spec: + metadata: + connID: "30" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776851 + reqtimestampmock: 2025-11-10T12:14:11.163822074Z + restimestampmock: 2025-11-10T12:14:11.164312501Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-81 +spec: + metadata: + connID: "32" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [130, 74, 42, 71, 32, 219, 244, 24, 134, 40, 228, 205, 253, 80, 15, 97, 8, 18, 63, 81, 143, 98, 21, 199, 22, 92, 103, 143, 74, 49, 207, 163] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 85 + auth_plugin_data: [127, 35, 97, 46, 1, 98, 82, 80, 45, 20, 122, 98, 80, 118, 13, 68, 109, 48, 127, 66, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776855 + reqtimestampmock: 2025-11-10T12:14:15.241090357Z + restimestampmock: 2025-11-10T12:14:15.24751717Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-82 +spec: + metadata: + connID: "32" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776855 + reqtimestampmock: 2025-11-10T12:14:15.247702068Z + restimestampmock: 2025-11-10T12:14:15.247917756Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-83 +spec: + metadata: + connID: "32" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776855 + reqtimestampmock: 2025-11-10T12:14:15.248054576Z + restimestampmock: 2025-11-10T12:14:15.248291614Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-84 +spec: + metadata: + connID: "32" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776855 + reqtimestampmock: 2025-11-10T12:14:15.248387853Z + restimestampmock: 2025-11-10T12:14:15.248492901Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-85 +spec: + metadata: + connID: "32" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776855 + reqtimestampmock: 2025-11-10T12:14:15.24862439Z + restimestampmock: 2025-11-10T12:14:15.249248995Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-86 +spec: + metadata: + connID: "34" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [14, 218, 148, 110, 190, 46, 70, 22, 234, 8, 243, 39, 167, 253, 77, 251, 48, 106, 79, 245, 153, 169, 245, 229, 150, 35, 184, 173, 44, 144, 209, 10] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 87 + auth_plugin_data: [28, 121, 2, 12, 11, 113, 2, 123, 17, 120, 118, 69, 72, 81, 101, 29, 2, 110, 114, 23, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776860 + reqtimestampmock: 2025-11-10T12:14:20.569315036Z + restimestampmock: 2025-11-10T12:14:20.57565713Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-87 +spec: + metadata: + connID: "34" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776860 + reqtimestampmock: 2025-11-10T12:14:20.575861778Z + restimestampmock: 2025-11-10T12:14:20.576045087Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-88 +spec: + metadata: + connID: "34" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776860 + reqtimestampmock: 2025-11-10T12:14:20.576209215Z + restimestampmock: 2025-11-10T12:14:20.576431734Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-89 +spec: + metadata: + connID: "34" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776860 + reqtimestampmock: 2025-11-10T12:14:20.576625271Z + restimestampmock: 2025-11-10T12:14:20.576871549Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-90 +spec: + metadata: + connID: "34" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776860 + reqtimestampmock: 2025-11-10T12:14:20.576922389Z + restimestampmock: 2025-11-10T12:14:20.577395525Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-91 +spec: + metadata: + connID: "36" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [219, 14, 159, 127, 62, 8, 34, 56, 200, 91, 152, 157, 104, 167, 36, 210, 10, 121, 239, 179, 191, 118, 38, 55, 101, 252, 118, 205, 155, 81, 170, 170] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 89 + auth_plugin_data: [57, 34, 86, 49, 4, 79, 13, 65, 18, 113, 95, 59, 24, 61, 69, 15, 83, 51, 108, 82, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776865 + reqtimestampmock: 2025-11-10T12:14:25.988396479Z + restimestampmock: 2025-11-10T12:14:25.994831553Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-92 +spec: + metadata: + connID: "36" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776865 + reqtimestampmock: 2025-11-10T12:14:25.995005321Z + restimestampmock: 2025-11-10T12:14:25.995200569Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-93 +spec: + metadata: + connID: "36" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776865 + reqtimestampmock: 2025-11-10T12:14:25.995322828Z + restimestampmock: 2025-11-10T12:14:25.995486077Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-94 +spec: + metadata: + connID: "36" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776865 + reqtimestampmock: 2025-11-10T12:14:25.995618066Z + restimestampmock: 2025-11-10T12:14:25.995727355Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-95 +spec: + metadata: + connID: "36" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776865 + reqtimestampmock: 2025-11-10T12:14:25.995887934Z + restimestampmock: 2025-11-10T12:14:25.996466758Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-96 +spec: + metadata: + connID: "38" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [32, 97, 142, 199, 118, 28, 57, 39, 150, 240, 22, 103, 117, 168, 109, 189, 136, 121, 85, 244, 65, 8, 111, 6, 76, 221, 33, 113, 96, 237, 131, 82] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 91 + auth_plugin_data: [27, 68, 64, 122, 92, 42, 34, 108, 33, 68, 87, 90, 87, 19, 58, 19, 39, 9, 19, 127, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776871 + reqtimestampmock: 2025-11-10T12:14:31.48684901Z + restimestampmock: 2025-11-10T12:14:31.493288134Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-97 +spec: + metadata: + connID: "38" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776871 + reqtimestampmock: 2025-11-10T12:14:31.493452513Z + restimestampmock: 2025-11-10T12:14:31.493616671Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-98 +spec: + metadata: + connID: "38" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776871 + reqtimestampmock: 2025-11-10T12:14:31.49373049Z + restimestampmock: 2025-11-10T12:14:31.493912269Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-99 +spec: + metadata: + connID: "38" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776871 + reqtimestampmock: 2025-11-10T12:14:31.494036327Z + restimestampmock: 2025-11-10T12:14:31.494122526Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-100 +spec: + metadata: + connID: "38" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776871 + reqtimestampmock: 2025-11-10T12:14:31.494292656Z + restimestampmock: 2025-11-10T12:14:31.49480272Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-101 +spec: + metadata: + connID: "40" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [128, 114, 60, 100, 5, 48, 98, 158, 31, 181, 21, 167, 61, 209, 23, 5, 168, 216, 220, 194, 236, 57, 69, 19, 255, 193, 13, 89, 57, 161, 225, 178] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 93 + auth_plugin_data: [69, 80, 79, 112, 65, 49, 117, 8, 37, 47, 84, 81, 81, 41, 12, 12, 85, 51, 90, 49, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776873 + reqtimestampmock: 2025-11-10T12:14:33.054703952Z + restimestampmock: 2025-11-10T12:14:33.061580471Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-102 +spec: + metadata: + connID: "40" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776873 + reqtimestampmock: 2025-11-10T12:14:33.061779211Z + restimestampmock: 2025-11-10T12:14:33.062012418Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-103 +spec: + metadata: + connID: "40" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776873 + reqtimestampmock: 2025-11-10T12:14:33.062138427Z + restimestampmock: 2025-11-10T12:14:33.062301305Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-104 +spec: + metadata: + connID: "40" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776873 + reqtimestampmock: 2025-11-10T12:14:33.062415894Z + restimestampmock: 2025-11-10T12:14:33.062537293Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-105 +spec: + metadata: + connID: "40" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776873 + reqtimestampmock: 2025-11-10T12:14:33.062687582Z + restimestampmock: 2025-11-10T12:14:33.063235738Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-106 +spec: + metadata: + connID: "42" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [227, 23, 66, 212, 122, 80, 239, 74, 234, 83, 30, 36, 231, 107, 204, 162, 155, 126, 254, 96, 126, 220, 222, 53, 55, 65, 123, 157, 46, 129, 169, 67] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 95 + auth_plugin_data: [60, 74, 15, 42, 37, 33, 17, 61, 124, 46, 96, 53, 114, 45, 2, 125, 118, 22, 11, 77, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776878 + reqtimestampmock: 2025-11-10T12:14:38.550364426Z + restimestampmock: 2025-11-10T12:14:38.556747521Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-107 +spec: + metadata: + connID: "42" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776878 + reqtimestampmock: 2025-11-10T12:14:38.55690912Z + restimestampmock: 2025-11-10T12:14:38.557084309Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-108 +spec: + metadata: + connID: "42" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776878 + reqtimestampmock: 2025-11-10T12:14:38.557213327Z + restimestampmock: 2025-11-10T12:14:38.557366405Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-109 +spec: + metadata: + connID: "42" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776878 + reqtimestampmock: 2025-11-10T12:14:38.557487084Z + restimestampmock: 2025-11-10T12:14:38.557579344Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-110 +spec: + metadata: + connID: "42" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776878 + reqtimestampmock: 2025-11-10T12:14:38.557763772Z + restimestampmock: 2025-11-10T12:14:38.558226158Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-111 +spec: + metadata: + connID: "44" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [16, 22, 126, 135, 167, 58, 96, 209, 78, 188, 198, 10, 112, 87, 171, 66, 232, 171, 138, 62, 75, 64, 40, 109, 130, 233, 1, 7, 83, 200, 56, 147] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 97 + auth_plugin_data: [121, 85, 1, 40, 97, 7, 10, 54, 121, 61, 65, 68, 28, 54, 26, 49, 108, 123, 76, 43, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776884 + reqtimestampmock: 2025-11-10T12:14:44.320070452Z + restimestampmock: 2025-11-10T12:14:44.326814944Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-112 +spec: + metadata: + connID: "44" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776884 + reqtimestampmock: 2025-11-10T12:14:44.327033552Z + restimestampmock: 2025-11-10T12:14:44.32727054Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-113 +spec: + metadata: + connID: "44" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776884 + reqtimestampmock: 2025-11-10T12:14:44.327471348Z + restimestampmock: 2025-11-10T12:14:44.327699266Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-114 +spec: + metadata: + connID: "44" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776884 + reqtimestampmock: 2025-11-10T12:14:44.327829284Z + restimestampmock: 2025-11-10T12:14:44.327939704Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-115 +spec: + metadata: + connID: "44" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776884 + reqtimestampmock: 2025-11-10T12:14:44.328137633Z + restimestampmock: 2025-11-10T12:14:44.328628709Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-116 +spec: + metadata: + connID: "46" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [125, 127, 199, 208, 174, 223, 149, 153, 136, 157, 94, 91, 50, 46, 142, 227, 143, 185, 182, 5, 137, 104, 208, 6, 61, 226, 43, 0, 20, 27, 195, 156] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 99 + auth_plugin_data: [97, 95, 86, 125, 45, 116, 116, 125, 18, 3, 38, 105, 27, 25, 68, 26, 120, 93, 65, 15, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776888 + reqtimestampmock: 2025-11-10T12:14:48.020676145Z + restimestampmock: 2025-11-10T12:14:48.030077823Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-117 +spec: + metadata: + connID: "46" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776888 + reqtimestampmock: 2025-11-10T12:14:48.030305501Z + restimestampmock: 2025-11-10T12:14:48.030504918Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-118 +spec: + metadata: + connID: "46" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776888 + reqtimestampmock: 2025-11-10T12:14:48.030647188Z + restimestampmock: 2025-11-10T12:14:48.030812087Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-119 +spec: + metadata: + connID: "46" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776888 + reqtimestampmock: 2025-11-10T12:14:48.030974434Z + restimestampmock: 2025-11-10T12:14:48.031083104Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-120 +spec: + metadata: + connID: "46" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776888 + reqtimestampmock: 2025-11-10T12:14:48.031354471Z + restimestampmock: 2025-11-10T12:14:48.031791517Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-121 +spec: + metadata: + connID: "48" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [57, 39, 104, 37, 63, 150, 140, 75, 17, 206, 82, 236, 206, 206, 17, 88, 89, 214, 131, 142, 204, 85, 235, 35, 126, 31, 163, 255, 153, 96, 162, 121] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 100 + auth_plugin_data: [73, 99, 1, 22, 90, 16, 108, 18, 88, 45, 82, 1, 69, 61, 58, 18, 61, 9, 73, 56, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776889 + reqtimestampmock: 2025-11-10T12:14:49.525239901Z + restimestampmock: 2025-11-10T12:14:49.534687889Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-122 +spec: + metadata: + connID: "48" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776889 + reqtimestampmock: 2025-11-10T12:14:49.534837407Z + restimestampmock: 2025-11-10T12:14:49.535030525Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-123 +spec: + metadata: + connID: "48" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776889 + reqtimestampmock: 2025-11-10T12:14:49.535163615Z + restimestampmock: 2025-11-10T12:14:49.535377623Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-124 +spec: + metadata: + connID: "48" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776889 + reqtimestampmock: 2025-11-10T12:14:49.535479411Z + restimestampmock: 2025-11-10T12:14:49.53574618Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-125 +spec: + metadata: + connID: "48" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='pooja_login_01' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 6 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776889 + reqtimestampmock: 2025-11-10T12:14:49.535791569Z + restimestampmock: 2025-11-10T12:14:49.536242855Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-126 +spec: + metadata: + connID: "50" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [37, 238, 206, 55, 63, 82, 234, 238, 115, 157, 125, 9, 134, 228, 49, 231, 156, 217, 169, 121, 140, 234, 147, 54, 251, 29, 237, 174, 27, 187, 63, 152] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 102 + auth_plugin_data: [116, 52, 45, 23, 30, 120, 53, 116, 37, 102, 4, 77, 116, 68, 53, 118, 66, 96, 38, 115, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776892 + reqtimestampmock: 2025-11-10T12:14:52.721844523Z + restimestampmock: 2025-11-10T12:14:52.728382006Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-127 +spec: + metadata: + connID: "50" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776892 + reqtimestampmock: 2025-11-10T12:14:52.728586055Z + restimestampmock: 2025-11-10T12:14:52.728765423Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-128 +spec: + metadata: + connID: "50" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776892 + reqtimestampmock: 2025-11-10T12:14:52.728880402Z + restimestampmock: 2025-11-10T12:14:52.729027311Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-129 +spec: + metadata: + connID: "50" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776892 + reqtimestampmock: 2025-11-10T12:14:52.729209459Z + restimestampmock: 2025-11-10T12:14:52.729273609Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-130 +spec: + metadata: + connID: "50" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776892 + reqtimestampmock: 2025-11-10T12:14:52.729467306Z + restimestampmock: 2025-11-10T12:14:52.730083082Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-131 +spec: + metadata: + connID: "52" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [149, 39, 153, 247, 28, 142, 150, 47, 135, 170, 214, 122, 180, 196, 42, 111, 198, 122, 233, 179, 130, 241, 120, 138, 115, 219, 220, 238, 189, 191, 225, 151] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 103 + auth_plugin_data: [95, 22, 69, 101, 44, 113, 76, 71, 108, 115, 37, 1, 19, 29, 90, 9, 15, 83, 107, 2, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776896 + reqtimestampmock: 2025-11-10T12:14:56.67932Z + restimestampmock: 2025-11-10T12:14:56.685779893Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-132 +spec: + metadata: + connID: "52" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776896 + reqtimestampmock: 2025-11-10T12:14:56.685941543Z + restimestampmock: 2025-11-10T12:14:56.686129401Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-133 +spec: + metadata: + connID: "52" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776896 + reqtimestampmock: 2025-11-10T12:14:56.686252459Z + restimestampmock: 2025-11-10T12:14:56.686393888Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-134 +spec: + metadata: + connID: "52" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776896 + reqtimestampmock: 2025-11-10T12:14:56.686495497Z + restimestampmock: 2025-11-10T12:14:56.686619606Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-135 +spec: + metadata: + connID: "52" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776896 + reqtimestampmock: 2025-11-10T12:14:56.686775156Z + restimestampmock: 2025-11-10T12:14:56.687303721Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-136 +spec: + metadata: + connID: "54" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [60, 146, 183, 238, 193, 69, 252, 30, 90, 244, 124, 218, 132, 243, 232, 43, 254, 224, 88, 251, 30, 163, 154, 47, 226, 108, 55, 5, 85, 37, 153, 253] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 105 + auth_plugin_data: [23, 46, 59, 9, 88, 46, 76, 81, 14, 9, 78, 83, 13, 64, 58, 22, 25, 97, 31, 108, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776900 + reqtimestampmock: 2025-11-10T12:15:00.31604395Z + restimestampmock: 2025-11-10T12:15:00.322331106Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-137 +spec: + metadata: + connID: "54" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776900 + reqtimestampmock: 2025-11-10T12:15:00.322505595Z + restimestampmock: 2025-11-10T12:15:00.322690763Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-138 +spec: + metadata: + connID: "54" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776900 + reqtimestampmock: 2025-11-10T12:15:00.322789091Z + restimestampmock: 2025-11-10T12:15:00.323009121Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-139 +spec: + metadata: + connID: "54" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776900 + reqtimestampmock: 2025-11-10T12:15:00.323131929Z + restimestampmock: 2025-11-10T12:15:00.323223778Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-140 +spec: + metadata: + connID: "54" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776900 + reqtimestampmock: 2025-11-10T12:15:00.323423786Z + restimestampmock: 2025-11-10T12:15:00.323934722Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-141 +spec: + metadata: + connID: "56" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [211, 157, 38, 157, 158, 130, 251, 124, 2, 247, 136, 137, 16, 43, 45, 120, 32, 230, 245, 71, 128, 225, 188, 169, 217, 154, 16, 147, 132, 240, 138, 71] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 107 + auth_plugin_data: [56, 51, 82, 101, 73, 1, 112, 23, 48, 117, 48, 125, 68, 124, 113, 37, 41, 100, 104, 26, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776905 + reqtimestampmock: 2025-11-10T12:15:05.18433628Z + restimestampmock: 2025-11-10T12:15:05.190711395Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-142 +spec: + metadata: + connID: "56" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776905 + reqtimestampmock: 2025-11-10T12:15:05.190857273Z + restimestampmock: 2025-11-10T12:15:05.19108238Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-143 +spec: + metadata: + connID: "56" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776905 + reqtimestampmock: 2025-11-10T12:15:05.19120356Z + restimestampmock: 2025-11-10T12:15:05.191368218Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-144 +spec: + metadata: + connID: "56" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776905 + reqtimestampmock: 2025-11-10T12:15:05.191476347Z + restimestampmock: 2025-11-10T12:15:05.191605957Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-145 +spec: + metadata: + connID: "56" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776905 + reqtimestampmock: 2025-11-10T12:15:05.191751425Z + restimestampmock: 2025-11-10T12:15:05.192223041Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-146 +spec: + metadata: + connID: "58" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [171, 190, 195, 110, 174, 222, 29, 123, 11, 216, 80, 111, 30, 117, 116, 125, 66, 87, 141, 212, 246, 189, 69, 25, 254, 149, 170, 139, 178, 250, 24, 155] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 109 + auth_plugin_data: [54, 121, 121, 81, 16, 60, 28, 24, 106, 33, 89, 100, 78, 87, 39, 46, 33, 49, 117, 118, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776911 + reqtimestampmock: 2025-11-10T12:15:11.076217798Z + restimestampmock: 2025-11-10T12:15:11.082380044Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-147 +spec: + metadata: + connID: "58" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776911 + reqtimestampmock: 2025-11-10T12:15:11.082529653Z + restimestampmock: 2025-11-10T12:15:11.082682401Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-148 +spec: + metadata: + connID: "58" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776911 + reqtimestampmock: 2025-11-10T12:15:11.082784981Z + restimestampmock: 2025-11-10T12:15:11.082905991Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-149 +spec: + metadata: + connID: "58" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776911 + reqtimestampmock: 2025-11-10T12:15:11.083025569Z + restimestampmock: 2025-11-10T12:15:11.083118898Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-150 +spec: + metadata: + connID: "58" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776911 + reqtimestampmock: 2025-11-10T12:15:11.083260287Z + restimestampmock: 2025-11-10T12:15:11.083704973Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-151 +spec: + metadata: + connID: "60" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [137, 232, 252, 72, 28, 91, 216, 92, 95, 199, 63, 179, 158, 158, 94, 121, 240, 51, 62, 246, 208, 162, 213, 223, 201, 172, 202, 89, 233, 149, 252, 227] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 112 + auth_plugin_data: [10, 7, 48, 9, 32, 119, 17, 125, 15, 16, 37, 92, 8, 65, 97, 9, 126, 127, 25, 7, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776920 + reqtimestampmock: 2025-11-10T12:15:20.646029475Z + restimestampmock: 2025-11-10T12:15:20.652518579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-152 +spec: + metadata: + connID: "60" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776920 + reqtimestampmock: 2025-11-10T12:15:20.652699847Z + restimestampmock: 2025-11-10T12:15:20.652878586Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-153 +spec: + metadata: + connID: "60" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776920 + reqtimestampmock: 2025-11-10T12:15:20.652984034Z + restimestampmock: 2025-11-10T12:15:20.653139602Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-154 +spec: + metadata: + connID: "60" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776920 + reqtimestampmock: 2025-11-10T12:15:20.653298791Z + restimestampmock: 2025-11-10T12:15:20.65340579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-155 +spec: + metadata: + connID: "60" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776920 + reqtimestampmock: 2025-11-10T12:15:20.65360614Z + restimestampmock: 2025-11-10T12:15:20.653999995Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-156 +spec: + metadata: + connID: "62" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [232, 248, 151, 226, 42, 238, 208, 6, 58, 199, 178, 74, 244, 44, 252, 106, 137, 198, 132, 98, 46, 249, 167, 99, 230, 180, 119, 147, 196, 158, 179, 34] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 114 + auth_plugin_data: [43, 8, 117, 62, 9, 23, 52, 42, 67, 123, 93, 71, 109, 28, 1, 99, 95, 102, 50, 53, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776924 + reqtimestampmock: 2025-11-10T12:15:24.603025073Z + restimestampmock: 2025-11-10T12:15:24.609183769Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-157 +spec: + metadata: + connID: "62" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776924 + reqtimestampmock: 2025-11-10T12:15:24.609386548Z + restimestampmock: 2025-11-10T12:15:24.609563216Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-158 +spec: + metadata: + connID: "62" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776924 + reqtimestampmock: 2025-11-10T12:15:24.609673354Z + restimestampmock: 2025-11-10T12:15:24.609830414Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-159 +spec: + metadata: + connID: "62" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776924 + reqtimestampmock: 2025-11-10T12:15:24.609937663Z + restimestampmock: 2025-11-10T12:15:24.610043742Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-160 +spec: + metadata: + connID: "62" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776924 + reqtimestampmock: 2025-11-10T12:15:24.610283149Z + restimestampmock: 2025-11-10T12:15:24.610782235Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-161 +spec: + metadata: + connID: "64" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [136, 42, 78, 221, 78, 22, 239, 137, 54, 207, 191, 248, 107, 72, 211, 5, 74, 251, 239, 143, 91, 25, 233, 77, 158, 77, 60, 89, 32, 75, 98, 253] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 116 + auth_plugin_data: [72, 125, 63, 31, 86, 57, 68, 25, 28, 126, 123, 121, 21, 38, 61, 37, 57, 95, 107, 106, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776927 + reqtimestampmock: 2025-11-10T12:15:27.302740145Z + restimestampmock: 2025-11-10T12:15:27.30899906Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-162 +spec: + metadata: + connID: "64" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776927 + reqtimestampmock: 2025-11-10T12:15:27.30920676Z + restimestampmock: 2025-11-10T12:15:27.309373827Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-163 +spec: + metadata: + connID: "64" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776927 + reqtimestampmock: 2025-11-10T12:15:27.309481016Z + restimestampmock: 2025-11-10T12:15:27.309645855Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-164 +spec: + metadata: + connID: "64" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776927 + reqtimestampmock: 2025-11-10T12:15:27.309737435Z + restimestampmock: 2025-11-10T12:15:27.309835453Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-165 +spec: + metadata: + connID: "64" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776927 + reqtimestampmock: 2025-11-10T12:15:27.310002592Z + restimestampmock: 2025-11-10T12:15:27.310502708Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-166 +spec: + metadata: + connID: "66" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [54, 169, 248, 155, 0, 72, 107, 6, 74, 18, 21, 121, 33, 130, 61, 41, 168, 31, 38, 123, 153, 58, 32, 141, 6, 157, 16, 217, 204, 82, 218, 218] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 117 + auth_plugin_data: [113, 57, 6, 53, 41, 11, 1, 59, 107, 64, 31, 34, 25, 68, 54, 103, 53, 92, 62, 119, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776928 + reqtimestampmock: 2025-11-10T12:15:28.933097273Z + restimestampmock: 2025-11-10T12:15:28.939450598Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-167 +spec: + metadata: + connID: "66" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776928 + reqtimestampmock: 2025-11-10T12:15:28.939615287Z + restimestampmock: 2025-11-10T12:15:28.939779975Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-168 +spec: + metadata: + connID: "66" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776928 + reqtimestampmock: 2025-11-10T12:15:28.939877305Z + restimestampmock: 2025-11-10T12:15:28.940085393Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-169 +spec: + metadata: + connID: "66" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776928 + reqtimestampmock: 2025-11-10T12:15:28.9403025Z + restimestampmock: 2025-11-10T12:15:28.9403734Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-170 +spec: + metadata: + connID: "66" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776928 + reqtimestampmock: 2025-11-10T12:15:28.940551839Z + restimestampmock: 2025-11-10T12:15:28.940982915Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-171 +spec: + metadata: + connID: "68" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [218, 57, 55, 147, 183, 25, 122, 201, 195, 20, 158, 230, 131, 80, 97, 210, 202, 93, 180, 67, 97, 241, 1, 255, 109, 222, 108, 201, 114, 41, 239, 87] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 118 + auth_plugin_data: [87, 111, 25, 106, 73, 98, 85, 112, 52, 109, 2, 116, 109, 34, 13, 30, 59, 8, 121, 52, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776930 + reqtimestampmock: 2025-11-10T12:15:30.516182175Z + restimestampmock: 2025-11-10T12:15:30.52242641Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-172 +spec: + metadata: + connID: "68" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776930 + reqtimestampmock: 2025-11-10T12:15:30.522578408Z + restimestampmock: 2025-11-10T12:15:30.522747838Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-173 +spec: + metadata: + connID: "68" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776930 + reqtimestampmock: 2025-11-10T12:15:30.522880246Z + restimestampmock: 2025-11-10T12:15:30.523019916Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-174 +spec: + metadata: + connID: "68" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776930 + reqtimestampmock: 2025-11-10T12:15:30.523138424Z + restimestampmock: 2025-11-10T12:15:30.523247643Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-175 +spec: + metadata: + connID: "68" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776930 + reqtimestampmock: 2025-11-10T12:15:30.523489601Z + restimestampmock: 2025-11-10T12:15:30.523864908Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-176 +spec: + metadata: + connID: "70" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [13, 77, 203, 186, 10, 71, 53, 120, 112, 193, 254, 74, 168, 71, 224, 146, 210, 21, 38, 220, 87, 19, 194, 156, 203, 49, 59, 170, 111, 27, 192, 72] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 120 + auth_plugin_data: [20, 23, 62, 78, 96, 107, 43, 67, 52, 94, 108, 124, 22, 44, 92, 47, 21, 60, 98, 99, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776935 + reqtimestampmock: 2025-11-10T12:15:35.838945598Z + restimestampmock: 2025-11-10T12:15:35.84572039Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-177 +spec: + metadata: + connID: "70" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776935 + reqtimestampmock: 2025-11-10T12:15:35.845938087Z + restimestampmock: 2025-11-10T12:15:35.846163596Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-178 +spec: + metadata: + connID: "70" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776935 + reqtimestampmock: 2025-11-10T12:15:35.846335244Z + restimestampmock: 2025-11-10T12:15:35.846525793Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-179 +spec: + metadata: + connID: "70" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776935 + reqtimestampmock: 2025-11-10T12:15:35.846636081Z + restimestampmock: 2025-11-10T12:15:35.84674104Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-180 +spec: + metadata: + connID: "70" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776935 + reqtimestampmock: 2025-11-10T12:15:35.846976218Z + restimestampmock: 2025-11-10T12:15:35.847528504Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-181 +spec: + metadata: + connID: "72" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [55, 223, 113, 142, 181, 96, 126, 141, 119, 173, 49, 136, 194, 79, 182, 108, 30, 62, 84, 53, 62, 119, 155, 181, 16, 204, 169, 90, 146, 186, 244, 251] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 122 + auth_plugin_data: [91, 116, 21, 17, 117, 120, 4, 69, 49, 79, 64, 23, 119, 7, 51, 16, 30, 16, 71, 53, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776937 + reqtimestampmock: 2025-11-10T12:15:37.545626945Z + restimestampmock: 2025-11-10T12:15:37.552398717Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-182 +spec: + metadata: + connID: "72" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776937 + reqtimestampmock: 2025-11-10T12:15:37.552562294Z + restimestampmock: 2025-11-10T12:15:37.552751413Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-183 +spec: + metadata: + connID: "72" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776937 + reqtimestampmock: 2025-11-10T12:15:37.552897152Z + restimestampmock: 2025-11-10T12:15:37.55304301Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-184 +spec: + metadata: + connID: "72" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776937 + reqtimestampmock: 2025-11-10T12:15:37.5531606Z + restimestampmock: 2025-11-10T12:15:37.553257928Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-185 +spec: + metadata: + connID: "72" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776937 + reqtimestampmock: 2025-11-10T12:15:37.553488438Z + restimestampmock: 2025-11-10T12:15:37.553925273Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-186 +spec: + metadata: + connID: "74" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [192, 206, 87, 242, 147, 234, 99, 100, 176, 30, 153, 218, 57, 192, 248, 88, 223, 66, 115, 251, 112, 235, 3, 68, 161, 108, 222, 214, 253, 166, 103, 198] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 123 + auth_plugin_data: [1, 59, 19, 60, 59, 80, 2, 65, 124, 75, 1, 10, 6, 13, 63, 13, 23, 85, 127, 26, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776939 + reqtimestampmock: 2025-11-10T12:15:39.123983115Z + restimestampmock: 2025-11-10T12:15:39.13037835Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-187 +spec: + metadata: + connID: "74" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776939 + reqtimestampmock: 2025-11-10T12:15:39.13053417Z + restimestampmock: 2025-11-10T12:15:39.130728857Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-188 +spec: + metadata: + connID: "74" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776939 + reqtimestampmock: 2025-11-10T12:15:39.130855327Z + restimestampmock: 2025-11-10T12:15:39.131029086Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-189 +spec: + metadata: + connID: "74" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776939 + reqtimestampmock: 2025-11-10T12:15:39.131224413Z + restimestampmock: 2025-11-10T12:15:39.131343443Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-190 +spec: + metadata: + connID: "74" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776939 + reqtimestampmock: 2025-11-10T12:15:39.13160229Z + restimestampmock: 2025-11-10T12:15:39.132085356Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-191 +spec: + metadata: + connID: "76" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [12, 131, 183, 136, 163, 12, 143, 45, 20, 187, 127, 212, 192, 92, 176, 206, 46, 74, 54, 129, 230, 71, 174, 197, 160, 196, 185, 234, 105, 24, 212, 178] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 124 + auth_plugin_data: [49, 14, 81, 83, 34, 100, 39, 34, 74, 59, 56, 14, 73, 10, 104, 104, 96, 79, 17, 50, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776941 + reqtimestampmock: 2025-11-10T12:15:41.937442889Z + restimestampmock: 2025-11-10T12:15:41.943459037Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-192 +spec: + metadata: + connID: "76" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776941 + reqtimestampmock: 2025-11-10T12:15:41.943597547Z + restimestampmock: 2025-11-10T12:15:41.943785885Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-193 +spec: + metadata: + connID: "76" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776941 + reqtimestampmock: 2025-11-10T12:15:41.943913993Z + restimestampmock: 2025-11-10T12:15:41.944046463Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-194 +spec: + metadata: + connID: "76" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776941 + reqtimestampmock: 2025-11-10T12:15:41.944167881Z + restimestampmock: 2025-11-10T12:15:41.94431101Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-195 +spec: + metadata: + connID: "76" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776941 + reqtimestampmock: 2025-11-10T12:15:41.94443858Z + restimestampmock: 2025-11-10T12:15:41.944860336Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-196 +spec: + metadata: + connID: "78" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [144, 253, 165, 4, 121, 222, 162, 220, 88, 88, 224, 215, 71, 52, 174, 196, 32, 54, 172, 245, 6, 240, 146, 110, 23, 9, 228, 93, 216, 136, 31, 213] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 126 + auth_plugin_data: [108, 110, 63, 10, 7, 85, 1, 107, 112, 6, 68, 35, 56, 12, 124, 55, 28, 8, 23, 74, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776944 + reqtimestampmock: 2025-11-10T12:15:44.881687655Z + restimestampmock: 2025-11-10T12:15:44.8880936Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-197 +spec: + metadata: + connID: "78" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776944 + reqtimestampmock: 2025-11-10T12:15:44.888309087Z + restimestampmock: 2025-11-10T12:15:44.888481877Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-198 +spec: + metadata: + connID: "78" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776944 + reqtimestampmock: 2025-11-10T12:15:44.888608244Z + restimestampmock: 2025-11-10T12:15:44.888828733Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-199 +spec: + metadata: + connID: "78" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776944 + reqtimestampmock: 2025-11-10T12:15:44.888951362Z + restimestampmock: 2025-11-10T12:15:44.889074401Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-200 +spec: + metadata: + connID: "78" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776944 + reqtimestampmock: 2025-11-10T12:15:44.889227239Z + restimestampmock: 2025-11-10T12:15:44.889610116Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-201 +spec: + metadata: + connID: "80" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [180, 32, 209, 252, 154, 56, 64, 152, 119, 76, 60, 85, 84, 187, 83, 108, 176, 40, 79, 244, 32, 65, 56, 223, 117, 25, 138, 204, 230, 235, 20, 31] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 128 + auth_plugin_data: [116, 54, 32, 57, 74, 55, 12, 122, 34, 57, 25, 49, 61, 48, 28, 127, 24, 55, 122, 9, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776947 + reqtimestampmock: 2025-11-10T12:15:47.526198658Z + restimestampmock: 2025-11-10T12:15:47.534428228Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-202 +spec: + metadata: + connID: "80" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776947 + reqtimestampmock: 2025-11-10T12:15:47.534757195Z + restimestampmock: 2025-11-10T12:15:47.534802404Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-203 +spec: + metadata: + connID: "80" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776947 + reqtimestampmock: 2025-11-10T12:15:47.534908863Z + restimestampmock: 2025-11-10T12:15:47.535070993Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-204 +spec: + metadata: + connID: "80" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776947 + reqtimestampmock: 2025-11-10T12:15:47.53523622Z + restimestampmock: 2025-11-10T12:15:47.5353393Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-205 +spec: + metadata: + connID: "80" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776947 + reqtimestampmock: 2025-11-10T12:15:47.535526588Z + restimestampmock: 2025-11-10T12:15:47.535950725Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-206 +spec: + metadata: + connID: "82" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [232, 102, 217, 141, 139, 87, 1, 32, 81, 214, 144, 50, 52, 93, 174, 218, 150, 178, 3, 184, 227, 107, 65, 94, 37, 186, 129, 233, 186, 67, 134, 177] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 129 + auth_plugin_data: [9, 19, 41, 62, 2, 18, 1, 23, 2, 54, 53, 34, 112, 109, 90, 102, 25, 34, 19, 76, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776950 + reqtimestampmock: 2025-11-10T12:15:50.825539965Z + restimestampmock: 2025-11-10T12:15:50.831803079Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-207 +spec: + metadata: + connID: "82" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776950 + reqtimestampmock: 2025-11-10T12:15:50.832022469Z + restimestampmock: 2025-11-10T12:15:50.832239076Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-208 +spec: + metadata: + connID: "82" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776950 + reqtimestampmock: 2025-11-10T12:15:50.832347325Z + restimestampmock: 2025-11-10T12:15:50.832607243Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-209 +spec: + metadata: + connID: "82" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776950 + reqtimestampmock: 2025-11-10T12:15:50.832735062Z + restimestampmock: 2025-11-10T12:15:50.8329617Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-210 +spec: + metadata: + connID: "82" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776950 + reqtimestampmock: 2025-11-10T12:15:50.833002429Z + restimestampmock: 2025-11-10T12:15:50.833552274Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-211 +spec: + metadata: + connID: "84" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [120, 139, 116, 139, 211, 60, 36, 95, 104, 220, 47, 220, 0, 229, 244, 125, 225, 108, 130, 93, 87, 50, 76, 209, 29, 146, 243, 233, 119, 65, 190, 24] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 131 + auth_plugin_data: [31, 60, 70, 20, 91, 92, 98, 72, 69, 112, 124, 59, 27, 86, 30, 42, 49, 116, 46, 45, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.675796545Z + restimestampmock: 2025-11-10T12:15:53.68209351Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-212 +spec: + metadata: + connID: "84" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.682267339Z + restimestampmock: 2025-11-10T12:15:53.682438407Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-213 +spec: + metadata: + connID: "84" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.682544917Z + restimestampmock: 2025-11-10T12:15:53.682702405Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-214 +spec: + metadata: + connID: "84" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.682850744Z + restimestampmock: 2025-11-10T12:15:53.682939823Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-215 +spec: + metadata: + connID: "84" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='admin' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 164 + sequence_id: 6 + values: + - type: 253 + name: id + value: 8bd161aa-bb12-11f0-982a-c678de5766ef + unsigned: false + - type: 253 + name: username + value: admin + unsigned: false + - type: 253 + name: email + value: admin@example.com + unsigned: false + - type: 253 + name: password_hash + value: pbkdf2:sha256:600000$nBh786TvaYCbJPcQ$b1429e79b521a37444b162e4526d576a3acd87525c7f7413e5f94108c775815c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.683118842Z + restimestampmock: 2025-11-10T12:15:53.683506639Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-216 +spec: + metadata: + connID: "86" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [228, 20, 109, 5, 224, 79, 250, 101, 174, 49, 231, 34, 214, 202, 11, 11, 246, 109, 223, 250, 93, 131, 8, 81, 75, 221, 109, 63, 120, 90, 86, 22] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 132 + auth_plugin_data: [42, 4, 91, 24, 77, 121, 38, 73, 72, 104, 120, 3, 125, 76, 27, 77, 7, 34, 81, 77, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.984124106Z + restimestampmock: 2025-11-10T12:15:53.993703313Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-217 +spec: + metadata: + connID: "86" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.993847072Z + restimestampmock: 2025-11-10T12:15:53.994026141Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-218 +spec: + metadata: + connID: "86" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.99413972Z + restimestampmock: 2025-11-10T12:15:53.994350868Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-219 +spec: + metadata: + connID: "86" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.994462557Z + restimestampmock: 2025-11-10T12:15:53.994560045Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-220 +spec: + metadata: + connID: "86" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 78 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='alice' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 224 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9fdac0ef-7d77-4798-b07f-a7076b80aa63 + unsigned: false + - type: 253 + name: username + value: alice + unsigned: false + - type: 253 + name: email + value: alice@example.com + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$NOz3kOZZlytXrAm8$4eae1648817bb25348bd87d9b3bf54c4006ba518df01fd4d400cfbe6f8d3037c12f7638ee0059e1117651f816b0cb7a6b7687a9bb4d6ef0c634d10490297af4f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762776953 + reqtimestampmock: 2025-11-10T12:15:53.994728795Z + restimestampmock: 2025-11-10T12:15:53.995182301Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-221 +spec: + metadata: + connID: "88" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [192, 45, 43, 255, 152, 105, 206, 172, 232, 168, 2, 118, 52, 15, 75, 69, 189, 54, 167, 22, 254, 126, 132, 250, 208, 31, 112, 141, 16, 3, 48, 1] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 146 + auth_plugin_data: [48, 54, 93, 67, 127, 73, 8, 73, 59, 51, 50, 16, 85, 50, 94, 59, 51, 49, 4, 54, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777020 + reqtimestampmock: 2025-11-10T12:17:00.359788952Z + restimestampmock: 2025-11-10T12:17:00.365872299Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-222 +spec: + metadata: + connID: "88" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777020 + reqtimestampmock: 2025-11-10T12:17:00.366033258Z + restimestampmock: 2025-11-10T12:17:00.366216007Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-223 +spec: + metadata: + connID: "88" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777020 + reqtimestampmock: 2025-11-10T12:17:00.366325436Z + restimestampmock: 2025-11-10T12:17:00.366468235Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-224 +spec: + metadata: + connID: "88" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777020 + reqtimestampmock: 2025-11-10T12:17:00.366587164Z + restimestampmock: 2025-11-10T12:17:00.366690653Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-225 +spec: + metadata: + connID: "88" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('16be51aa-dcaf-4681-b125-ccffcc64e663', 'priya_e2e_01', 'priya_e2e_01@example.in', 'scrypt:32768:8:1$9pjU5vePTjMyU6jn$09f4905c2ccf91cdc6e94f1fe9a673c6c6aeded3e09895562b48bd761fc3c3bc2c10149cd518bcd4e7ad12c7cc3619557f541fd358e430ba2e4984f835329a6f', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777020 + reqtimestampmock: 2025-11-10T12:17:00.413987369Z + restimestampmock: 2025-11-10T12:17:00.418620029Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-226 +spec: + metadata: + connID: "88" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777020 + reqtimestampmock: 2025-11-10T12:17:00.418789407Z + restimestampmock: 2025-11-10T12:17:00.427628262Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-227 +spec: + metadata: + connID: "90" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [248, 91, 43, 199, 173, 203, 76, 115, 175, 131, 32, 128, 29, 202, 41, 51, 160, 89, 8, 205, 44, 44, 137, 151, 137, 98, 62, 44, 98, 47, 140, 155] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 147 + auth_plugin_data: [78, 51, 111, 48, 44, 1, 74, 52, 9, 52, 23, 103, 120, 20, 47, 10, 97, 78, 51, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.141286923Z + restimestampmock: 2025-11-10T12:17:01.148034654Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-228 +spec: + metadata: + connID: "90" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.148310982Z + restimestampmock: 2025-11-10T12:17:01.14855375Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-229 +spec: + metadata: + connID: "90" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.148690109Z + restimestampmock: 2025-11-10T12:17:01.148851027Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-230 +spec: + metadata: + connID: "90" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.149017115Z + restimestampmock: 2025-11-10T12:17:01.149215433Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-231 +spec: + metadata: + connID: "90" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='priya_e2e_01' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 16be51aa-dcaf-4681-b125-ccffcc64e663 + unsigned: false + - type: 253 + name: username + value: priya_e2e_01 + unsigned: false + - type: 253 + name: email + value: priya_e2e_01@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$9pjU5vePTjMyU6jn$09f4905c2ccf91cdc6e94f1fe9a673c6c6aeded3e09895562b48bd761fc3c3bc2c10149cd518bcd4e7ad12c7cc3619557f541fd358e430ba2e4984f835329a6f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.149419483Z + restimestampmock: 2025-11-10T12:17:01.149795309Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-232 +spec: + metadata: + connID: "92" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [120, 152, 144, 36, 253, 147, 140, 136, 219, 38, 59, 136, 20, 42, 209, 144, 23, 252, 239, 35, 231, 203, 134, 216, 216, 124, 62, 43, 31, 169, 136, 5] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 148 + auth_plugin_data: [79, 62, 118, 97, 82, 23, 80, 69, 88, 2, 45, 4, 118, 65, 17, 62, 54, 75, 123, 51, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.961014457Z + restimestampmock: 2025-11-10T12:17:01.969473154Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-233 +spec: + metadata: + connID: "92" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.969662843Z + restimestampmock: 2025-11-10T12:17:01.969839501Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-234 +spec: + metadata: + connID: "92" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.969944081Z + restimestampmock: 2025-11-10T12:17:01.970160629Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-235 +spec: + metadata: + connID: "92" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.970252448Z + restimestampmock: 2025-11-10T12:17:01.970381397Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-236 +spec: + metadata: + connID: "92" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 109 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, phone, created_at FROM users WHERE id = '16be51aa-dcaf-4681-b125-ccffcc64e663' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 5 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 59 + sequence_id: 6 + catalog: def + schema: user_db + table: users + org_table: users + name: created_at + org_name: created_at + fixed_length: 12 + character_set: 63 + column_length: 19 + type: 7 + flags: 1153 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 95 + sequence_id: 7 + values: + - type: 253 + name: id + value: 16be51aa-dcaf-4681-b125-ccffcc64e663 + unsigned: false + - type: 253 + name: username + value: priya_e2e_01 + unsigned: false + - type: 253 + name: email + value: priya_e2e_01@example.in + unsigned: false + - type: 253 + name: phone + value: null + unsigned: false + - type: 7 + name: created_at + value: "2025-11-10 12:17:00" + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 8 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.970546385Z + restimestampmock: 2025-11-10T12:17:01.971023331Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-237 +spec: + metadata: + connID: "92" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='16be51aa-dcaf-4681-b125-ccffcc64e663' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 11 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777021 + reqtimestampmock: 2025-11-10T12:17:01.971251969Z + restimestampmock: 2025-11-10T12:17:01.973638039Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-238 +spec: + metadata: + connID: "94" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [47, 8, 50, 186, 124, 199, 167, 156, 105, 212, 48, 181, 147, 126, 32, 253, 157, 235, 85, 24, 173, 228, 38, 80, 104, 39, 9, 127, 86, 133, 43, 129] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 149 + auth_plugin_data: [122, 64, 116, 1, 63, 68, 32, 27, 109, 94, 92, 103, 105, 70, 69, 112, 98, 33, 37, 19, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.708566918Z + restimestampmock: 2025-11-10T12:17:02.714821555Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-239 +spec: + metadata: + connID: "94" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.715007213Z + restimestampmock: 2025-11-10T12:17:02.715199372Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-240 +spec: + metadata: + connID: "94" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.715309851Z + restimestampmock: 2025-11-10T12:17:02.715460329Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-241 +spec: + metadata: + connID: "94" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.715619708Z + restimestampmock: 2025-11-10T12:17:02.715769407Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-242 +spec: + metadata: + connID: "94" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='16be51aa-dcaf-4681-b125-ccffcc64e663' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 16be51aa-dcaf-4681-b125-ccffcc64e663 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.715941426Z + restimestampmock: 2025-11-10T12:17:02.716283593Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-243 +spec: + metadata: + connID: "94" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 268 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('63f3fd41-0c2d-4609-9934-999884526bda','16be51aa-dcaf-4681-b125-ccffcc64e663','123 MG Road',NULL,'Bengaluru','Karnataka','560001','IN','+919876543210',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.71661122Z + restimestampmock: 2025-11-10T12:17:02.717023536Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-244 +spec: + metadata: + connID: "94" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='16be51aa-dcaf-4681-b125-ccffcc64e663' AND id<>'63f3fd41-0c2d-4609-9934-999884526bda' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.717446082Z + restimestampmock: 2025-11-10T12:17:02.722319571Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-245 +spec: + metadata: + connID: "94" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777022 + reqtimestampmock: 2025-11-10T12:17:02.72247252Z + restimestampmock: 2025-11-10T12:17:02.733589864Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-246 +spec: + metadata: + connID: "96" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [167, 185, 78, 21, 75, 232, 47, 147, 77, 229, 163, 196, 172, 165, 183, 107, 40, 238, 28, 203, 84, 67, 241, 254, 196, 192, 78, 225, 189, 166, 33, 93] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 151 + auth_plugin_data: [17, 86, 106, 10, 18, 22, 6, 125, 110, 48, 23, 35, 82, 56, 44, 123, 49, 72, 40, 3, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777023 + reqtimestampmock: 2025-11-10T12:17:03.521803589Z + restimestampmock: 2025-11-10T12:17:03.53223849Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-247 +spec: + metadata: + connID: "96" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777023 + reqtimestampmock: 2025-11-10T12:17:03.532401399Z + restimestampmock: 2025-11-10T12:17:03.532590687Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-248 +spec: + metadata: + connID: "96" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777023 + reqtimestampmock: 2025-11-10T12:17:03.532700476Z + restimestampmock: 2025-11-10T12:17:03.532816755Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-249 +spec: + metadata: + connID: "96" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777023 + reqtimestampmock: 2025-11-10T12:17:03.532909915Z + restimestampmock: 2025-11-10T12:17:03.532992764Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-250 +spec: + metadata: + connID: "96" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='16be51aa-dcaf-4681-b125-ccffcc64e663' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 16be51aa-dcaf-4681-b125-ccffcc64e663 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777023 + reqtimestampmock: 2025-11-10T12:17:03.533181511Z + restimestampmock: 2025-11-10T12:17:03.533497549Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-251 +spec: + metadata: + connID: "96" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='16be51aa-dcaf-4681-b125-ccffcc64e663' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 96 + sequence_id: 11 + values: + - type: 253 + name: id + value: 63f3fd41-0c2d-4609-9934-999884526bda + unsigned: false + - type: 253 + name: line1 + value: 123 MG Road + unsigned: false + - type: 253 + name: line2 + value: null + unsigned: false + - type: 253 + name: city + value: Bengaluru + unsigned: false + - type: 253 + name: state + value: Karnataka + unsigned: false + - type: 253 + name: postal_code + value: "560001" + unsigned: false + - type: 253 + name: country + value: IN + unsigned: false + - type: 253 + name: phone + value: "+919876543210" + unsigned: false + - type: 1 + name: is_default + value: "1" + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 12 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777023 + reqtimestampmock: 2025-11-10T12:17:03.533699968Z + restimestampmock: 2025-11-10T12:17:03.534212833Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-252 +spec: + metadata: + connID: "98" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [255, 139, 222, 92, 33, 220, 67, 237, 64, 47, 40, 91, 227, 32, 208, 139, 22, 250, 228, 237, 121, 71, 199, 158, 133, 108, 111, 193, 206, 253, 232, 213] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 152 + auth_plugin_data: [55, 53, 33, 14, 101, 41, 62, 58, 109, 59, 3, 79, 114, 25, 71, 23, 86, 11, 29, 97, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.28018839Z + restimestampmock: 2025-11-10T12:17:04.286713074Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-253 +spec: + metadata: + connID: "98" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.286856002Z + restimestampmock: 2025-11-10T12:17:04.28707058Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-254 +spec: + metadata: + connID: "98" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.287191539Z + restimestampmock: 2025-11-10T12:17:04.287378968Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-255 +spec: + metadata: + connID: "98" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.287476997Z + restimestampmock: 2025-11-10T12:17:04.287571397Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-256 +spec: + metadata: + connID: "98" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='16be51aa-dcaf-4681-b125-ccffcc64e663' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 16be51aa-dcaf-4681-b125-ccffcc64e663 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.287733584Z + restimestampmock: 2025-11-10T12:17:04.288069582Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-257 +spec: + metadata: + connID: "98" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='16be51aa-dcaf-4681-b125-ccffcc64e663' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.28831858Z + restimestampmock: 2025-11-10T12:17:04.288753786Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-258 +spec: + metadata: + connID: "98" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='16be51aa-dcaf-4681-b125-ccffcc64e663' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.288980684Z + restimestampmock: 2025-11-10T12:17:04.289279041Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-259 +spec: + metadata: + connID: "98" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777024 + reqtimestampmock: 2025-11-10T12:17:04.289401891Z + restimestampmock: 2025-11-10T12:17:04.30354454Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-260 +spec: + metadata: + connID: "100" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [175, 190, 189, 157, 163, 72, 11, 250, 98, 195, 30, 203, 113, 187, 10, 150, 219, 133, 132, 112, 43, 182, 191, 3, 98, 146, 32, 13, 138, 93, 178, 146] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 153 + auth_plugin_data: [1, 119, 63, 46, 37, 21, 11, 102, 12, 121, 115, 10, 2, 124, 120, 117, 99, 9, 62, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777026 + reqtimestampmock: 2025-11-10T12:17:06.374810525Z + restimestampmock: 2025-11-10T12:17:06.383281432Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-261 +spec: + metadata: + connID: "100" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777026 + reqtimestampmock: 2025-11-10T12:17:06.38344688Z + restimestampmock: 2025-11-10T12:17:06.383632809Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-262 +spec: + metadata: + connID: "100" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777026 + reqtimestampmock: 2025-11-10T12:17:06.383726688Z + restimestampmock: 2025-11-10T12:17:06.383845787Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-263 +spec: + metadata: + connID: "100" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777026 + reqtimestampmock: 2025-11-10T12:17:06.383946426Z + restimestampmock: 2025-11-10T12:17:06.384042566Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-264 +spec: + metadata: + connID: "100" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('18ae4cc0-1e25-49fd-bb2a-1002466783c4', 'rohan_order_01', 'rohan_order_01@example.in', 'scrypt:32768:8:1$i0g4HAh5wOvXaMb4$b513b263cfb680f52a007c24a203c039455a500b4da72eab2ea9b00a30bfae3441c291fa7c743185d41cceba25b443fda2a3fa140329a95a334eeb0089df793b', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777026 + reqtimestampmock: 2025-11-10T12:17:06.434281177Z + restimestampmock: 2025-11-10T12:17:06.434676753Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-265 +spec: + metadata: + connID: "100" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777026 + reqtimestampmock: 2025-11-10T12:17:06.434799632Z + restimestampmock: 2025-11-10T12:17:06.448568104Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-266 +spec: + metadata: + connID: "102" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [182, 151, 170, 147, 74, 215, 112, 5, 253, 217, 43, 251, 126, 35, 11, 10, 4, 70, 97, 15, 242, 138, 192, 127, 219, 130, 135, 48, 45, 23, 10, 29] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 154 + auth_plugin_data: [54, 78, 95, 17, 118, 34, 15, 39, 22, 80, 11, 88, 12, 21, 15, 51, 81, 22, 74, 57, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.208624083Z + restimestampmock: 2025-11-10T12:17:07.214793351Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-267 +spec: + metadata: + connID: "102" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.214939298Z + restimestampmock: 2025-11-10T12:17:07.215141878Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-268 +spec: + metadata: + connID: "102" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.215241726Z + restimestampmock: 2025-11-10T12:17:07.215376745Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-269 +spec: + metadata: + connID: "102" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.215469284Z + restimestampmock: 2025-11-10T12:17:07.215537524Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-270 +spec: + metadata: + connID: "102" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='rohan_order_01' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: 18ae4cc0-1e25-49fd-bb2a-1002466783c4 + unsigned: false + - type: 253 + name: username + value: rohan_order_01 + unsigned: false + - type: 253 + name: email + value: rohan_order_01@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$i0g4HAh5wOvXaMb4$b513b263cfb680f52a007c24a203c039455a500b4da72eab2ea9b00a30bfae3441c291fa7c743185d41cceba25b443fda2a3fa140329a95a334eeb0089df793b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.215715212Z + restimestampmock: 2025-11-10T12:17:07.216165078Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-271 +spec: + metadata: + connID: "104" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [124, 44, 43, 51, 130, 188, 252, 124, 42, 31, 81, 113, 118, 14, 19, 204, 213, 22, 54, 156, 50, 231, 42, 197, 46, 146, 103, 177, 73, 41, 5, 93] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 156 + auth_plugin_data: [50, 34, 47, 49, 28, 65, 97, 45, 50, 5, 41, 75, 20, 94, 118, 35, 109, 40, 120, 50, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.945379071Z + restimestampmock: 2025-11-10T12:17:07.951720007Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-272 +spec: + metadata: + connID: "104" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.951875935Z + restimestampmock: 2025-11-10T12:17:07.952056574Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-273 +spec: + metadata: + connID: "104" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.952183882Z + restimestampmock: 2025-11-10T12:17:07.952379371Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-274 +spec: + metadata: + connID: "104" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.952555629Z + restimestampmock: 2025-11-10T12:17:07.952690808Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-275 +spec: + metadata: + connID: "104" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='18ae4cc0-1e25-49fd-bb2a-1002466783c4' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 18ae4cc0-1e25-49fd-bb2a-1002466783c4 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.952877566Z + restimestampmock: 2025-11-10T12:17:07.953275693Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-276 +spec: + metadata: + connID: "104" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 270 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('e19a385a-5d5c-4e5c-8022-32988d92a112','18ae4cc0-1e25-49fd-bb2a-1002466783c4','45 BTM Layout',NULL,'Bengaluru','Karnataka','560076','IN','+918765432109',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.953455672Z + restimestampmock: 2025-11-10T12:17:07.953821839Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-277 +spec: + metadata: + connID: "104" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='18ae4cc0-1e25-49fd-bb2a-1002466783c4' AND id<>'e19a385a-5d5c-4e5c-8022-32988d92a112' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.954028736Z + restimestampmock: 2025-11-10T12:17:07.954297275Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-278 +spec: + metadata: + connID: "104" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777027 + reqtimestampmock: 2025-11-10T12:17:07.954423413Z + restimestampmock: 2025-11-10T12:17:07.963609465Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-279 +spec: + metadata: + connID: "106" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [34, 4, 63, 172, 81, 116, 23, 78, 113, 254, 180, 240, 165, 233, 47, 231, 22, 241, 112, 87, 29, 127, 242, 69, 58, 95, 89, 15, 109, 22, 47, 83] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 157 + auth_plugin_data: [34, 78, 27, 18, 46, 90, 3, 3, 2, 105, 92, 7, 5, 49, 15, 87, 70, 90, 6, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.529181417Z + restimestampmock: 2025-11-10T12:17:09.535194055Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-280 +spec: + metadata: + connID: "106" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.535391213Z + restimestampmock: 2025-11-10T12:17:09.535572842Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-281 +spec: + metadata: + connID: "106" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.535661241Z + restimestampmock: 2025-11-10T12:17:09.53585837Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-282 +spec: + metadata: + connID: "106" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.536003768Z + restimestampmock: 2025-11-10T12:17:09.536099717Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-283 +spec: + metadata: + connID: "106" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='18ae4cc0-1e25-49fd-bb2a-1002466783c4' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 18ae4cc0-1e25-49fd-bb2a-1002466783c4 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.536277115Z + restimestampmock: 2025-11-10T12:17:09.536673762Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-284 +spec: + metadata: + connID: "106" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='18ae4cc0-1e25-49fd-bb2a-1002466783c4' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.536829151Z + restimestampmock: 2025-11-10T12:17:09.537259577Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-285 +spec: + metadata: + connID: "106" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='18ae4cc0-1e25-49fd-bb2a-1002466783c4' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.537424886Z + restimestampmock: 2025-11-10T12:17:09.537710844Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-286 +spec: + metadata: + connID: "106" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777029 + reqtimestampmock: 2025-11-10T12:17:09.537830092Z + restimestampmock: 2025-11-10T12:17:09.5486655Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-287 +spec: + metadata: + connID: "108" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [28, 145, 15, 11, 38, 200, 225, 61, 241, 163, 5, 186, 102, 238, 73, 32, 167, 53, 1, 115, 11, 70, 6, 14, 84, 250, 28, 60, 93, 202, 140, 137] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 158 + auth_plugin_data: [51, 92, 25, 117, 65, 41, 76, 57, 10, 19, 62, 50, 84, 70, 55, 30, 89, 113, 68, 14, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777032 + reqtimestampmock: 2025-11-10T12:17:12.699662168Z + restimestampmock: 2025-11-10T12:17:12.706198562Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-288 +spec: + metadata: + connID: "108" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777032 + reqtimestampmock: 2025-11-10T12:17:12.706380431Z + restimestampmock: 2025-11-10T12:17:12.70653906Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-289 +spec: + metadata: + connID: "108" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777032 + reqtimestampmock: 2025-11-10T12:17:12.706645269Z + restimestampmock: 2025-11-10T12:17:12.706769007Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-290 +spec: + metadata: + connID: "108" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777032 + reqtimestampmock: 2025-11-10T12:17:12.706872636Z + restimestampmock: 2025-11-10T12:17:12.706967866Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-291 +spec: + metadata: + connID: "108" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('46442b8f-133b-4c4a-beca-096cc6a034cd', 'anika_login_fail', 'anika_login_fail@example.in', 'scrypt:32768:8:1$1Z8yJHz7in9Puej2$60f47a81090045c9fed68f70eb1f1ca273afebc1c7dae16ae40b9580117af4390f0652eccb7e78693912646a0c4475d52b0067f48abe3542c99fd10e9b5c7776', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777032 + reqtimestampmock: 2025-11-10T12:17:12.753887635Z + restimestampmock: 2025-11-10T12:17:12.754384881Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-292 +spec: + metadata: + connID: "108" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777032 + reqtimestampmock: 2025-11-10T12:17:12.754560589Z + restimestampmock: 2025-11-10T12:17:12.766431698Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-293 +spec: + metadata: + connID: "110" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [231, 181, 139, 137, 231, 97, 115, 167, 140, 131, 148, 225, 84, 96, 88, 87, 128, 215, 102, 210, 98, 208, 188, 150, 164, 130, 21, 77, 138, 74, 53, 107] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 160 + auth_plugin_data: [84, 116, 23, 48, 104, 30, 116, 24, 11, 50, 20, 56, 106, 25, 112, 83, 125, 111, 99, 10, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777033 + reqtimestampmock: 2025-11-10T12:17:13.503955032Z + restimestampmock: 2025-11-10T12:17:13.510128739Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-294 +spec: + metadata: + connID: "110" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777033 + reqtimestampmock: 2025-11-10T12:17:13.510316599Z + restimestampmock: 2025-11-10T12:17:13.510507986Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-295 +spec: + metadata: + connID: "110" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777033 + reqtimestampmock: 2025-11-10T12:17:13.510628435Z + restimestampmock: 2025-11-10T12:17:13.510766784Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-296 +spec: + metadata: + connID: "110" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777033 + reqtimestampmock: 2025-11-10T12:17:13.510878703Z + restimestampmock: 2025-11-10T12:17:13.511005923Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-297 +spec: + metadata: + connID: "110" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='anika_login_fail' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 46442b8f-133b-4c4a-beca-096cc6a034cd + unsigned: false + - type: 253 + name: username + value: anika_login_fail + unsigned: false + - type: 253 + name: email + value: anika_login_fail@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$1Z8yJHz7in9Puej2$60f47a81090045c9fed68f70eb1f1ca273afebc1c7dae16ae40b9580117af4390f0652eccb7e78693912646a0c4475d52b0067f48abe3542c99fd10e9b5c7776 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777033 + reqtimestampmock: 2025-11-10T12:17:13.51126619Z + restimestampmock: 2025-11-10T12:17:13.511684657Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-298 +spec: + metadata: + connID: "112" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [79, 165, 134, 217, 82, 184, 117, 15, 126, 6, 167, 74, 123, 20, 119, 212, 125, 126, 67, 123, 203, 81, 185, 149, 235, 197, 117, 98, 187, 169, 216, 9] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 161 + auth_plugin_data: [80, 47, 6, 83, 122, 43, 44, 51, 121, 125, 4, 75, 118, 120, 60, 41, 118, 21, 120, 33, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777034 + reqtimestampmock: 2025-11-10T12:17:14.228656667Z + restimestampmock: 2025-11-10T12:17:14.234764615Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-299 +spec: + metadata: + connID: "112" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777034 + reqtimestampmock: 2025-11-10T12:17:14.234921323Z + restimestampmock: 2025-11-10T12:17:14.235104842Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-300 +spec: + metadata: + connID: "112" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777034 + reqtimestampmock: 2025-11-10T12:17:14.235278221Z + restimestampmock: 2025-11-10T12:17:14.235421899Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-301 +spec: + metadata: + connID: "112" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777034 + reqtimestampmock: 2025-11-10T12:17:14.235522508Z + restimestampmock: 2025-11-10T12:17:14.235616547Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-302 +spec: + metadata: + connID: "112" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='anika_login_fail' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 46442b8f-133b-4c4a-beca-096cc6a034cd + unsigned: false + - type: 253 + name: username + value: anika_login_fail + unsigned: false + - type: 253 + name: email + value: anika_login_fail@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$1Z8yJHz7in9Puej2$60f47a81090045c9fed68f70eb1f1ca273afebc1c7dae16ae40b9580117af4390f0652eccb7e78693912646a0c4475d52b0067f48abe3542c99fd10e9b5c7776 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777034 + reqtimestampmock: 2025-11-10T12:17:14.235807846Z + restimestampmock: 2025-11-10T12:17:14.236381891Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-303 +spec: + metadata: + connID: "114" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [42, 8, 98, 15, 30, 34, 36, 99, 82, 195, 59, 217, 221, 54, 53, 30, 81, 208, 238, 253, 60, 183, 40, 207, 204, 243, 117, 147, 10, 178, 179, 41] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 162 + auth_plugin_data: [75, 29, 89, 52, 72, 101, 119, 6, 30, 78, 31, 1, 6, 104, 56, 90, 77, 122, 43, 79, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.046726915Z + restimestampmock: 2025-11-10T12:17:15.053095311Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-304 +spec: + metadata: + connID: "114" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.05328555Z + restimestampmock: 2025-11-10T12:17:15.053453078Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-305 +spec: + metadata: + connID: "114" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.053599947Z + restimestampmock: 2025-11-10T12:17:15.053826324Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-306 +spec: + metadata: + connID: "114" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.054004563Z + restimestampmock: 2025-11-10T12:17:15.054119793Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-307 +spec: + metadata: + connID: "114" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='46442b8f-133b-4c4a-beca-096cc6a034cd' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 46442b8f-133b-4c4a-beca-096cc6a034cd + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.0543499Z + restimestampmock: 2025-11-10T12:17:15.054672367Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-308 +spec: + metadata: + connID: "114" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='46442b8f-133b-4c4a-beca-096cc6a034cd' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.055258893Z + restimestampmock: 2025-11-10T12:17:15.05558681Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-309 +spec: + metadata: + connID: "114" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='46442b8f-133b-4c4a-beca-096cc6a034cd' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.055725518Z + restimestampmock: 2025-11-10T12:17:15.059700945Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-310 +spec: + metadata: + connID: "114" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.059830003Z + restimestampmock: 2025-11-10T12:17:15.068443559Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-311 +spec: + metadata: + connID: "116" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [229, 0, 239, 40, 251, 17, 191, 171, 215, 160, 73, 128, 10, 68, 134, 29, 209, 131, 123, 228, 116, 8, 76, 233, 216, 111, 75, 184, 219, 90, 99, 193] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 163 + auth_plugin_data: [66, 117, 126, 43, 103, 104, 97, 80, 15, 6, 66, 88, 76, 30, 60, 6, 58, 90, 121, 7, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.886185633Z + restimestampmock: 2025-11-10T12:17:15.89229382Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-312 +spec: + metadata: + connID: "116" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.892425889Z + restimestampmock: 2025-11-10T12:17:15.892585228Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-313 +spec: + metadata: + connID: "116" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.892725977Z + restimestampmock: 2025-11-10T12:17:15.892945135Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-314 +spec: + metadata: + connID: "116" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.893052954Z + restimestampmock: 2025-11-10T12:17:15.893168753Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-315 +spec: + metadata: + connID: "116" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='ghost_user_999' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 6 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777035 + reqtimestampmock: 2025-11-10T12:17:15.893361672Z + restimestampmock: 2025-11-10T12:17:15.893747918Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-316 +spec: + metadata: + connID: "118" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [54, 131, 65, 158, 127, 219, 128, 66, 135, 237, 198, 107, 107, 60, 15, 202, 212, 29, 62, 26, 8, 220, 70, 6, 37, 193, 214, 57, 221, 53, 79, 160] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 164 + auth_plugin_data: [91, 49, 47, 88, 91, 96, 83, 122, 74, 25, 57, 22, 55, 6, 10, 6, 29, 89, 53, 86, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777036 + reqtimestampmock: 2025-11-10T12:17:16.711325853Z + restimestampmock: 2025-11-10T12:17:16.717452041Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-317 +spec: + metadata: + connID: "118" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777036 + reqtimestampmock: 2025-11-10T12:17:16.717662228Z + restimestampmock: 2025-11-10T12:17:16.717875347Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-318 +spec: + metadata: + connID: "118" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777036 + reqtimestampmock: 2025-11-10T12:17:16.718024055Z + restimestampmock: 2025-11-10T12:17:16.718188604Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-319 +spec: + metadata: + connID: "118" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777036 + reqtimestampmock: 2025-11-10T12:17:16.718304153Z + restimestampmock: 2025-11-10T12:17:16.718402682Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-320 +spec: + metadata: + connID: "118" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('5c02e676-4397-466c-ad59-7a47f2026a13', 'vikram_duplicate', 'vikram_duplicate@example.in', 'scrypt:32768:8:1$Z8I05SeP2jOUgv8j$4699e43d9c86655cc2b4fa9476274f0515c9c0a73ce907cf1da1a5a3775fb047fce9e35142bcea133c6c5cf70f8b81503310f6235f9870782d6b68e4920b7d6f', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777036 + reqtimestampmock: 2025-11-10T12:17:16.767119556Z + restimestampmock: 2025-11-10T12:17:16.767513073Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-321 +spec: + metadata: + connID: "118" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777036 + reqtimestampmock: 2025-11-10T12:17:16.767634482Z + restimestampmock: 2025-11-10T12:17:16.779490441Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-322 +spec: + metadata: + connID: "120" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [231, 160, 210, 254, 214, 104, 25, 95, 175, 203, 15, 143, 214, 208, 75, 99, 145, 55, 31, 51, 204, 183, 87, 145, 164, 123, 34, 162, 136, 6, 118, 114] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 165 + auth_plugin_data: [20, 112, 53, 11, 75, 112, 19, 103, 51, 83, 97, 127, 54, 94, 20, 69, 9, 124, 21, 7, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777037 + reqtimestampmock: 2025-11-10T12:17:17.457343838Z + restimestampmock: 2025-11-10T12:17:17.466161083Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-323 +spec: + metadata: + connID: "120" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777037 + reqtimestampmock: 2025-11-10T12:17:17.466386521Z + restimestampmock: 2025-11-10T12:17:17.466581818Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-324 +spec: + metadata: + connID: "120" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777037 + reqtimestampmock: 2025-11-10T12:17:17.466683798Z + restimestampmock: 2025-11-10T12:17:17.466917406Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-325 +spec: + metadata: + connID: "120" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777037 + reqtimestampmock: 2025-11-10T12:17:17.467058574Z + restimestampmock: 2025-11-10T12:17:17.467208114Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-326 +spec: + metadata: + connID: "120" + requestOperation: COM_QUERY + responseOperation: ERR + type: mocks + requests: + - header: + header: + payload_length: 332 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('7b663cf2-1145-4b28-a1ae-a537bd3932bb', 'vikram_duplicate', 'another_email@example.in', 'scrypt:32768:8:1$DlFk0tgJ1d64bal9$f807bde8e59ec8d672bee110a5b6190fc9eab33ddef1de395a73412592c53621da8ad5fbb271addd4c12faedf7ae68cd8a8ac6b53bcfb23979c9620e3f61045c', NULL) + responses: + - header: + header: + payload_length: 77 + sequence_id: 1 + packet_type: ERR + message: + header: 255 + error_code: 1062 + sql_state_marker: '#' + sql_state: "23000" + error_message: Duplicate entry 'vikram_duplicate' for key 'users.uq_users_username' + created: 1762777037 + reqtimestampmock: 2025-11-10T12:17:17.52388413Z + restimestampmock: 2025-11-10T12:17:17.527794607Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-327 +spec: + metadata: + connID: "120" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 11 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: rollback + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777037 + reqtimestampmock: 2025-11-10T12:17:17.528198023Z + restimestampmock: 2025-11-10T12:17:17.533512647Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-328 +spec: + metadata: + connID: "122" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [233, 13, 13, 109, 152, 217, 206, 125, 65, 254, 74, 82, 17, 221, 96, 133, 34, 226, 231, 195, 10, 83, 87, 230, 241, 227, 190, 53, 105, 151, 19, 227] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 167 + auth_plugin_data: [22, 91, 73, 97, 41, 88, 119, 117, 8, 7, 110, 74, 115, 48, 21, 127, 58, 29, 112, 102, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.227310808Z + restimestampmock: 2025-11-10T12:17:18.233417157Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-329 +spec: + metadata: + connID: "122" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.233626215Z + restimestampmock: 2025-11-10T12:17:18.233794704Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-330 +spec: + metadata: + connID: "122" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.233931893Z + restimestampmock: 2025-11-10T12:17:18.234066412Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-331 +spec: + metadata: + connID: "122" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.234191821Z + restimestampmock: 2025-11-10T12:17:18.234625986Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-332 +spec: + metadata: + connID: "122" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='vikram_duplicate' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 5c02e676-4397-466c-ad59-7a47f2026a13 + unsigned: false + - type: 253 + name: username + value: vikram_duplicate + unsigned: false + - type: 253 + name: email + value: vikram_duplicate@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Z8I05SeP2jOUgv8j$4699e43d9c86655cc2b4fa9476274f0515c9c0a73ce907cf1da1a5a3775fb047fce9e35142bcea133c6c5cf70f8b81503310f6235f9870782d6b68e4920b7d6f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.234908655Z + restimestampmock: 2025-11-10T12:17:18.23544034Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-333 +spec: + metadata: + connID: "124" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [31, 37, 161, 20, 230, 6, 173, 150, 127, 156, 254, 202, 135, 20, 64, 149, 232, 6, 6, 127, 96, 236, 66, 119, 32, 178, 4, 70, 180, 162, 213, 158] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 168 + auth_plugin_data: [94, 105, 123, 127, 10, 87, 33, 48, 6, 81, 76, 94, 97, 103, 96, 49, 66, 89, 91, 53, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.979687162Z + restimestampmock: 2025-11-10T12:17:18.986290906Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-334 +spec: + metadata: + connID: "124" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.986449125Z + restimestampmock: 2025-11-10T12:17:18.986669462Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-335 +spec: + metadata: + connID: "124" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.986784411Z + restimestampmock: 2025-11-10T12:17:18.986956489Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-336 +spec: + metadata: + connID: "124" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.987053769Z + restimestampmock: 2025-11-10T12:17:18.987139688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-337 +spec: + metadata: + connID: "124" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5c02e676-4397-466c-ad59-7a47f2026a13' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5c02e676-4397-466c-ad59-7a47f2026a13 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.987302318Z + restimestampmock: 2025-11-10T12:17:18.987646624Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-338 +spec: + metadata: + connID: "124" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='5c02e676-4397-466c-ad59-7a47f2026a13' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.988024201Z + restimestampmock: 2025-11-10T12:17:18.988303609Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-339 +spec: + metadata: + connID: "124" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='5c02e676-4397-466c-ad59-7a47f2026a13' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.988463467Z + restimestampmock: 2025-11-10T12:17:18.988758194Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-340 +spec: + metadata: + connID: "124" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777038 + reqtimestampmock: 2025-11-10T12:17:18.988865944Z + restimestampmock: 2025-11-10T12:17:18.998396292Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-341 +spec: + metadata: + connID: "126" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [39, 18, 162, 154, 25, 140, 69, 207, 130, 236, 89, 139, 229, 203, 37, 41, 185, 215, 173, 174, 247, 144, 7, 26, 64, 69, 201, 174, 235, 71, 94, 146] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 169 + auth_plugin_data: [79, 40, 109, 93, 34, 114, 74, 107, 121, 85, 64, 118, 39, 56, 95, 78, 2, 16, 13, 41, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777041 + reqtimestampmock: 2025-11-10T12:17:21.449654496Z + restimestampmock: 2025-11-10T12:17:21.455669146Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-342 +spec: + metadata: + connID: "126" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777041 + reqtimestampmock: 2025-11-10T12:17:21.455856724Z + restimestampmock: 2025-11-10T12:17:21.456031413Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-343 +spec: + metadata: + connID: "126" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777041 + reqtimestampmock: 2025-11-10T12:17:21.456137991Z + restimestampmock: 2025-11-10T12:17:21.456276891Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-344 +spec: + metadata: + connID: "126" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777041 + reqtimestampmock: 2025-11-10T12:17:21.45636421Z + restimestampmock: 2025-11-10T12:17:21.456506929Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-345 +spec: + metadata: + connID: "126" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c', 'sunita_email', 'sunita_duplicate@example.in', 'scrypt:32768:8:1$Ba5d3qSM01rGhcc8$c6382bd678050a4c421fd7b8fb2db5a0664b8c3f31e8fb8d3fa341c5777aba1dc62dba8c672f5dc5675c0e6cf625529529d63096141e2741ad1986559923f8d3', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777041 + reqtimestampmock: 2025-11-10T12:17:21.503901375Z + restimestampmock: 2025-11-10T12:17:21.50440982Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-346 +spec: + metadata: + connID: "126" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777041 + reqtimestampmock: 2025-11-10T12:17:21.504549319Z + restimestampmock: 2025-11-10T12:17:21.513469143Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-347 +spec: + metadata: + connID: "128" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [61, 82, 90, 147, 179, 120, 44, 122, 36, 197, 225, 94, 116, 243, 148, 38, 224, 245, 226, 144, 19, 52, 5, 213, 200, 188, 120, 67, 91, 57, 198, 132] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 170 + auth_plugin_data: [117, 9, 5, 98, 55, 71, 91, 115, 84, 122, 55, 118, 81, 41, 110, 74, 72, 110, 104, 47, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.198114224Z + restimestampmock: 2025-11-10T12:17:22.204670028Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-348 +spec: + metadata: + connID: "128" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.204856897Z + restimestampmock: 2025-11-10T12:17:22.205012845Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-349 +spec: + metadata: + connID: "128" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.205115345Z + restimestampmock: 2025-11-10T12:17:22.205324803Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-350 +spec: + metadata: + connID: "128" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.205412472Z + restimestampmock: 2025-11-10T12:17:22.205511361Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-351 +spec: + metadata: + connID: "128" + requestOperation: COM_QUERY + responseOperation: ERR + type: mocks + requests: + - header: + header: + payload_length: 333 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('816d4e6f-a7ac-4011-8b35-f1f022097b55', 'another_sunita', 'sunita_duplicate@example.in', 'scrypt:32768:8:1$3T9IHSnB58DVY1Go$4d1914640fa14ab34581e6e3be020bc3a2e7b4be5e637d28607c167fdc38760e5eb17e974a5a2027e60a200aedf4c41938d3df30c99f7dd6faa7fcf886642cc3', NULL) + responses: + - header: + header: + payload_length: 85 + sequence_id: 1 + packet_type: ERR + message: + header: 255 + error_code: 1062 + sql_state_marker: '#' + sql_state: "23000" + error_message: Duplicate entry 'sunita_duplicate@example.in' for key 'users.uq_users_email' + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.255971912Z + restimestampmock: 2025-11-10T12:17:22.256525066Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-352 +spec: + metadata: + connID: "128" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 11 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: rollback + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.256670355Z + restimestampmock: 2025-11-10T12:17:22.261427835Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-353 +spec: + metadata: + connID: "130" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [12, 168, 46, 132, 128, 230, 24, 63, 243, 149, 136, 180, 155, 123, 134, 224, 114, 241, 133, 4, 194, 42, 77, 199, 120, 111, 84, 8, 160, 88, 67, 71] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 172 + auth_plugin_data: [16, 126, 33, 21, 83, 75, 8, 84, 102, 86, 76, 69, 62, 76, 114, 112, 14, 7, 89, 21, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.958500481Z + restimestampmock: 2025-11-10T12:17:22.964814837Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-354 +spec: + metadata: + connID: "130" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.964992645Z + restimestampmock: 2025-11-10T12:17:22.965198954Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-355 +spec: + metadata: + connID: "130" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.965293683Z + restimestampmock: 2025-11-10T12:17:22.965442701Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-356 +spec: + metadata: + connID: "130" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.9655641Z + restimestampmock: 2025-11-10T12:17:22.965686849Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-357 +spec: + metadata: + connID: "130" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='sunita_email' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c + unsigned: false + - type: 253 + name: username + value: sunita_email + unsigned: false + - type: 253 + name: email + value: sunita_duplicate@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Ba5d3qSM01rGhcc8$c6382bd678050a4c421fd7b8fb2db5a0664b8c3f31e8fb8d3fa341c5777aba1dc62dba8c672f5dc5675c0e6cf625529529d63096141e2741ad1986559923f8d3 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777042 + reqtimestampmock: 2025-11-10T12:17:22.965858348Z + restimestampmock: 2025-11-10T12:17:22.966265595Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-358 +spec: + metadata: + connID: "132" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [234, 27, 152, 171, 102, 90, 221, 26, 42, 183, 109, 89, 37, 51, 100, 51, 113, 120, 18, 198, 121, 104, 10, 4, 219, 145, 109, 202, 204, 240, 102, 227] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 173 + auth_plugin_data: [82, 18, 47, 102, 45, 41, 97, 58, 100, 103, 114, 90, 37, 98, 62, 118, 106, 20, 93, 37, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.702742626Z + restimestampmock: 2025-11-10T12:17:23.70921003Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-359 +spec: + metadata: + connID: "132" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.709362909Z + restimestampmock: 2025-11-10T12:17:23.709536197Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-360 +spec: + metadata: + connID: "132" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.709652966Z + restimestampmock: 2025-11-10T12:17:23.709816335Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-361 +spec: + metadata: + connID: "132" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.709991474Z + restimestampmock: 2025-11-10T12:17:23.710074213Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-362 +spec: + metadata: + connID: "132" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.710267661Z + restimestampmock: 2025-11-10T12:17:23.710626559Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-363 +spec: + metadata: + connID: "132" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.710822157Z + restimestampmock: 2025-11-10T12:17:23.711040675Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-364 +spec: + metadata: + connID: "132" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.711191594Z + restimestampmock: 2025-11-10T12:17:23.71150406Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-365 +spec: + metadata: + connID: "132" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777043 + reqtimestampmock: 2025-11-10T12:17:23.71161272Z + restimestampmock: 2025-11-10T12:17:23.7233324Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-366 +spec: + metadata: + connID: "134" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [148, 214, 241, 71, 183, 133, 116, 235, 123, 12, 5, 233, 102, 33, 72, 75, 128, 227, 126, 252, 45, 27, 41, 81, 162, 79, 155, 178, 63, 121, 109, 145] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 174 + auth_plugin_data: [26, 85, 113, 14, 46, 127, 71, 55, 39, 91, 35, 6, 74, 15, 115, 41, 20, 51, 14, 50, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777046 + reqtimestampmock: 2025-11-10T12:17:26.278386159Z + restimestampmock: 2025-11-10T12:17:26.284777415Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-367 +spec: + metadata: + connID: "134" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777046 + reqtimestampmock: 2025-11-10T12:17:26.284970863Z + restimestampmock: 2025-11-10T12:17:26.285165521Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-368 +spec: + metadata: + connID: "134" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777046 + reqtimestampmock: 2025-11-10T12:17:26.28527058Z + restimestampmock: 2025-11-10T12:17:26.285426009Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-369 +spec: + metadata: + connID: "134" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777046 + reqtimestampmock: 2025-11-10T12:17:26.285573097Z + restimestampmock: 2025-11-10T12:17:26.285718927Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-370 +spec: + metadata: + connID: "134" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a7ef1d19-4a3a-4a51-ab42-038fd59367b3', 'noauth_user', 'noauth_user@example.in', 'scrypt:32768:8:1$X0VCRZpSKa4Yq2EF$396a7432b5dea777ede45b89df3bf0b7e20d4fc0c463181ce3652e60bc68ee860c3727ca4bd142b971a519a5fe5b662fc7ffa5296702049a7d2d9dc9c726873c', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777046 + reqtimestampmock: 2025-11-10T12:17:26.334730069Z + restimestampmock: 2025-11-10T12:17:26.335231255Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-371 +spec: + metadata: + connID: "134" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777046 + reqtimestampmock: 2025-11-10T12:17:26.335370673Z + restimestampmock: 2025-11-10T12:17:26.346356539Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-372 +spec: + metadata: + connID: "136" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [41, 148, 210, 226, 25, 196, 86, 66, 245, 219, 106, 73, 74, 220, 52, 90, 53, 241, 3, 133, 107, 232, 21, 209, 84, 178, 101, 255, 96, 180, 23, 51] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 175 + auth_plugin_data: [53, 115, 72, 69, 121, 13, 1, 85, 88, 20, 91, 1, 49, 19, 51, 62, 53, 98, 95, 60, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.1206637Z + restimestampmock: 2025-11-10T12:17:27.127329563Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-373 +spec: + metadata: + connID: "136" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.127510641Z + restimestampmock: 2025-11-10T12:17:27.127717559Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-374 +spec: + metadata: + connID: "136" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.127805759Z + restimestampmock: 2025-11-10T12:17:27.127981757Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-375 +spec: + metadata: + connID: "136" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.128137737Z + restimestampmock: 2025-11-10T12:17:27.128244936Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-376 +spec: + metadata: + connID: "136" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 109 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, phone, created_at FROM users WHERE id = 'a7ef1d19-4a3a-4a51-ab42-038fd59367b3' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 5 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 59 + sequence_id: 6 + catalog: def + schema: user_db + table: users + org_table: users + name: created_at + org_name: created_at + fixed_length: 12 + character_set: 63 + column_length: 19 + type: 7 + flags: 1153 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 93 + sequence_id: 7 + values: + - type: 253 + name: id + value: a7ef1d19-4a3a-4a51-ab42-038fd59367b3 + unsigned: false + - type: 253 + name: username + value: noauth_user + unsigned: false + - type: 253 + name: email + value: noauth_user@example.in + unsigned: false + - type: 253 + name: phone + value: null + unsigned: false + - type: 7 + name: created_at + value: "2025-11-10 12:17:26" + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 8 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.128425385Z + restimestampmock: 2025-11-10T12:17:27.128959469Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-377 +spec: + metadata: + connID: "136" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='a7ef1d19-4a3a-4a51-ab42-038fd59367b3' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 11 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.129140788Z + restimestampmock: 2025-11-10T12:17:27.129849612Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-378 +spec: + metadata: + connID: "138" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [81, 192, 152, 141, 110, 92, 196, 239, 30, 216, 203, 56, 66, 115, 103, 255, 88, 196, 108, 139, 118, 182, 17, 10, 83, 153, 179, 201, 203, 76, 251, 170] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 176 + auth_plugin_data: [94, 124, 95, 75, 26, 62, 109, 67, 57, 70, 6, 85, 49, 116, 60, 73, 75, 56, 119, 101, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.87754243Z + restimestampmock: 2025-11-10T12:17:27.883691007Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-379 +spec: + metadata: + connID: "138" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.883890076Z + restimestampmock: 2025-11-10T12:17:27.884118804Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-380 +spec: + metadata: + connID: "138" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.884295132Z + restimestampmock: 2025-11-10T12:17:27.88443103Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-381 +spec: + metadata: + connID: "138" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.88453962Z + restimestampmock: 2025-11-10T12:17:27.884761689Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-382 +spec: + metadata: + connID: "138" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='noauth_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: a7ef1d19-4a3a-4a51-ab42-038fd59367b3 + unsigned: false + - type: 253 + name: username + value: noauth_user + unsigned: false + - type: 253 + name: email + value: noauth_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$X0VCRZpSKa4Yq2EF$396a7432b5dea777ede45b89df3bf0b7e20d4fc0c463181ce3652e60bc68ee860c3727ca4bd142b971a519a5fe5b662fc7ffa5296702049a7d2d9dc9c726873c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777047 + reqtimestampmock: 2025-11-10T12:17:27.884790258Z + restimestampmock: 2025-11-10T12:17:27.885257264Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-383 +spec: + metadata: + connID: "140" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [4, 196, 129, 234, 123, 153, 214, 151, 246, 144, 230, 255, 196, 213, 189, 75, 133, 127, 45, 160, 224, 79, 203, 112, 65, 97, 131, 70, 214, 34, 207, 224] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 178 + auth_plugin_data: [46, 56, 42, 101, 80, 48, 33, 112, 91, 62, 79, 6, 121, 34, 56, 68, 22, 11, 28, 111, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.698514703Z + restimestampmock: 2025-11-10T12:17:28.70474188Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-384 +spec: + metadata: + connID: "140" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.704890448Z + restimestampmock: 2025-11-10T12:17:28.705049487Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-385 +spec: + metadata: + connID: "140" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.705157946Z + restimestampmock: 2025-11-10T12:17:28.705350695Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-386 +spec: + metadata: + connID: "140" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.705437484Z + restimestampmock: 2025-11-10T12:17:28.705551373Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-387 +spec: + metadata: + connID: "140" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a7ef1d19-4a3a-4a51-ab42-038fd59367b3' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a7ef1d19-4a3a-4a51-ab42-038fd59367b3 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.705731441Z + restimestampmock: 2025-11-10T12:17:28.706071548Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-388 +spec: + metadata: + connID: "140" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a7ef1d19-4a3a-4a51-ab42-038fd59367b3' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.706267596Z + restimestampmock: 2025-11-10T12:17:28.706528194Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-389 +spec: + metadata: + connID: "140" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a7ef1d19-4a3a-4a51-ab42-038fd59367b3' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.706748262Z + restimestampmock: 2025-11-10T12:17:28.70704269Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-390 +spec: + metadata: + connID: "140" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777048 + reqtimestampmock: 2025-11-10T12:17:28.707193019Z + restimestampmock: 2025-11-10T12:17:28.719340235Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-391 +spec: + metadata: + connID: "142" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [6, 190, 244, 66, 84, 86, 248, 147, 133, 126, 198, 136, 4, 119, 215, 128, 139, 249, 252, 199, 134, 73, 191, 11, 179, 73, 69, 123, 101, 148, 172, 90] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 179 + auth_plugin_data: [77, 100, 6, 59, 10, 16, 114, 43, 72, 102, 41, 115, 27, 92, 115, 120, 58, 38, 44, 87, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777050 + reqtimestampmock: 2025-11-10T12:17:30.509332182Z + restimestampmock: 2025-11-10T12:17:30.515630829Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-392 +spec: + metadata: + connID: "142" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777050 + reqtimestampmock: 2025-11-10T12:17:30.515817286Z + restimestampmock: 2025-11-10T12:17:30.516000425Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-393 +spec: + metadata: + connID: "142" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777050 + reqtimestampmock: 2025-11-10T12:17:30.516121004Z + restimestampmock: 2025-11-10T12:17:30.516320312Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-394 +spec: + metadata: + connID: "142" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777050 + reqtimestampmock: 2025-11-10T12:17:30.516515211Z + restimestampmock: 2025-11-10T12:17:30.51660839Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-395 +spec: + metadata: + connID: "142" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 339 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('753085ca-8366-43b0-bfd1-3c017574933e', 'temp_user_for_auth', 'temp_user_for_auth@example.in', 'scrypt:32768:8:1$rOfiINEzMNjeqRUg$6f046b1225c5ab3ad6ae8575a51c5d2de9aadd7b1804c50d5f202e0e4be590243908f5244c1604cd89a5680a756601c4a0312b9cefe6930e377a60c23bf1db2f', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777050 + reqtimestampmock: 2025-11-10T12:17:30.563602699Z + restimestampmock: 2025-11-10T12:17:30.563973736Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-396 +spec: + metadata: + connID: "142" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777050 + reqtimestampmock: 2025-11-10T12:17:30.564088455Z + restimestampmock: 2025-11-10T12:17:30.57529717Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-397 +spec: + metadata: + connID: "144" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [211, 19, 68, 215, 145, 203, 31, 247, 239, 192, 183, 5, 45, 126, 173, 175, 137, 35, 181, 43, 85, 157, 182, 184, 158, 59, 74, 255, 80, 21, 162, 108] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 180 + auth_plugin_data: [7, 112, 11, 52, 43, 7, 58, 52, 1, 122, 30, 108, 50, 89, 17, 62, 53, 123, 67, 26, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777051 + reqtimestampmock: 2025-11-10T12:17:31.324300939Z + restimestampmock: 2025-11-10T12:17:31.330466796Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-398 +spec: + metadata: + connID: "144" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777051 + reqtimestampmock: 2025-11-10T12:17:31.330675354Z + restimestampmock: 2025-11-10T12:17:31.330894143Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-399 +spec: + metadata: + connID: "144" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777051 + reqtimestampmock: 2025-11-10T12:17:31.331098991Z + restimestampmock: 2025-11-10T12:17:31.33129181Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-400 +spec: + metadata: + connID: "144" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777051 + reqtimestampmock: 2025-11-10T12:17:31.331470528Z + restimestampmock: 2025-11-10T12:17:31.331572856Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-401 +spec: + metadata: + connID: "144" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 91 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_auth' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 249 + sequence_id: 6 + values: + - type: 253 + name: id + value: 753085ca-8366-43b0-bfd1-3c017574933e + unsigned: false + - type: 253 + name: username + value: temp_user_for_auth + unsigned: false + - type: 253 + name: email + value: temp_user_for_auth@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$rOfiINEzMNjeqRUg$6f046b1225c5ab3ad6ae8575a51c5d2de9aadd7b1804c50d5f202e0e4be590243908f5244c1604cd89a5680a756601c4a0312b9cefe6930e377a60c23bf1db2f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777051 + reqtimestampmock: 2025-11-10T12:17:31.331807685Z + restimestampmock: 2025-11-10T12:17:31.33231082Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-402 +spec: + metadata: + connID: "146" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [94, 91, 214, 43, 15, 64, 29, 249, 101, 34, 251, 147, 140, 245, 142, 2, 160, 46, 88, 168, 241, 64, 86, 98, 195, 175, 127, 242, 87, 3, 68, 108] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 181 + auth_plugin_data: [97, 57, 56, 72, 94, 80, 47, 97, 23, 14, 102, 27, 10, 120, 49, 39, 12, 41, 93, 28, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.080542057Z + restimestampmock: 2025-11-10T12:17:32.087046452Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-403 +spec: + metadata: + connID: "146" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.08724834Z + restimestampmock: 2025-11-10T12:17:32.087453048Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-404 +spec: + metadata: + connID: "146" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.087594517Z + restimestampmock: 2025-11-10T12:17:32.087751736Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-405 +spec: + metadata: + connID: "146" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.087852295Z + restimestampmock: 2025-11-10T12:17:32.087971284Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-406 +spec: + metadata: + connID: "146" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 109 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, phone, created_at FROM users WHERE id = '00000000-0000-0000-0000-000000000000' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 5 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 59 + sequence_id: 6 + catalog: def + schema: user_db + table: users + org_table: users + name: created_at + org_name: created_at + fixed_length: 12 + character_set: 63 + column_length: 19 + type: 7 + flags: 1153 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.088135843Z + restimestampmock: 2025-11-10T12:17:32.088512179Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-407 +spec: + metadata: + connID: "148" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [218, 215, 193, 94, 139, 176, 14, 231, 12, 28, 188, 88, 117, 122, 178, 186, 252, 24, 236, 101, 220, 60, 147, 33, 129, 25, 107, 218, 23, 70, 19, 136] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 182 + auth_plugin_data: [127, 88, 110, 54, 85, 109, 9, 37, 20, 57, 91, 75, 34, 108, 11, 70, 71, 50, 83, 108, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.892874258Z + restimestampmock: 2025-11-10T12:17:32.900227535Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-408 +spec: + metadata: + connID: "148" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.900372424Z + restimestampmock: 2025-11-10T12:17:32.900541152Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-409 +spec: + metadata: + connID: "148" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.900635251Z + restimestampmock: 2025-11-10T12:17:32.90077333Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-410 +spec: + metadata: + connID: "148" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.90085502Z + restimestampmock: 2025-11-10T12:17:32.900947579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-411 +spec: + metadata: + connID: "148" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='753085ca-8366-43b0-bfd1-3c017574933e' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 753085ca-8366-43b0-bfd1-3c017574933e + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.901097078Z + restimestampmock: 2025-11-10T12:17:32.901456705Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-412 +spec: + metadata: + connID: "148" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='753085ca-8366-43b0-bfd1-3c017574933e' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.901619813Z + restimestampmock: 2025-11-10T12:17:32.901929871Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-413 +spec: + metadata: + connID: "148" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='753085ca-8366-43b0-bfd1-3c017574933e' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.902076079Z + restimestampmock: 2025-11-10T12:17:32.902399107Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-414 +spec: + metadata: + connID: "148" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777052 + reqtimestampmock: 2025-11-10T12:17:32.902497166Z + restimestampmock: 2025-11-10T12:17:32.914209735Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-415 +spec: + metadata: + connID: "150" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [123, 177, 18, 129, 97, 155, 232, 243, 240, 179, 211, 159, 82, 236, 11, 52, 174, 152, 194, 98, 249, 51, 87, 69, 228, 90, 230, 192, 209, 232, 30, 107] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 184 + auth_plugin_data: [33, 3, 84, 9, 71, 16, 104, 107, 88, 73, 103, 117, 81, 112, 44, 10, 60, 32, 108, 89, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777053 + reqtimestampmock: 2025-11-10T12:17:33.718684476Z + restimestampmock: 2025-11-10T12:17:33.724724973Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-416 +spec: + metadata: + connID: "150" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777053 + reqtimestampmock: 2025-11-10T12:17:33.724908521Z + restimestampmock: 2025-11-10T12:17:33.72509537Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-417 +spec: + metadata: + connID: "150" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777053 + reqtimestampmock: 2025-11-10T12:17:33.725204939Z + restimestampmock: 2025-11-10T12:17:33.725332648Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-418 +spec: + metadata: + connID: "150" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777053 + reqtimestampmock: 2025-11-10T12:17:33.725418347Z + restimestampmock: 2025-11-10T12:17:33.725511807Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-419 +spec: + metadata: + connID: "150" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 347 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('3b923b66-00fd-4468-ba80-4925b266fe45', 'temp_user_for_auth_del', 'temp_user_for_auth_del@example.in', 'scrypt:32768:8:1$rY06cDYeAPGTWtUE$f975afbfa03a00f7b7050a5e75daa29d8d1c29516ede9d5e55d2fcb9d99bcce4e45e1a9200f46963e7b3122d43915423a5438d8778a4233341ce360db28116fb', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777053 + reqtimestampmock: 2025-11-10T12:17:33.772433507Z + restimestampmock: 2025-11-10T12:17:33.772916583Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-420 +spec: + metadata: + connID: "150" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777053 + reqtimestampmock: 2025-11-10T12:17:33.773083482Z + restimestampmock: 2025-11-10T12:17:33.785298988Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-421 +spec: + metadata: + connID: "152" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [113, 227, 252, 96, 58, 149, 95, 245, 108, 49, 19, 242, 193, 134, 175, 244, 254, 246, 167, 205, 7, 14, 4, 43, 157, 160, 94, 24, 32, 197, 172, 176] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 185 + auth_plugin_data: [40, 37, 15, 89, 116, 113, 74, 125, 21, 107, 39, 76, 73, 109, 123, 29, 69, 37, 7, 27, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777054 + reqtimestampmock: 2025-11-10T12:17:34.485738471Z + restimestampmock: 2025-11-10T12:17:34.492069837Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-422 +spec: + metadata: + connID: "152" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777054 + reqtimestampmock: 2025-11-10T12:17:34.492252916Z + restimestampmock: 2025-11-10T12:17:34.492452005Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-423 +spec: + metadata: + connID: "152" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777054 + reqtimestampmock: 2025-11-10T12:17:34.492564143Z + restimestampmock: 2025-11-10T12:17:34.492742792Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-424 +spec: + metadata: + connID: "152" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777054 + reqtimestampmock: 2025-11-10T12:17:34.492817351Z + restimestampmock: 2025-11-10T12:17:34.49291158Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-425 +spec: + metadata: + connID: "152" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 95 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_auth_del' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 257 + sequence_id: 6 + values: + - type: 253 + name: id + value: 3b923b66-00fd-4468-ba80-4925b266fe45 + unsigned: false + - type: 253 + name: username + value: temp_user_for_auth_del + unsigned: false + - type: 253 + name: email + value: temp_user_for_auth_del@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$rY06cDYeAPGTWtUE$f975afbfa03a00f7b7050a5e75daa29d8d1c29516ede9d5e55d2fcb9d99bcce4e45e1a9200f46963e7b3122d43915423a5438d8778a4233341ce360db28116fb + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777054 + reqtimestampmock: 2025-11-10T12:17:34.493091859Z + restimestampmock: 2025-11-10T12:17:34.493485746Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-426 +spec: + metadata: + connID: "154" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [123, 209, 118, 163, 245, 88, 188, 151, 119, 19, 9, 189, 188, 75, 73, 243, 33, 83, 191, 65, 196, 207, 98, 252, 1, 188, 29, 146, 127, 141, 249, 234] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 186 + auth_plugin_data: [82, 29, 70, 89, 82, 111, 117, 30, 1, 101, 45, 42, 5, 125, 78, 94, 30, 114, 76, 37, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777055 + reqtimestampmock: 2025-11-10T12:17:35.223622117Z + restimestampmock: 2025-11-10T12:17:35.230113292Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-427 +spec: + metadata: + connID: "154" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777055 + reqtimestampmock: 2025-11-10T12:17:35.230295211Z + restimestampmock: 2025-11-10T12:17:35.230495939Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-428 +spec: + metadata: + connID: "154" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777055 + reqtimestampmock: 2025-11-10T12:17:35.230672437Z + restimestampmock: 2025-11-10T12:17:35.230835096Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-429 +spec: + metadata: + connID: "154" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777055 + reqtimestampmock: 2025-11-10T12:17:35.230955305Z + restimestampmock: 2025-11-10T12:17:35.231113994Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-430 +spec: + metadata: + connID: "154" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='00000000-0000-0000-0000-000000000000' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 3 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777055 + reqtimestampmock: 2025-11-10T12:17:35.231131483Z + restimestampmock: 2025-11-10T12:17:35.23146694Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-431 +spec: + metadata: + connID: "156" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [4, 239, 246, 66, 8, 136, 59, 48, 148, 154, 140, 254, 3, 204, 79, 180, 140, 167, 17, 151, 206, 226, 34, 170, 28, 73, 124, 190, 37, 253, 144, 48] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 187 + auth_plugin_data: [94, 9, 37, 26, 64, 68, 102, 98, 35, 19, 73, 95, 95, 31, 61, 37, 11, 126, 15, 84, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.022694482Z + restimestampmock: 2025-11-10T12:17:36.029535854Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-432 +spec: + metadata: + connID: "156" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.029760512Z + restimestampmock: 2025-11-10T12:17:36.029951371Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-433 +spec: + metadata: + connID: "156" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.030056639Z + restimestampmock: 2025-11-10T12:17:36.030220268Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-434 +spec: + metadata: + connID: "156" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.030332196Z + restimestampmock: 2025-11-10T12:17:36.030435817Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-435 +spec: + metadata: + connID: "156" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='3b923b66-00fd-4468-ba80-4925b266fe45' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 3b923b66-00fd-4468-ba80-4925b266fe45 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.030610575Z + restimestampmock: 2025-11-10T12:17:36.030985582Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-436 +spec: + metadata: + connID: "156" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='3b923b66-00fd-4468-ba80-4925b266fe45' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.03117581Z + restimestampmock: 2025-11-10T12:17:36.031506827Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-437 +spec: + metadata: + connID: "156" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='3b923b66-00fd-4468-ba80-4925b266fe45' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.032020033Z + restimestampmock: 2025-11-10T12:17:36.03238965Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-438 +spec: + metadata: + connID: "156" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.032515329Z + restimestampmock: 2025-11-10T12:17:36.044362928Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-439 +spec: + metadata: + connID: "158" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [136, 17, 156, 124, 147, 34, 17, 16, 32, 221, 145, 51, 44, 187, 82, 126, 235, 84, 2, 13, 56, 246, 183, 151, 90, 25, 8, 228, 231, 187, 175, 242] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 188 + auth_plugin_data: [37, 27, 2, 61, 63, 48, 45, 44, 63, 47, 127, 31, 2, 34, 116, 31, 85, 120, 34, 51, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.868079964Z + restimestampmock: 2025-11-10T12:17:36.874507009Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-440 +spec: + metadata: + connID: "158" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.874680567Z + restimestampmock: 2025-11-10T12:17:36.874875817Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-441 +spec: + metadata: + connID: "158" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.874999596Z + restimestampmock: 2025-11-10T12:17:36.875145914Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-442 +spec: + metadata: + connID: "158" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.875278732Z + restimestampmock: 2025-11-10T12:17:36.875377872Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-443 +spec: + metadata: + connID: "158" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('76e07df1-2f87-4705-89fe-c61e78001e39', 'product_tester', 'product_tester@example.in', 'scrypt:32768:8:1$aBmo9zFT7sufCoEs$c2685f5b4e484a132c6be244b22782899b77e8f34c73fb7cbc131d38935a8a684ab252c9236e5c111073765e978ead8b8888f6b8574daa030c607d63986df5ca', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.925879552Z + restimestampmock: 2025-11-10T12:17:36.926341218Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-444 +spec: + metadata: + connID: "158" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777056 + reqtimestampmock: 2025-11-10T12:17:36.926482837Z + restimestampmock: 2025-11-10T12:17:36.936225075Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-445 +spec: + metadata: + connID: "160" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [177, 205, 74, 23, 73, 84, 48, 94, 23, 39, 82, 160, 160, 147, 219, 99, 108, 242, 101, 217, 170, 140, 82, 166, 66, 230, 158, 84, 204, 91, 217, 154] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 189 + auth_plugin_data: [63, 77, 100, 83, 19, 116, 23, 67, 72, 113, 87, 91, 48, 70, 89, 60, 80, 3, 3, 112, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777057 + reqtimestampmock: 2025-11-10T12:17:37.613532267Z + restimestampmock: 2025-11-10T12:17:37.620499678Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-446 +spec: + metadata: + connID: "160" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777057 + reqtimestampmock: 2025-11-10T12:17:37.620703277Z + restimestampmock: 2025-11-10T12:17:37.620935144Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-447 +spec: + metadata: + connID: "160" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777057 + reqtimestampmock: 2025-11-10T12:17:37.621060194Z + restimestampmock: 2025-11-10T12:17:37.621242432Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-448 +spec: + metadata: + connID: "160" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777057 + reqtimestampmock: 2025-11-10T12:17:37.62137323Z + restimestampmock: 2025-11-10T12:17:37.6214958Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-449 +spec: + metadata: + connID: "160" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='product_tester' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: 76e07df1-2f87-4705-89fe-c61e78001e39 + unsigned: false + - type: 253 + name: username + value: product_tester + unsigned: false + - type: 253 + name: email + value: product_tester@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$aBmo9zFT7sufCoEs$c2685f5b4e484a132c6be244b22782899b77e8f34c73fb7cbc131d38935a8a684ab252c9236e5c111073765e978ead8b8888f6b8574daa030c607d63986df5ca + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777057 + reqtimestampmock: 2025-11-10T12:17:37.621705807Z + restimestampmock: 2025-11-10T12:17:37.622219863Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-450 +spec: + metadata: + connID: "162" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [58, 194, 61, 58, 4, 208, 81, 217, 99, 9, 150, 114, 24, 138, 100, 76, 255, 113, 73, 11, 9, 83, 28, 213, 204, 76, 39, 40, 121, 148, 41, 190] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 191 + auth_plugin_data: [60, 65, 28, 3, 113, 14, 106, 8, 5, 68, 61, 25, 52, 4, 109, 18, 95, 30, 87, 109, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.181856486Z + restimestampmock: 2025-11-10T12:17:39.188301681Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-451 +spec: + metadata: + connID: "162" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.188496129Z + restimestampmock: 2025-11-10T12:17:39.188715387Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-452 +spec: + metadata: + connID: "162" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.188848096Z + restimestampmock: 2025-11-10T12:17:39.189001185Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-453 +spec: + metadata: + connID: "162" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.189107454Z + restimestampmock: 2025-11-10T12:17:39.189231113Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-454 +spec: + metadata: + connID: "162" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='76e07df1-2f87-4705-89fe-c61e78001e39' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 76e07df1-2f87-4705-89fe-c61e78001e39 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.189415772Z + restimestampmock: 2025-11-10T12:17:39.189779359Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-455 +spec: + metadata: + connID: "162" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='76e07df1-2f87-4705-89fe-c61e78001e39' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.189965266Z + restimestampmock: 2025-11-10T12:17:39.190190035Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-456 +spec: + metadata: + connID: "162" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='76e07df1-2f87-4705-89fe-c61e78001e39' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.190348793Z + restimestampmock: 2025-11-10T12:17:39.190637581Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-457 +spec: + metadata: + connID: "162" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777059 + reqtimestampmock: 2025-11-10T12:17:39.19080652Z + restimestampmock: 2025-11-10T12:17:39.203261223Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-458 +spec: + metadata: + connID: "164" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [120, 207, 232, 164, 16, 86, 46, 190, 37, 95, 159, 103, 50, 176, 238, 79, 94, 69, 118, 176, 226, 121, 16, 129, 45, 176, 210, 239, 94, 102, 132, 202] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 192 + auth_plugin_data: [109, 81, 96, 4, 14, 50, 109, 19, 12, 47, 74, 110, 7, 20, 114, 16, 50, 27, 122, 65, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777061 + reqtimestampmock: 2025-11-10T12:17:41.539316289Z + restimestampmock: 2025-11-10T12:17:41.546936343Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-459 +spec: + metadata: + connID: "164" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777061 + reqtimestampmock: 2025-11-10T12:17:41.547087242Z + restimestampmock: 2025-11-10T12:17:41.547282181Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-460 +spec: + metadata: + connID: "164" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777061 + reqtimestampmock: 2025-11-10T12:17:41.547390749Z + restimestampmock: 2025-11-10T12:17:41.547537319Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-461 +spec: + metadata: + connID: "164" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777061 + reqtimestampmock: 2025-11-10T12:17:41.547634818Z + restimestampmock: 2025-11-10T12:17:41.547740516Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-462 +spec: + metadata: + connID: "164" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 337 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('c4f415bd-b650-453c-852e-592ef525edac', 'inventory_manager', 'inventory_manager@example.in', 'scrypt:32768:8:1$eeD9sNSCOThqspwl$63294588a48330985c68037367fc34f11bd124993f0114c2c34368c1622458a44e070c305752cd1fe243004b45fddc110ef7ac9d47aa7a4abe2fdbc41d027fc4', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777061 + reqtimestampmock: 2025-11-10T12:17:41.597219255Z + restimestampmock: 2025-11-10T12:17:41.597679361Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-463 +spec: + metadata: + connID: "164" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777061 + reqtimestampmock: 2025-11-10T12:17:41.5978113Z + restimestampmock: 2025-11-10T12:17:41.60724618Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-464 +spec: + metadata: + connID: "166" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [251, 106, 11, 56, 43, 166, 56, 28, 197, 52, 155, 78, 98, 51, 128, 211, 185, 77, 219, 143, 125, 196, 50, 107, 0, 204, 153, 56, 22, 193, 149, 216] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 193 + auth_plugin_data: [107, 102, 68, 32, 78, 12, 79, 121, 1, 20, 51, 51, 43, 2, 48, 8, 111, 87, 63, 57, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777062 + reqtimestampmock: 2025-11-10T12:17:42.328554541Z + restimestampmock: 2025-11-10T12:17:42.334803358Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-465 +spec: + metadata: + connID: "166" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777062 + reqtimestampmock: 2025-11-10T12:17:42.334950786Z + restimestampmock: 2025-11-10T12:17:42.335132215Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-466 +spec: + metadata: + connID: "166" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777062 + reqtimestampmock: 2025-11-10T12:17:42.335253744Z + restimestampmock: 2025-11-10T12:17:42.335389063Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-467 +spec: + metadata: + connID: "166" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777062 + reqtimestampmock: 2025-11-10T12:17:42.335549841Z + restimestampmock: 2025-11-10T12:17:42.335647601Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-468 +spec: + metadata: + connID: "166" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 90 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='inventory_manager' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 247 + sequence_id: 6 + values: + - type: 253 + name: id + value: c4f415bd-b650-453c-852e-592ef525edac + unsigned: false + - type: 253 + name: username + value: inventory_manager + unsigned: false + - type: 253 + name: email + value: inventory_manager@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$eeD9sNSCOThqspwl$63294588a48330985c68037367fc34f11bd124993f0114c2c34368c1622458a44e070c305752cd1fe243004b45fddc110ef7ac9d47aa7a4abe2fdbc41d027fc4 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777062 + reqtimestampmock: 2025-11-10T12:17:42.335860209Z + restimestampmock: 2025-11-10T12:17:42.336277806Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-469 +spec: + metadata: + connID: "168" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [71, 152, 30, 115, 139, 227, 42, 162, 238, 54, 30, 225, 162, 89, 46, 98, 226, 72, 177, 247, 191, 245, 246, 97, 57, 47, 133, 22, 65, 18, 106, 174] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 195 + auth_plugin_data: [117, 22, 110, 18, 10, 57, 105, 33, 84, 87, 30, 40, 124, 105, 53, 68, 17, 22, 35, 2, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.913345075Z + restimestampmock: 2025-11-10T12:17:43.921204758Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-470 +spec: + metadata: + connID: "168" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.921362727Z + restimestampmock: 2025-11-10T12:17:43.921568525Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-471 +spec: + metadata: + connID: "168" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.921701554Z + restimestampmock: 2025-11-10T12:17:43.921836193Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-472 +spec: + metadata: + connID: "168" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.921943422Z + restimestampmock: 2025-11-10T12:17:43.922048801Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-473 +spec: + metadata: + connID: "168" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c4f415bd-b650-453c-852e-592ef525edac' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c4f415bd-b650-453c-852e-592ef525edac + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.922233139Z + restimestampmock: 2025-11-10T12:17:43.922611477Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-474 +spec: + metadata: + connID: "168" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='c4f415bd-b650-453c-852e-592ef525edac' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.922724455Z + restimestampmock: 2025-11-10T12:17:43.922995862Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-475 +spec: + metadata: + connID: "168" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='c4f415bd-b650-453c-852e-592ef525edac' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.923139571Z + restimestampmock: 2025-11-10T12:17:43.923424809Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-476 +spec: + metadata: + connID: "168" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777063 + reqtimestampmock: 2025-11-10T12:17:43.923525728Z + restimestampmock: 2025-11-10T12:17:43.935205508Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-477 +spec: + metadata: + connID: "170" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [87, 197, 167, 132, 95, 104, 255, 148, 22, 196, 78, 78, 106, 81, 224, 120, 192, 78, 33, 98, 166, 118, 36, 125, 94, 160, 235, 254, 101, 229, 76, 86] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 196 + auth_plugin_data: [119, 21, 65, 112, 40, 64, 22, 24, 76, 40, 96, 11, 13, 39, 41, 10, 15, 82, 107, 26, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777066 + reqtimestampmock: 2025-11-10T12:17:46.517424111Z + restimestampmock: 2025-11-10T12:17:46.523778327Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-478 +spec: + metadata: + connID: "170" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777066 + reqtimestampmock: 2025-11-10T12:17:46.523938926Z + restimestampmock: 2025-11-10T12:17:46.524126734Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-479 +spec: + metadata: + connID: "170" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777066 + reqtimestampmock: 2025-11-10T12:17:46.524457522Z + restimestampmock: 2025-11-10T12:17:46.52461972Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-480 +spec: + metadata: + connID: "170" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777066 + reqtimestampmock: 2025-11-10T12:17:46.524860638Z + restimestampmock: 2025-11-10T12:17:46.524974968Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-481 +spec: + metadata: + connID: "170" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('79211abf-4c4b-4339-a13c-ee6106a32e6b', 'stock_checker', 'stock_checker@example.in', 'scrypt:32768:8:1$Vr54OEwCQRkXcHwB$f1caaa80fa7f691eadc2c5b9d98a0a8d1ad50baef32f6d893899f36aaf88d21890624e21b845e9872ffb14a05ebac722715d5c23538442fcdacf64f33a1c34ad', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777066 + reqtimestampmock: 2025-11-10T12:17:46.578585211Z + restimestampmock: 2025-11-10T12:17:46.579090107Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-482 +spec: + metadata: + connID: "170" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777066 + reqtimestampmock: 2025-11-10T12:17:46.579270895Z + restimestampmock: 2025-11-10T12:17:46.588071531Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-483 +spec: + metadata: + connID: "172" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [242, 132, 138, 243, 119, 215, 22, 17, 69, 239, 68, 108, 208, 133, 72, 46, 61, 98, 36, 128, 6, 184, 163, 181, 50, 122, 30, 215, 25, 49, 114, 167] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 197 + auth_plugin_data: [27, 100, 122, 108, 106, 23, 103, 115, 72, 65, 68, 60, 11, 82, 41, 81, 60, 114, 87, 11, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777067 + reqtimestampmock: 2025-11-10T12:17:47.295803Z + restimestampmock: 2025-11-10T12:17:47.301973859Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-484 +spec: + metadata: + connID: "172" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777067 + reqtimestampmock: 2025-11-10T12:17:47.302142586Z + restimestampmock: 2025-11-10T12:17:47.302368585Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-485 +spec: + metadata: + connID: "172" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777067 + reqtimestampmock: 2025-11-10T12:17:47.302476364Z + restimestampmock: 2025-11-10T12:17:47.302689972Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-486 +spec: + metadata: + connID: "172" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777067 + reqtimestampmock: 2025-11-10T12:17:47.302806321Z + restimestampmock: 2025-11-10T12:17:47.30290733Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-487 +spec: + metadata: + connID: "172" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='stock_checker' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: 79211abf-4c4b-4339-a13c-ee6106a32e6b + unsigned: false + - type: 253 + name: username + value: stock_checker + unsigned: false + - type: 253 + name: email + value: stock_checker@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Vr54OEwCQRkXcHwB$f1caaa80fa7f691eadc2c5b9d98a0a8d1ad50baef32f6d893899f36aaf88d21890624e21b845e9872ffb14a05ebac722715d5c23538442fcdacf64f33a1c34ad + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777067 + reqtimestampmock: 2025-11-10T12:17:47.303199908Z + restimestampmock: 2025-11-10T12:17:47.303627703Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-488 +spec: + metadata: + connID: "174" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [129, 49, 46, 80, 44, 207, 161, 225, 212, 250, 180, 192, 197, 120, 164, 189, 154, 135, 172, 63, 64, 188, 210, 119, 148, 228, 149, 38, 169, 47, 130, 169] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 199 + auth_plugin_data: [30, 20, 28, 30, 18, 39, 46, 43, 53, 42, 24, 83, 57, 15, 98, 7, 105, 120, 53, 71, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.83845677Z + restimestampmock: 2025-11-10T12:17:48.844611378Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-489 +spec: + metadata: + connID: "174" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.844785516Z + restimestampmock: 2025-11-10T12:17:48.844947585Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-490 +spec: + metadata: + connID: "174" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.845061714Z + restimestampmock: 2025-11-10T12:17:48.845207743Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-491 +spec: + metadata: + connID: "174" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.845306502Z + restimestampmock: 2025-11-10T12:17:48.845403212Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-492 +spec: + metadata: + connID: "174" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='79211abf-4c4b-4339-a13c-ee6106a32e6b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 79211abf-4c4b-4339-a13c-ee6106a32e6b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.845626679Z + restimestampmock: 2025-11-10T12:17:48.845976277Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-493 +spec: + metadata: + connID: "174" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='79211abf-4c4b-4339-a13c-ee6106a32e6b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.846175265Z + restimestampmock: 2025-11-10T12:17:48.846390113Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-494 +spec: + metadata: + connID: "174" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='79211abf-4c4b-4339-a13c-ee6106a32e6b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.846543482Z + restimestampmock: 2025-11-10T12:17:48.846817089Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-495 +spec: + metadata: + connID: "174" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777068 + reqtimestampmock: 2025-11-10T12:17:48.846923248Z + restimestampmock: 2025-11-10T12:17:48.859161094Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-496 +spec: + metadata: + connID: "176" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [82, 77, 143, 6, 13, 3, 152, 81, 37, 220, 151, 221, 17, 98, 13, 24, 186, 184, 146, 201, 100, 217, 164, 166, 86, 138, 174, 148, 168, 74, 181, 214] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 200 + auth_plugin_data: [81, 95, 46, 57, 122, 113, 106, 35, 126, 53, 88, 23, 100, 97, 20, 37, 22, 124, 44, 51, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.068063411Z + restimestampmock: 2025-11-10T12:17:51.074414387Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-497 +spec: + metadata: + connID: "176" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.074595395Z + restimestampmock: 2025-11-10T12:17:51.074767624Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-498 +spec: + metadata: + connID: "176" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.074916122Z + restimestampmock: 2025-11-10T12:17:51.075074731Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-499 +spec: + metadata: + connID: "176" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.07523405Z + restimestampmock: 2025-11-10T12:17:51.075347319Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-500 +spec: + metadata: + connID: "176" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('bb49cd03-583c-4f27-a003-e2050840ab3b', 'deepa_idem_01', 'deepa_idem_01@example.in', 'scrypt:32768:8:1$h90CiDW4J9IaSW3N$0660f280844f671b574a7b9766fadbe54d014ee97ef1127d3a86bb57099f7962e79d2a48c3a89b5f695f4643e6b1d80378fdc9ef77912f6ed70e100436c1972b', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.127140108Z + restimestampmock: 2025-11-10T12:17:51.127626344Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-501 +spec: + metadata: + connID: "176" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.127797083Z + restimestampmock: 2025-11-10T12:17:51.140007628Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-502 +spec: + metadata: + connID: "178" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [145, 228, 73, 173, 122, 80, 198, 26, 139, 44, 44, 197, 168, 59, 177, 155, 185, 63, 28, 153, 194, 169, 220, 190, 223, 105, 176, 251, 105, 37, 90, 50] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 201 + auth_plugin_data: [27, 86, 89, 124, 8, 117, 105, 60, 121, 39, 25, 111, 108, 2, 35, 3, 52, 83, 55, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.981561114Z + restimestampmock: 2025-11-10T12:17:51.987775281Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-503 +spec: + metadata: + connID: "178" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.98792684Z + restimestampmock: 2025-11-10T12:17:51.988167708Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-504 +spec: + metadata: + connID: "178" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.988259017Z + restimestampmock: 2025-11-10T12:17:51.988465635Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-505 +spec: + metadata: + connID: "178" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.988573933Z + restimestampmock: 2025-11-10T12:17:51.988652234Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-506 +spec: + metadata: + connID: "178" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='deepa_idem_01' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: bb49cd03-583c-4f27-a003-e2050840ab3b + unsigned: false + - type: 253 + name: username + value: deepa_idem_01 + unsigned: false + - type: 253 + name: email + value: deepa_idem_01@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$h90CiDW4J9IaSW3N$0660f280844f671b574a7b9766fadbe54d014ee97ef1127d3a86bb57099f7962e79d2a48c3a89b5f695f4643e6b1d80378fdc9ef77912f6ed70e100436c1972b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777071 + reqtimestampmock: 2025-11-10T12:17:51.988852482Z + restimestampmock: 2025-11-10T12:17:51.989293368Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-507 +spec: + metadata: + connID: "180" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [33, 171, 2, 197, 144, 60, 49, 243, 24, 50, 231, 126, 14, 197, 70, 232, 60, 43, 140, 236, 145, 102, 204, 211, 42, 62, 21, 21, 8, 64, 192, 190] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 202 + auth_plugin_data: [110, 112, 40, 84, 116, 38, 75, 54, 106, 127, 39, 95, 1, 106, 110, 79, 24, 47, 58, 77, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.815129308Z + restimestampmock: 2025-11-10T12:17:52.821184266Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-508 +spec: + metadata: + connID: "180" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.821327425Z + restimestampmock: 2025-11-10T12:17:52.821476294Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-509 +spec: + metadata: + connID: "180" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.821586053Z + restimestampmock: 2025-11-10T12:17:52.821697432Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-510 +spec: + metadata: + connID: "180" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.821779801Z + restimestampmock: 2025-11-10T12:17:52.82187054Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-511 +spec: + metadata: + connID: "180" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='bb49cd03-583c-4f27-a003-e2050840ab3b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: bb49cd03-583c-4f27-a003-e2050840ab3b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.822023059Z + restimestampmock: 2025-11-10T12:17:52.822410756Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-512 +spec: + metadata: + connID: "180" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 267 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('8ce1b5f8-3b4d-427f-8bf5-e9703ff9df27','bb49cd03-583c-4f27-a003-e2050840ab3b','22 Connaught Place',NULL,'Delhi','Delhi','110001','IN','+919812345678',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.822532225Z + restimestampmock: 2025-11-10T12:17:52.822959881Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-513 +spec: + metadata: + connID: "180" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='bb49cd03-583c-4f27-a003-e2050840ab3b' AND id<>'8ce1b5f8-3b4d-427f-8bf5-e9703ff9df27' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.823063991Z + restimestampmock: 2025-11-10T12:17:52.823360407Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-514 +spec: + metadata: + connID: "180" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777072 + reqtimestampmock: 2025-11-10T12:17:52.823449137Z + restimestampmock: 2025-11-10T12:17:52.835016079Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-515 +spec: + metadata: + connID: "182" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [1, 159, 239, 43, 48, 174, 150, 152, 255, 19, 111, 58, 232, 44, 247, 96, 240, 51, 217, 107, 207, 131, 153, 230, 153, 5, 78, 236, 81, 165, 163, 99] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 204 + auth_plugin_data: [38, 91, 92, 101, 82, 47, 28, 102, 122, 34, 10, 61, 21, 66, 87, 30, 65, 78, 110, 73, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.444387438Z + restimestampmock: 2025-11-10T12:17:54.450442786Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-516 +spec: + metadata: + connID: "182" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.450625455Z + restimestampmock: 2025-11-10T12:17:54.450794943Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-517 +spec: + metadata: + connID: "182" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.450914172Z + restimestampmock: 2025-11-10T12:17:54.451040911Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-518 +spec: + metadata: + connID: "182" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.45119707Z + restimestampmock: 2025-11-10T12:17:54.451342349Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-519 +spec: + metadata: + connID: "182" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='bb49cd03-583c-4f27-a003-e2050840ab3b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: bb49cd03-583c-4f27-a003-e2050840ab3b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.451475688Z + restimestampmock: 2025-11-10T12:17:54.451835175Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-520 +spec: + metadata: + connID: "182" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='bb49cd03-583c-4f27-a003-e2050840ab3b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.451940814Z + restimestampmock: 2025-11-10T12:17:54.45236052Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-521 +spec: + metadata: + connID: "182" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='bb49cd03-583c-4f27-a003-e2050840ab3b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.452457319Z + restimestampmock: 2025-11-10T12:17:54.453054474Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-522 +spec: + metadata: + connID: "182" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777074 + reqtimestampmock: 2025-11-10T12:17:54.453230883Z + restimestampmock: 2025-11-10T12:17:54.466019004Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-523 +spec: + metadata: + connID: "184" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [207, 188, 17, 138, 66, 65, 23, 239, 24, 115, 250, 182, 38, 196, 19, 227, 16, 159, 234, 202, 89, 168, 247, 10, 113, 201, 119, 170, 156, 215, 166, 123] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 205 + auth_plugin_data: [40, 67, 32, 123, 43, 2, 5, 34, 104, 28, 81, 57, 22, 43, 61, 17, 102, 51, 90, 87, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777077 + reqtimestampmock: 2025-11-10T12:17:57.174667611Z + restimestampmock: 2025-11-10T12:17:57.18076736Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-524 +spec: + metadata: + connID: "184" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777077 + reqtimestampmock: 2025-11-10T12:17:57.180922499Z + restimestampmock: 2025-11-10T12:17:57.181071618Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-525 +spec: + metadata: + connID: "184" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777077 + reqtimestampmock: 2025-11-10T12:17:57.181190657Z + restimestampmock: 2025-11-10T12:17:57.181324615Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-526 +spec: + metadata: + connID: "184" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777077 + reqtimestampmock: 2025-11-10T12:17:57.181417525Z + restimestampmock: 2025-11-10T12:17:57.181524913Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-527 +spec: + metadata: + connID: "184" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('9a082290-3fed-4a09-ac50-d25e81f0222c', 'cancel_user_01', 'cancel_user_01@example.in', 'scrypt:32768:8:1$OakZnLMbGUoK08aK$f2640effb318a212f1bed6637549be27713e6f36170a68d06a46a81fed16fc929b5abaf2c8649f8b52e5bbfa961fb036445c405b1e801b579d289549ef2d9052', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777077 + reqtimestampmock: 2025-11-10T12:17:57.230545816Z + restimestampmock: 2025-11-10T12:17:57.230947594Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-528 +spec: + metadata: + connID: "184" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777077 + reqtimestampmock: 2025-11-10T12:17:57.231057203Z + restimestampmock: 2025-11-10T12:17:57.244056573Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-529 +spec: + metadata: + connID: "186" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [248, 67, 110, 44, 117, 15, 136, 115, 245, 185, 76, 249, 250, 132, 138, 57, 131, 123, 55, 82, 106, 236, 38, 178, 233, 218, 103, 9, 172, 95, 138, 117] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 206 + auth_plugin_data: [71, 119, 126, 56, 98, 125, 75, 3, 28, 102, 34, 24, 67, 22, 126, 33, 60, 101, 76, 17, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.100895511Z + restimestampmock: 2025-11-10T12:17:58.108595695Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-530 +spec: + metadata: + connID: "186" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.108774724Z + restimestampmock: 2025-11-10T12:17:58.108951273Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-531 +spec: + metadata: + connID: "186" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.109089251Z + restimestampmock: 2025-11-10T12:17:58.10927566Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-532 +spec: + metadata: + connID: "186" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.109415639Z + restimestampmock: 2025-11-10T12:17:58.109502838Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-533 +spec: + metadata: + connID: "186" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='cancel_user_01' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9a082290-3fed-4a09-ac50-d25e81f0222c + unsigned: false + - type: 253 + name: username + value: cancel_user_01 + unsigned: false + - type: 253 + name: email + value: cancel_user_01@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$OakZnLMbGUoK08aK$f2640effb318a212f1bed6637549be27713e6f36170a68d06a46a81fed16fc929b5abaf2c8649f8b52e5bbfa961fb036445c405b1e801b579d289549ef2d9052 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.109650537Z + restimestampmock: 2025-11-10T12:17:58.110119182Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-534 +spec: + metadata: + connID: "188" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [29, 98, 195, 39, 161, 88, 235, 91, 224, 105, 68, 33, 112, 244, 185, 36, 177, 114, 153, 101, 146, 194, 117, 126, 138, 227, 97, 248, 105, 74, 127, 224] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 208 + auth_plugin_data: [81, 12, 94, 62, 17, 98, 98, 93, 11, 21, 114, 13, 65, 78, 57, 118, 22, 69, 84, 10, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.963279444Z + restimestampmock: 2025-11-10T12:17:58.969412121Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-535 +spec: + metadata: + connID: "188" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.96960182Z + restimestampmock: 2025-11-10T12:17:58.969764529Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-536 +spec: + metadata: + connID: "188" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.969923738Z + restimestampmock: 2025-11-10T12:17:58.970070706Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-537 +spec: + metadata: + connID: "188" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.970173906Z + restimestampmock: 2025-11-10T12:17:58.970390753Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-538 +spec: + metadata: + connID: "188" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9a082290-3fed-4a09-ac50-d25e81f0222c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9a082290-3fed-4a09-ac50-d25e81f0222c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.970588321Z + restimestampmock: 2025-11-10T12:17:58.970997538Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-539 +spec: + metadata: + connID: "188" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 264 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('942d93ed-78d4-4e03-9d60-4931b6ab2e88','9a082290-3fed-4a09-ac50-d25e81f0222c','33 FC Road',NULL,'Pune','Maharashtra','411004','IN','+919876501234',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.971137767Z + restimestampmock: 2025-11-10T12:17:58.971500154Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-540 +spec: + metadata: + connID: "188" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='9a082290-3fed-4a09-ac50-d25e81f0222c' AND id<>'942d93ed-78d4-4e03-9d60-4931b6ab2e88' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.971693552Z + restimestampmock: 2025-11-10T12:17:58.97199509Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-541 +spec: + metadata: + connID: "188" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777078 + reqtimestampmock: 2025-11-10T12:17:58.972141679Z + restimestampmock: 2025-11-10T12:17:58.984016427Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-542 +spec: + metadata: + connID: "190" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [74, 205, 84, 248, 173, 83, 188, 160, 147, 157, 185, 228, 3, 153, 70, 171, 73, 24, 157, 213, 160, 34, 83, 205, 227, 187, 113, 59, 97, 16, 240, 73] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 209 + auth_plugin_data: [126, 81, 39, 88, 42, 86, 60, 96, 81, 5, 91, 25, 67, 89, 112, 86, 10, 62, 43, 3, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.764026495Z + restimestampmock: 2025-11-10T12:18:00.770999046Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-543 +spec: + metadata: + connID: "190" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.771213004Z + restimestampmock: 2025-11-10T12:18:00.771418872Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-544 +spec: + metadata: + connID: "190" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.771537362Z + restimestampmock: 2025-11-10T12:18:00.77169429Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-545 +spec: + metadata: + connID: "190" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.771829759Z + restimestampmock: 2025-11-10T12:18:00.771929268Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-546 +spec: + metadata: + connID: "190" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9a082290-3fed-4a09-ac50-d25e81f0222c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9a082290-3fed-4a09-ac50-d25e81f0222c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.772075426Z + restimestampmock: 2025-11-10T12:18:00.772481013Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-547 +spec: + metadata: + connID: "190" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='9a082290-3fed-4a09-ac50-d25e81f0222c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.772673182Z + restimestampmock: 2025-11-10T12:18:00.773136047Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-548 +spec: + metadata: + connID: "190" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='9a082290-3fed-4a09-ac50-d25e81f0222c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.773295137Z + restimestampmock: 2025-11-10T12:18:00.773582384Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-549 +spec: + metadata: + connID: "190" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777080 + reqtimestampmock: 2025-11-10T12:18:00.773679384Z + restimestampmock: 2025-11-10T12:18:00.789022982Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-550 +spec: + metadata: + connID: "192" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [64, 146, 126, 146, 253, 93, 92, 77, 155, 150, 208, 63, 36, 245, 172, 110, 39, 129, 133, 188, 53, 156, 129, 68, 101, 6, 169, 18, 11, 32, 17, 164] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 211 + auth_plugin_data: [27, 44, 57, 97, 45, 17, 61, 26, 78, 74, 37, 74, 52, 32, 76, 2, 117, 115, 32, 123, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777083 + reqtimestampmock: 2025-11-10T12:18:03.419297941Z + restimestampmock: 2025-11-10T12:18:03.425779456Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-551 +spec: + metadata: + connID: "192" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777083 + reqtimestampmock: 2025-11-10T12:18:03.425945143Z + restimestampmock: 2025-11-10T12:18:03.426150382Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-552 +spec: + metadata: + connID: "192" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777083 + reqtimestampmock: 2025-11-10T12:18:03.426276361Z + restimestampmock: 2025-11-10T12:18:03.426448789Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-553 +spec: + metadata: + connID: "192" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777083 + reqtimestampmock: 2025-11-10T12:18:03.426539979Z + restimestampmock: 2025-11-10T12:18:03.426645328Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-554 +spec: + metadata: + connID: "192" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('be716f2f-f071-42fe-8a85-a92c8a1c1b68', 'paid_cancel_fail', 'paid_cancel_fail@example.in', 'scrypt:32768:8:1$Vzrxnf3k2xQRvIsB$d5ce2bbde61fbe6ef845d3eb39c32f5abdf9a68145fdb1030619316e3ce595cd4dad7abcb4232cac53f333717b943c557df55d57cf8141415511f9ec426b64c0', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777083 + reqtimestampmock: 2025-11-10T12:18:03.477187979Z + restimestampmock: 2025-11-10T12:18:03.477687575Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-555 +spec: + metadata: + connID: "192" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777083 + reqtimestampmock: 2025-11-10T12:18:03.477820503Z + restimestampmock: 2025-11-10T12:18:03.486949286Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-556 +spec: + metadata: + connID: "194" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [210, 220, 26, 177, 180, 202, 225, 145, 78, 160, 205, 129, 146, 17, 30, 254, 166, 0, 107, 211, 1, 226, 71, 97, 85, 68, 193, 81, 31, 87, 164, 16] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 212 + auth_plugin_data: [16, 99, 52, 115, 32, 81, 123, 123, 63, 18, 71, 113, 5, 29, 57, 12, 92, 32, 82, 89, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777084 + reqtimestampmock: 2025-11-10T12:18:04.634743468Z + restimestampmock: 2025-11-10T12:18:04.640836326Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-557 +spec: + metadata: + connID: "194" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777084 + reqtimestampmock: 2025-11-10T12:18:04.641030494Z + restimestampmock: 2025-11-10T12:18:04.641216583Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-558 +spec: + metadata: + connID: "194" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777084 + reqtimestampmock: 2025-11-10T12:18:04.641332741Z + restimestampmock: 2025-11-10T12:18:04.64147854Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-559 +spec: + metadata: + connID: "194" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777084 + reqtimestampmock: 2025-11-10T12:18:04.641585099Z + restimestampmock: 2025-11-10T12:18:04.641687319Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-560 +spec: + metadata: + connID: "194" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='paid_cancel_fail' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: be716f2f-f071-42fe-8a85-a92c8a1c1b68 + unsigned: false + - type: 253 + name: username + value: paid_cancel_fail + unsigned: false + - type: 253 + name: email + value: paid_cancel_fail@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Vzrxnf3k2xQRvIsB$d5ce2bbde61fbe6ef845d3eb39c32f5abdf9a68145fdb1030619316e3ce595cd4dad7abcb4232cac53f333717b943c557df55d57cf8141415511f9ec426b64c0 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777084 + reqtimestampmock: 2025-11-10T12:18:04.641838648Z + restimestampmock: 2025-11-10T12:18:04.642475883Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-561 +spec: + metadata: + connID: "196" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [6, 82, 112, 192, 84, 191, 74, 94, 160, 7, 236, 189, 50, 191, 65, 148, 176, 229, 151, 228, 200, 177, 90, 161, 190, 64, 144, 177, 29, 114, 40, 36] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 213 + auth_plugin_data: [116, 75, 69, 53, 112, 119, 14, 15, 110, 63, 54, 58, 94, 111, 127, 7, 90, 61, 52, 120, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.438130905Z + restimestampmock: 2025-11-10T12:18:05.444354612Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-562 +spec: + metadata: + connID: "196" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.444500211Z + restimestampmock: 2025-11-10T12:18:05.444723389Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-563 +spec: + metadata: + connID: "196" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.444841558Z + restimestampmock: 2025-11-10T12:18:05.444996427Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-564 +spec: + metadata: + connID: "196" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.445099096Z + restimestampmock: 2025-11-10T12:18:05.445232114Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-565 +spec: + metadata: + connID: "196" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='be716f2f-f071-42fe-8a85-a92c8a1c1b68' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: be716f2f-f071-42fe-8a85-a92c8a1c1b68 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.445382713Z + restimestampmock: 2025-11-10T12:18:05.44577331Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-566 +spec: + metadata: + connID: "196" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 271 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('7aac94f7-3f51-4ad1-b262-d2acdd7429f2','be716f2f-f071-42fe-8a85-a92c8a1c1b68','55 Park Street',NULL,'Kolkata','West Bengal','700016','IN','+919000011111',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.44588617Z + restimestampmock: 2025-11-10T12:18:05.446196026Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-567 +spec: + metadata: + connID: "196" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='be716f2f-f071-42fe-8a85-a92c8a1c1b68' AND id<>'7aac94f7-3f51-4ad1-b262-d2acdd7429f2' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.446355505Z + restimestampmock: 2025-11-10T12:18:05.446588494Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-568 +spec: + metadata: + connID: "196" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777085 + reqtimestampmock: 2025-11-10T12:18:05.446763392Z + restimestampmock: 2025-11-10T12:18:05.459826591Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-569 +spec: + metadata: + connID: "198" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [108, 105, 13, 24, 62, 53, 195, 132, 157, 127, 107, 49, 224, 174, 204, 26, 10, 59, 181, 119, 10, 213, 103, 112, 253, 103, 180, 62, 125, 83, 209, 75] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 214 + auth_plugin_data: [25, 113, 59, 61, 43, 72, 87, 86, 21, 5, 117, 117, 56, 41, 120, 105, 8, 126, 118, 27, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:06.996978349Z + restimestampmock: 2025-11-10T12:18:07.003324875Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-570 +spec: + metadata: + connID: "198" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:07.003487334Z + restimestampmock: 2025-11-10T12:18:07.003659602Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-571 +spec: + metadata: + connID: "198" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:07.003752081Z + restimestampmock: 2025-11-10T12:18:07.003894981Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-572 +spec: + metadata: + connID: "198" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:07.00401131Z + restimestampmock: 2025-11-10T12:18:07.004164099Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-573 +spec: + metadata: + connID: "198" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='be716f2f-f071-42fe-8a85-a92c8a1c1b68' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: be716f2f-f071-42fe-8a85-a92c8a1c1b68 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:07.004380267Z + restimestampmock: 2025-11-10T12:18:07.004782144Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-574 +spec: + metadata: + connID: "198" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='be716f2f-f071-42fe-8a85-a92c8a1c1b68' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:07.004891352Z + restimestampmock: 2025-11-10T12:18:07.005285949Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-575 +spec: + metadata: + connID: "198" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='be716f2f-f071-42fe-8a85-a92c8a1c1b68' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:07.005496647Z + restimestampmock: 2025-11-10T12:18:07.005770344Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-576 +spec: + metadata: + connID: "198" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777087 + reqtimestampmock: 2025-11-10T12:18:07.005887383Z + restimestampmock: 2025-11-10T12:18:07.015936148Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-577 +spec: + metadata: + connID: "200" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [44, 48, 59, 133, 82, 56, 174, 38, 251, 68, 118, 132, 181, 173, 109, 249, 246, 103, 128, 213, 107, 166, 26, 160, 149, 60, 103, 235, 3, 197, 5, 149] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 216 + auth_plugin_data: [5, 78, 59, 32, 106, 116, 21, 95, 80, 37, 66, 57, 69, 8, 27, 14, 97, 100, 9, 80, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.119162384Z + restimestampmock: 2025-11-10T12:18:10.125665579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-578 +spec: + metadata: + connID: "200" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.125820617Z + restimestampmock: 2025-11-10T12:18:10.125995596Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-579 +spec: + metadata: + connID: "200" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.126176214Z + restimestampmock: 2025-11-10T12:18:10.126399863Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-580 +spec: + metadata: + connID: "200" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.126529432Z + restimestampmock: 2025-11-10T12:18:10.126640031Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-581 +spec: + metadata: + connID: "200" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 333 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('4dec0e0b-8950-49ab-aefb-acea23952e05', 'list_order_user', 'list_order_user@example.in', 'scrypt:32768:8:1$SbUTzWeteoZ3uNNn$be932e7db95f957f8688558c52a92a44a6d6c70683c6a425fe13f038689029446298c4aab6f08b042005e7b58ecede625e248404a922826e10c469af10e2676a', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.176288108Z + restimestampmock: 2025-11-10T12:18:10.176698776Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-582 +spec: + metadata: + connID: "200" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.176847384Z + restimestampmock: 2025-11-10T12:18:10.185986717Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-583 +spec: + metadata: + connID: "202" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [212, 24, 30, 119, 213, 6, 204, 43, 211, 108, 175, 161, 77, 42, 229, 214, 138, 179, 218, 118, 130, 91, 18, 31, 238, 27, 32, 152, 71, 46, 94, 21] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 217 + auth_plugin_data: [65, 13, 115, 41, 16, 37, 104, 58, 112, 37, 89, 76, 107, 56, 95, 19, 72, 31, 18, 50, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.95851268Z + restimestampmock: 2025-11-10T12:18:10.965425831Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-584 +spec: + metadata: + connID: "202" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.965626609Z + restimestampmock: 2025-11-10T12:18:10.965808807Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-585 +spec: + metadata: + connID: "202" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.965932096Z + restimestampmock: 2025-11-10T12:18:10.966104935Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-586 +spec: + metadata: + connID: "202" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.966229344Z + restimestampmock: 2025-11-10T12:18:10.966342723Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-587 +spec: + metadata: + connID: "202" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 88 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='list_order_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 243 + sequence_id: 6 + values: + - type: 253 + name: id + value: 4dec0e0b-8950-49ab-aefb-acea23952e05 + unsigned: false + - type: 253 + name: username + value: list_order_user + unsigned: false + - type: 253 + name: email + value: list_order_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$SbUTzWeteoZ3uNNn$be932e7db95f957f8688558c52a92a44a6d6c70683c6a425fe13f038689029446298c4aab6f08b042005e7b58ecede625e248404a922826e10c469af10e2676a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777090 + reqtimestampmock: 2025-11-10T12:18:10.966500422Z + restimestampmock: 2025-11-10T12:18:10.966987138Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-588 +spec: + metadata: + connID: "204" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [55, 168, 113, 23, 11, 142, 224, 77, 186, 167, 173, 51, 6, 171, 245, 80, 90, 22, 239, 154, 92, 231, 37, 194, 166, 98, 0, 218, 91, 114, 9, 240] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 218 + auth_plugin_data: [34, 108, 117, 25, 86, 19, 51, 19, 84, 106, 66, 34, 8, 37, 103, 12, 120, 23, 91, 81, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.718584898Z + restimestampmock: 2025-11-10T12:18:11.724820325Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-589 +spec: + metadata: + connID: "204" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.724966864Z + restimestampmock: 2025-11-10T12:18:11.725140123Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-590 +spec: + metadata: + connID: "204" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.725298271Z + restimestampmock: 2025-11-10T12:18:11.725436959Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-591 +spec: + metadata: + connID: "204" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.725544499Z + restimestampmock: 2025-11-10T12:18:11.725632758Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-592 +spec: + metadata: + connID: "204" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='4dec0e0b-8950-49ab-aefb-acea23952e05' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 4dec0e0b-8950-49ab-aefb-acea23952e05 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.725841387Z + restimestampmock: 2025-11-10T12:18:11.726233304Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-593 +spec: + metadata: + connID: "204" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 272 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('149209af-8c0e-440f-99fb-704a2209cf84','4dec0e0b-8950-49ab-aefb-acea23952e05','7 Jubilee Hills',NULL,'Hyderabad','Telangana','500033','IN','+919123456789',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.726415262Z + restimestampmock: 2025-11-10T12:18:11.72667446Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-594 +spec: + metadata: + connID: "204" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='4dec0e0b-8950-49ab-aefb-acea23952e05' AND id<>'149209af-8c0e-440f-99fb-704a2209cf84' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.726819099Z + restimestampmock: 2025-11-10T12:18:11.727125966Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-595 +spec: + metadata: + connID: "204" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777091 + reqtimestampmock: 2025-11-10T12:18:11.727241585Z + restimestampmock: 2025-11-10T12:18:11.739847658Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-596 +spec: + metadata: + connID: "206" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [79, 113, 70, 35, 27, 161, 184, 193, 165, 198, 100, 212, 115, 200, 164, 112, 119, 248, 225, 228, 67, 64, 74, 11, 7, 41, 150, 209, 236, 103, 69, 156] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 220 + auth_plugin_data: [37, 82, 122, 60, 69, 86, 23, 43, 87, 45, 45, 64, 53, 105, 38, 10, 76, 43, 103, 116, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.005307652Z + restimestampmock: 2025-11-10T12:18:14.011976016Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-597 +spec: + metadata: + connID: "206" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.012181464Z + restimestampmock: 2025-11-10T12:18:14.012348112Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-598 +spec: + metadata: + connID: "206" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.012511581Z + restimestampmock: 2025-11-10T12:18:14.01265361Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-599 +spec: + metadata: + connID: "206" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.012750449Z + restimestampmock: 2025-11-10T12:18:14.012850539Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-600 +spec: + metadata: + connID: "206" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='4dec0e0b-8950-49ab-aefb-acea23952e05' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 4dec0e0b-8950-49ab-aefb-acea23952e05 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.013037257Z + restimestampmock: 2025-11-10T12:18:14.013396623Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-601 +spec: + metadata: + connID: "206" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='4dec0e0b-8950-49ab-aefb-acea23952e05' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.013534442Z + restimestampmock: 2025-11-10T12:18:14.013888579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-602 +spec: + metadata: + connID: "206" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='4dec0e0b-8950-49ab-aefb-acea23952e05' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.014049588Z + restimestampmock: 2025-11-10T12:18:14.014643233Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-603 +spec: + metadata: + connID: "206" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777094 + reqtimestampmock: 2025-11-10T12:18:14.014748352Z + restimestampmock: 2025-11-10T12:18:14.023892115Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-604 +spec: + metadata: + connID: "208" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [249, 41, 107, 107, 241, 79, 241, 31, 173, 0, 116, 238, 25, 2, 184, 149, 189, 191, 56, 237, 155, 210, 146, 83, 122, 189, 214, 247, 22, 29, 11, 2] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 221 + auth_plugin_data: [121, 38, 95, 88, 14, 105, 21, 86, 11, 55, 1, 13, 120, 9, 29, 126, 57, 61, 125, 70, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777097 + reqtimestampmock: 2025-11-10T12:18:17.46026213Z + restimestampmock: 2025-11-10T12:18:17.467046851Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-605 +spec: + metadata: + connID: "208" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777097 + reqtimestampmock: 2025-11-10T12:18:17.4672169Z + restimestampmock: 2025-11-10T12:18:17.467477598Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-606 +spec: + metadata: + connID: "208" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777097 + reqtimestampmock: 2025-11-10T12:18:17.467600107Z + restimestampmock: 2025-11-10T12:18:17.467766046Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-607 +spec: + metadata: + connID: "208" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777097 + reqtimestampmock: 2025-11-10T12:18:17.467853455Z + restimestampmock: 2025-11-10T12:18:17.467958624Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-608 +spec: + metadata: + connID: "208" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 337 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('2a16540a-f916-4b11-b715-7636c0946697', 'default_addr_user', 'default_addr_user@example.in', 'scrypt:32768:8:1$KsxgWPhrbSWrUTJE$f9435c1ad531231d87ff05271bfddeea09ec1cf012ebe20951cb3c838e945e36ce204f593b8f65156fdd6acbb7142a611cad83040271df6fc81af01b9b5c4194', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777097 + reqtimestampmock: 2025-11-10T12:18:17.517747882Z + restimestampmock: 2025-11-10T12:18:17.518241697Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-609 +spec: + metadata: + connID: "208" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777097 + reqtimestampmock: 2025-11-10T12:18:17.518460885Z + restimestampmock: 2025-11-10T12:18:17.531867032Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-610 +spec: + metadata: + connID: "210" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [76, 5, 218, 143, 151, 61, 28, 20, 80, 152, 219, 50, 195, 31, 39, 0, 165, 99, 217, 11, 25, 140, 39, 75, 197, 88, 206, 54, 79, 62, 130, 30] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 222 + auth_plugin_data: [84, 89, 59, 10, 87, 58, 115, 31, 11, 100, 91, 56, 89, 89, 120, 37, 16, 85, 77, 127, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777098 + reqtimestampmock: 2025-11-10T12:18:18.205133771Z + restimestampmock: 2025-11-10T12:18:18.211600396Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-611 +spec: + metadata: + connID: "210" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777098 + reqtimestampmock: 2025-11-10T12:18:18.211746315Z + restimestampmock: 2025-11-10T12:18:18.211913334Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-612 +spec: + metadata: + connID: "210" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777098 + reqtimestampmock: 2025-11-10T12:18:18.212035103Z + restimestampmock: 2025-11-10T12:18:18.21236223Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-613 +spec: + metadata: + connID: "210" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777098 + reqtimestampmock: 2025-11-10T12:18:18.21239598Z + restimestampmock: 2025-11-10T12:18:18.212506208Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-614 +spec: + metadata: + connID: "210" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 90 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='default_addr_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 247 + sequence_id: 6 + values: + - type: 253 + name: id + value: 2a16540a-f916-4b11-b715-7636c0946697 + unsigned: false + - type: 253 + name: username + value: default_addr_user + unsigned: false + - type: 253 + name: email + value: default_addr_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$KsxgWPhrbSWrUTJE$f9435c1ad531231d87ff05271bfddeea09ec1cf012ebe20951cb3c838e945e36ce204f593b8f65156fdd6acbb7142a611cad83040271df6fc81af01b9b5c4194 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777098 + reqtimestampmock: 2025-11-10T12:18:18.212687227Z + restimestampmock: 2025-11-10T12:18:18.213186103Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-615 +spec: + metadata: + connID: "212" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [99, 18, 26, 225, 22, 2, 95, 153, 137, 27, 13, 133, 11, 249, 107, 101, 178, 133, 250, 198, 163, 158, 116, 230, 149, 240, 224, 18, 91, 122, 164, 130] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 224 + auth_plugin_data: [51, 29, 51, 11, 115, 112, 2, 70, 85, 41, 1, 28, 93, 30, 102, 25, 25, 37, 57, 18, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.033631334Z + restimestampmock: 2025-11-10T12:18:19.040418826Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-616 +spec: + metadata: + connID: "212" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.040608304Z + restimestampmock: 2025-11-10T12:18:19.040798103Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-617 +spec: + metadata: + connID: "212" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.040910952Z + restimestampmock: 2025-11-10T12:18:19.04108222Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-618 +spec: + metadata: + connID: "212" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.041202199Z + restimestampmock: 2025-11-10T12:18:19.041301389Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-619 +spec: + metadata: + connID: "212" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='2a16540a-f916-4b11-b715-7636c0946697' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 2a16540a-f916-4b11-b715-7636c0946697 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.041470067Z + restimestampmock: 2025-11-10T12:18:19.041824544Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-620 +spec: + metadata: + connID: "212" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 268 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('d54f10f7-0200-468b-9b9f-e90a9c484959','2a16540a-f916-4b11-b715-7636c0946697','9 Anna Salai',NULL,'Chennai','Tamil Nadu','600002','IN','+919998887776',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.042047382Z + restimestampmock: 2025-11-10T12:18:19.04240539Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-621 +spec: + metadata: + connID: "212" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='2a16540a-f916-4b11-b715-7636c0946697' AND id<>'d54f10f7-0200-468b-9b9f-e90a9c484959' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.042564977Z + restimestampmock: 2025-11-10T12:18:19.042890605Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-622 +spec: + metadata: + connID: "212" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777099 + reqtimestampmock: 2025-11-10T12:18:19.043006094Z + restimestampmock: 2025-11-10T12:18:19.054778624Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-623 +spec: + metadata: + connID: "214" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [198, 221, 16, 71, 131, 92, 223, 129, 56, 2, 43, 14, 238, 34, 90, 164, 142, 151, 182, 158, 163, 163, 5, 34, 6, 72, 106, 115, 36, 131, 107, 238] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 225 + auth_plugin_data: [68, 102, 29, 49, 70, 43, 118, 21, 67, 49, 8, 112, 97, 116, 107, 24, 98, 32, 116, 67, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.616073023Z + restimestampmock: 2025-11-10T12:18:20.62227698Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-624 +spec: + metadata: + connID: "214" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.622415049Z + restimestampmock: 2025-11-10T12:18:20.622599668Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-625 +spec: + metadata: + connID: "214" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.622685937Z + restimestampmock: 2025-11-10T12:18:20.622892815Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-626 +spec: + metadata: + connID: "214" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.623000444Z + restimestampmock: 2025-11-10T12:18:20.623199823Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-627 +spec: + metadata: + connID: "214" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='2a16540a-f916-4b11-b715-7636c0946697' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 2a16540a-f916-4b11-b715-7636c0946697 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.623360481Z + restimestampmock: 2025-11-10T12:18:20.623663028Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-628 +spec: + metadata: + connID: "214" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='2a16540a-f916-4b11-b715-7636c0946697' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.623798258Z + restimestampmock: 2025-11-10T12:18:20.624139194Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-629 +spec: + metadata: + connID: "214" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='2a16540a-f916-4b11-b715-7636c0946697' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.624288764Z + restimestampmock: 2025-11-10T12:18:20.624548012Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-630 +spec: + metadata: + connID: "214" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777100 + reqtimestampmock: 2025-11-10T12:18:20.62464583Z + restimestampmock: 2025-11-10T12:18:20.636693688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-631 +spec: + metadata: + connID: "216" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [194, 1, 188, 227, 222, 106, 46, 25, 238, 134, 239, 100, 145, 182, 99, 2, 58, 227, 229, 8, 166, 159, 29, 28, 166, 197, 229, 76, 61, 97, 131, 216] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 226 + auth_plugin_data: [1, 44, 72, 64, 76, 57, 118, 45, 127, 57, 54, 60, 97, 55, 77, 97, 15, 125, 34, 38, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.006030485Z + restimestampmock: 2025-11-10T12:18:23.012225493Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-632 +spec: + metadata: + connID: "216" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.012370403Z + restimestampmock: 2025-11-10T12:18:23.01261737Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-633 +spec: + metadata: + connID: "216" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.012802418Z + restimestampmock: 2025-11-10T12:18:23.012975757Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-634 +spec: + metadata: + connID: "216" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.013118856Z + restimestampmock: 2025-11-10T12:18:23.013220475Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-635 +spec: + metadata: + connID: "216" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('3afeaa74-af93-4845-a994-2421dfbb9178', 'no_addr_user', 'no_addr_user@example.in', 'scrypt:32768:8:1$x510CVuvrE8pxWbB$58e139cb8a8c6cf0cf8712501355c72160bee1f17c8a8c28d5c8ac993c37320b78a3032016d3140ee55e84560b2dd7e6ba2055683a83aa7c0cdb77030bebd461', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.063260651Z + restimestampmock: 2025-11-10T12:18:23.063652118Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-636 +spec: + metadata: + connID: "216" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.063814455Z + restimestampmock: 2025-11-10T12:18:23.072672731Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-637 +spec: + metadata: + connID: "218" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [143, 54, 60, 15, 181, 251, 5, 121, 46, 183, 212, 29, 127, 16, 84, 18, 230, 59, 195, 139, 46, 217, 103, 30, 98, 31, 217, 80, 112, 54, 35, 213] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 228 + auth_plugin_data: [52, 19, 63, 53, 97, 2, 111, 6, 47, 73, 20, 45, 37, 15, 118, 95, 6, 75, 6, 72, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.769332474Z + restimestampmock: 2025-11-10T12:18:23.775568381Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-638 +spec: + metadata: + connID: "218" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.775770749Z + restimestampmock: 2025-11-10T12:18:23.775965988Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-639 +spec: + metadata: + connID: "218" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.776091577Z + restimestampmock: 2025-11-10T12:18:23.776240725Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-640 +spec: + metadata: + connID: "218" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.776364234Z + restimestampmock: 2025-11-10T12:18:23.776474744Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-641 +spec: + metadata: + connID: "218" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='no_addr_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 3afeaa74-af93-4845-a994-2421dfbb9178 + unsigned: false + - type: 253 + name: username + value: no_addr_user + unsigned: false + - type: 253 + name: email + value: no_addr_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$x510CVuvrE8pxWbB$58e139cb8a8c6cf0cf8712501355c72160bee1f17c8a8c28d5c8ac993c37320b78a3032016d3140ee55e84560b2dd7e6ba2055683a83aa7c0cdb77030bebd461 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777103 + reqtimestampmock: 2025-11-10T12:18:23.776783711Z + restimestampmock: 2025-11-10T12:18:23.777308366Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-642 +spec: + metadata: + connID: "220" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [177, 63, 180, 189, 1, 104, 102, 228, 8, 57, 147, 50, 128, 161, 222, 189, 253, 156, 38, 56, 5, 154, 162, 27, 88, 46, 201, 227, 144, 144, 150, 80] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 229 + auth_plugin_data: [59, 22, 1, 122, 79, 124, 123, 59, 81, 81, 27, 98, 70, 20, 5, 16, 30, 41, 121, 44, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.3032221Z + restimestampmock: 2025-11-10T12:18:25.309226669Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-643 +spec: + metadata: + connID: "220" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.309362008Z + restimestampmock: 2025-11-10T12:18:25.309551406Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-644 +spec: + metadata: + connID: "220" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.309633846Z + restimestampmock: 2025-11-10T12:18:25.309768115Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-645 +spec: + metadata: + connID: "220" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.309869404Z + restimestampmock: 2025-11-10T12:18:25.309988072Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-646 +spec: + metadata: + connID: "220" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='3afeaa74-af93-4845-a994-2421dfbb9178' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 3afeaa74-af93-4845-a994-2421dfbb9178 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.310126861Z + restimestampmock: 2025-11-10T12:18:25.310660236Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-647 +spec: + metadata: + connID: "220" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='3afeaa74-af93-4845-a994-2421dfbb9178' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.310812995Z + restimestampmock: 2025-11-10T12:18:25.311023042Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-648 +spec: + metadata: + connID: "220" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='3afeaa74-af93-4845-a994-2421dfbb9178' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.311123013Z + restimestampmock: 2025-11-10T12:18:25.31143693Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-649 +spec: + metadata: + connID: "220" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777105 + reqtimestampmock: 2025-11-10T12:18:25.311608438Z + restimestampmock: 2025-11-10T12:18:25.323703996Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-650 +spec: + metadata: + connID: "222" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [184, 11, 151, 28, 128, 233, 72, 195, 193, 251, 86, 163, 100, 63, 145, 18, 242, 201, 29, 143, 99, 201, 240, 30, 127, 38, 127, 36, 133, 253, 197, 181] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 231 + auth_plugin_data: [110, 44, 35, 3, 95, 73, 28, 37, 66, 54, 57, 67, 2, 6, 54, 28, 101, 107, 51, 84, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777109 + reqtimestampmock: 2025-11-10T12:18:29.480448162Z + restimestampmock: 2025-11-10T12:18:29.487078845Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-651 +spec: + metadata: + connID: "222" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777109 + reqtimestampmock: 2025-11-10T12:18:29.487249625Z + restimestampmock: 2025-11-10T12:18:29.487445633Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-652 +spec: + metadata: + connID: "222" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777109 + reqtimestampmock: 2025-11-10T12:18:29.487569401Z + restimestampmock: 2025-11-10T12:18:29.487722461Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-653 +spec: + metadata: + connID: "222" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777109 + reqtimestampmock: 2025-11-10T12:18:29.487840689Z + restimestampmock: 2025-11-10T12:18:29.487936129Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-654 +spec: + metadata: + connID: "222" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 347 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('b002b30e-2c02-4c4e-afc6-0f374d902571', 'temp_user_for_auth_get', 'temp_user_for_auth_get@example.in', 'scrypt:32768:8:1$8lEhEPVhNviLrvm7$4edd58e73c1c331a9ad8a188972a39738ba237ddc82287cf79e850eb300f01a893b00fac948650a990bcf125f1d21cedae0b841242a47e9d31bb5b13be9dd846', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777109 + reqtimestampmock: 2025-11-10T12:18:29.537731547Z + restimestampmock: 2025-11-10T12:18:29.538137743Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-655 +spec: + metadata: + connID: "222" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777109 + reqtimestampmock: 2025-11-10T12:18:29.538310702Z + restimestampmock: 2025-11-10T12:18:29.549592487Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-656 +spec: + metadata: + connID: "224" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [191, 138, 119, 204, 52, 62, 138, 207, 111, 94, 65, 175, 40, 225, 248, 187, 45, 55, 204, 179, 24, 221, 154, 173, 16, 230, 201, 0, 164, 87, 172, 174] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 232 + auth_plugin_data: [10, 73, 118, 75, 58, 94, 31, 40, 73, 100, 111, 9, 68, 37, 87, 52, 77, 33, 113, 85, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777110 + reqtimestampmock: 2025-11-10T12:18:30.256584284Z + restimestampmock: 2025-11-10T12:18:30.262953641Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-657 +spec: + metadata: + connID: "224" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777110 + reqtimestampmock: 2025-11-10T12:18:30.26314101Z + restimestampmock: 2025-11-10T12:18:30.263337968Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-658 +spec: + metadata: + connID: "224" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777110 + reqtimestampmock: 2025-11-10T12:18:30.263452137Z + restimestampmock: 2025-11-10T12:18:30.263611755Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-659 +spec: + metadata: + connID: "224" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777110 + reqtimestampmock: 2025-11-10T12:18:30.263697805Z + restimestampmock: 2025-11-10T12:18:30.263811614Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-660 +spec: + metadata: + connID: "224" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 95 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_auth_get' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 257 + sequence_id: 6 + values: + - type: 253 + name: id + value: b002b30e-2c02-4c4e-afc6-0f374d902571 + unsigned: false + - type: 253 + name: username + value: temp_user_for_auth_get + unsigned: false + - type: 253 + name: email + value: temp_user_for_auth_get@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$8lEhEPVhNviLrvm7$4edd58e73c1c331a9ad8a188972a39738ba237ddc82287cf79e850eb300f01a893b00fac948650a990bcf125f1d21cedae0b841242a47e9d31bb5b13be9dd846 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777110 + reqtimestampmock: 2025-11-10T12:18:30.263948792Z + restimestampmock: 2025-11-10T12:18:30.264441409Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-661 +spec: + metadata: + connID: "226" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [158, 196, 186, 146, 234, 177, 75, 86, 177, 68, 97, 142, 66, 222, 181, 28, 50, 218, 225, 232, 174, 178, 222, 242, 163, 125, 20, 10, 228, 44, 16, 29] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 233 + auth_plugin_data: [10, 102, 6, 117, 118, 92, 80, 82, 1, 58, 100, 42, 34, 98, 46, 60, 1, 70, 35, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.827500613Z + restimestampmock: 2025-11-10T12:18:31.833938479Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-662 +spec: + metadata: + connID: "226" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.834110748Z + restimestampmock: 2025-11-10T12:18:31.834307616Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-663 +spec: + metadata: + connID: "226" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.834418434Z + restimestampmock: 2025-11-10T12:18:31.834621963Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-664 +spec: + metadata: + connID: "226" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.834728992Z + restimestampmock: 2025-11-10T12:18:31.83487276Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-665 +spec: + metadata: + connID: "226" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='b002b30e-2c02-4c4e-afc6-0f374d902571' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: b002b30e-2c02-4c4e-afc6-0f374d902571 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.835206448Z + restimestampmock: 2025-11-10T12:18:31.835584896Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-666 +spec: + metadata: + connID: "226" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='b002b30e-2c02-4c4e-afc6-0f374d902571' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.835736104Z + restimestampmock: 2025-11-10T12:18:31.835988452Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-667 +spec: + metadata: + connID: "226" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='b002b30e-2c02-4c4e-afc6-0f374d902571' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.8361824Z + restimestampmock: 2025-11-10T12:18:31.836510637Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-668 +spec: + metadata: + connID: "226" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777111 + reqtimestampmock: 2025-11-10T12:18:31.836613067Z + restimestampmock: 2025-11-10T12:18:31.848603485Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-669 +spec: + metadata: + connID: "228" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [67, 108, 251, 39, 183, 133, 23, 22, 225, 124, 165, 204, 141, 61, 128, 92, 157, 166, 200, 216, 149, 83, 186, 112, 44, 214, 93, 209, 86, 101, 206, 191] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 234 + auth_plugin_data: [125, 118, 46, 95, 117, 30, 73, 55, 102, 39, 67, 60, 65, 92, 114, 26, 104, 101, 60, 92, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777112 + reqtimestampmock: 2025-11-10T12:18:32.658647071Z + restimestampmock: 2025-11-10T12:18:32.664692711Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-670 +spec: + metadata: + connID: "228" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777112 + reqtimestampmock: 2025-11-10T12:18:32.664868008Z + restimestampmock: 2025-11-10T12:18:32.665043717Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-671 +spec: + metadata: + connID: "228" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777112 + reqtimestampmock: 2025-11-10T12:18:32.665161827Z + restimestampmock: 2025-11-10T12:18:32.665280965Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-672 +spec: + metadata: + connID: "228" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777112 + reqtimestampmock: 2025-11-10T12:18:32.665382154Z + restimestampmock: 2025-11-10T12:18:32.665502123Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-673 +spec: + metadata: + connID: "228" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 347 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('595b6f58-990a-47b2-8245-e03d98d9a2df', 'temp_user_for_auth_pay', 'temp_user_for_auth_pay@example.in', 'scrypt:32768:8:1$ltmBGA5YA1bh5T8G$165b0b6a3f96bb4a150aba16aaae043b56cb7f56bb99d27668d25068d4b5962e9f9ba99670cc96f2d6dc085ccf533fe4342463a28875b84b09fec3d2236dfda0', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777112 + reqtimestampmock: 2025-11-10T12:18:32.714403718Z + restimestampmock: 2025-11-10T12:18:32.714883765Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-674 +spec: + metadata: + connID: "228" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777112 + reqtimestampmock: 2025-11-10T12:18:32.715023723Z + restimestampmock: 2025-11-10T12:18:32.726687164Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-675 +spec: + metadata: + connID: "230" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [125, 129, 161, 157, 65, 230, 244, 158, 153, 40, 242, 208, 82, 13, 81, 192, 132, 91, 8, 87, 197, 195, 113, 99, 190, 109, 225, 68, 67, 118, 10, 72] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 236 + auth_plugin_data: [96, 107, 87, 37, 106, 7, 55, 106, 84, 21, 12, 94, 16, 48, 67, 80, 113, 56, 116, 103, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777113 + reqtimestampmock: 2025-11-10T12:18:33.409305832Z + restimestampmock: 2025-11-10T12:18:33.41770111Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-676 +spec: + metadata: + connID: "230" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777113 + reqtimestampmock: 2025-11-10T12:18:33.417846049Z + restimestampmock: 2025-11-10T12:18:33.418042048Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-677 +spec: + metadata: + connID: "230" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777113 + reqtimestampmock: 2025-11-10T12:18:33.418136287Z + restimestampmock: 2025-11-10T12:18:33.418294946Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-678 +spec: + metadata: + connID: "230" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777113 + reqtimestampmock: 2025-11-10T12:18:33.418390315Z + restimestampmock: 2025-11-10T12:18:33.418503914Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-679 +spec: + metadata: + connID: "230" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 95 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_auth_pay' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 257 + sequence_id: 6 + values: + - type: 253 + name: id + value: 595b6f58-990a-47b2-8245-e03d98d9a2df + unsigned: false + - type: 253 + name: username + value: temp_user_for_auth_pay + unsigned: false + - type: 253 + name: email + value: temp_user_for_auth_pay@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$ltmBGA5YA1bh5T8G$165b0b6a3f96bb4a150aba16aaae043b56cb7f56bb99d27668d25068d4b5962e9f9ba99670cc96f2d6dc085ccf533fe4342463a28875b84b09fec3d2236dfda0 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777113 + reqtimestampmock: 2025-11-10T12:18:33.418677542Z + restimestampmock: 2025-11-10T12:18:33.419162548Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-680 +spec: + metadata: + connID: "232" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [130, 223, 185, 147, 180, 117, 10, 247, 188, 125, 21, 67, 147, 175, 77, 178, 99, 237, 250, 222, 166, 138, 171, 1, 127, 216, 42, 169, 133, 204, 47, 169] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 237 + auth_plugin_data: [87, 17, 127, 75, 109, 92, 113, 16, 85, 75, 1, 89, 8, 85, 32, 51, 7, 120, 57, 104, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.977346278Z + restimestampmock: 2025-11-10T12:18:34.983911543Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-681 +spec: + metadata: + connID: "232" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.984045111Z + restimestampmock: 2025-11-10T12:18:34.98425538Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-682 +spec: + metadata: + connID: "232" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.984482807Z + restimestampmock: 2025-11-10T12:18:34.984536047Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-683 +spec: + metadata: + connID: "232" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.984630806Z + restimestampmock: 2025-11-10T12:18:34.984750505Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-684 +spec: + metadata: + connID: "232" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='595b6f58-990a-47b2-8245-e03d98d9a2df' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 595b6f58-990a-47b2-8245-e03d98d9a2df + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.984909434Z + restimestampmock: 2025-11-10T12:18:34.985262811Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-685 +spec: + metadata: + connID: "232" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='595b6f58-990a-47b2-8245-e03d98d9a2df' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.98542345Z + restimestampmock: 2025-11-10T12:18:34.985644398Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-686 +spec: + metadata: + connID: "232" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='595b6f58-990a-47b2-8245-e03d98d9a2df' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.985791866Z + restimestampmock: 2025-11-10T12:18:34.986111213Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-687 +spec: + metadata: + connID: "232" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777114 + reqtimestampmock: 2025-11-10T12:18:34.986209932Z + restimestampmock: 2025-11-10T12:18:34.994457622Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-688 +spec: + metadata: + connID: "234" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [175, 254, 214, 30, 61, 133, 172, 124, 63, 43, 105, 226, 209, 123, 11, 6, 230, 14, 84, 110, 37, 6, 23, 61, 215, 79, 90, 21, 114, 118, 183, 33] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 238 + auth_plugin_data: [120, 71, 53, 39, 81, 15, 29, 81, 106, 60, 55, 5, 46, 26, 126, 21, 22, 19, 20, 79, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777115 + reqtimestampmock: 2025-11-10T12:18:35.799602562Z + restimestampmock: 2025-11-10T12:18:35.805683482Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-689 +spec: + metadata: + connID: "234" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777115 + reqtimestampmock: 2025-11-10T12:18:35.80582575Z + restimestampmock: 2025-11-10T12:18:35.805995348Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-690 +spec: + metadata: + connID: "234" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777115 + reqtimestampmock: 2025-11-10T12:18:35.806109278Z + restimestampmock: 2025-11-10T12:18:35.806271617Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-691 +spec: + metadata: + connID: "234" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777115 + reqtimestampmock: 2025-11-10T12:18:35.806371216Z + restimestampmock: 2025-11-10T12:18:35.806466735Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-692 +spec: + metadata: + connID: "234" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 353 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('54158f89-4d6f-4b9e-a7f1-10ac725e2da5', 'temp_user_for_auth_cancel', 'temp_user_for_auth_cancel@example.in', 'scrypt:32768:8:1$xi2pUASbDaMTAZCz$1bb272cd8b8f4a2c84757ac5a7d53b7c02305e00ecae176285beb46d43d8a7dbca71aabfd0ef400107e37bdbc7b86961797eb1dea2ea06370e9a4cf5038ae3b9', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777115 + reqtimestampmock: 2025-11-10T12:18:35.85657145Z + restimestampmock: 2025-11-10T12:18:35.856975357Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-693 +spec: + metadata: + connID: "234" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777115 + reqtimestampmock: 2025-11-10T12:18:35.857092696Z + restimestampmock: 2025-11-10T12:18:35.865960181Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-694 +spec: + metadata: + connID: "236" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [122, 184, 212, 96, 43, 237, 200, 217, 198, 100, 165, 222, 69, 61, 159, 229, 232, 150, 66, 128, 26, 172, 218, 208, 8, 225, 137, 163, 199, 250, 151, 12] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 239 + auth_plugin_data: [67, 109, 8, 6, 13, 51, 89, 84, 60, 13, 37, 81, 4, 108, 122, 13, 121, 73, 28, 51, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777116 + reqtimestampmock: 2025-11-10T12:18:36.560206531Z + restimestampmock: 2025-11-10T12:18:36.566278569Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-695 +spec: + metadata: + connID: "236" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777116 + reqtimestampmock: 2025-11-10T12:18:36.566473968Z + restimestampmock: 2025-11-10T12:18:36.566654826Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-696 +spec: + metadata: + connID: "236" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777116 + reqtimestampmock: 2025-11-10T12:18:36.566776285Z + restimestampmock: 2025-11-10T12:18:36.566901503Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-697 +spec: + metadata: + connID: "236" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777116 + reqtimestampmock: 2025-11-10T12:18:36.567008343Z + restimestampmock: 2025-11-10T12:18:36.567134662Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-698 +spec: + metadata: + connID: "236" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 98 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_auth_cancel' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 263 + sequence_id: 6 + values: + - type: 253 + name: id + value: 54158f89-4d6f-4b9e-a7f1-10ac725e2da5 + unsigned: false + - type: 253 + name: username + value: temp_user_for_auth_cancel + unsigned: false + - type: 253 + name: email + value: temp_user_for_auth_cancel@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$xi2pUASbDaMTAZCz$1bb272cd8b8f4a2c84757ac5a7d53b7c02305e00ecae176285beb46d43d8a7dbca71aabfd0ef400107e37bdbc7b86961797eb1dea2ea06370e9a4cf5038ae3b9 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777116 + reqtimestampmock: 2025-11-10T12:18:36.567365211Z + restimestampmock: 2025-11-10T12:18:36.567783536Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-699 +spec: + metadata: + connID: "238" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [62, 115, 80, 150, 161, 126, 9, 122, 13, 52, 148, 50, 227, 63, 20, 184, 30, 181, 252, 233, 195, 111, 167, 204, 12, 103, 26, 96, 36, 165, 15, 24] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 240 + auth_plugin_data: [34, 64, 16, 105, 26, 92, 64, 85, 43, 117, 54, 51, 126, 35, 44, 99, 89, 124, 112, 37, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.121054562Z + restimestampmock: 2025-11-10T12:18:38.127605586Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-700 +spec: + metadata: + connID: "238" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.127777804Z + restimestampmock: 2025-11-10T12:18:38.127976402Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-701 +spec: + metadata: + connID: "238" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.128145201Z + restimestampmock: 2025-11-10T12:18:38.12841195Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-702 +spec: + metadata: + connID: "238" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.128534798Z + restimestampmock: 2025-11-10T12:18:38.128671097Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-703 +spec: + metadata: + connID: "238" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='54158f89-4d6f-4b9e-a7f1-10ac725e2da5' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 54158f89-4d6f-4b9e-a7f1-10ac725e2da5 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.128851235Z + restimestampmock: 2025-11-10T12:18:38.129281972Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-704 +spec: + metadata: + connID: "238" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='54158f89-4d6f-4b9e-a7f1-10ac725e2da5' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.129386761Z + restimestampmock: 2025-11-10T12:18:38.129655059Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-705 +spec: + metadata: + connID: "238" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='54158f89-4d6f-4b9e-a7f1-10ac725e2da5' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.129777798Z + restimestampmock: 2025-11-10T12:18:38.130082944Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-706 +spec: + metadata: + connID: "238" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777118 + reqtimestampmock: 2025-11-10T12:18:38.130208903Z + restimestampmock: 2025-11-10T12:18:38.139593214Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-707 +spec: + metadata: + connID: "240" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [161, 102, 216, 139, 161, 15, 215, 5, 78, 2, 97, 31, 201, 38, 114, 178, 158, 145, 37, 105, 183, 63, 113, 93, 62, 1, 75, 216, 184, 226, 171, 69] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 242 + auth_plugin_data: [58, 12, 108, 56, 61, 67, 50, 111, 24, 79, 92, 103, 27, 120, 98, 126, 80, 59, 5, 15, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777121 + reqtimestampmock: 2025-11-10T12:18:41.369811943Z + restimestampmock: 2025-11-10T12:18:41.376123829Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-708 +spec: + metadata: + connID: "240" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777121 + reqtimestampmock: 2025-11-10T12:18:41.376316587Z + restimestampmock: 2025-11-10T12:18:41.376469346Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-709 +spec: + metadata: + connID: "240" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777121 + reqtimestampmock: 2025-11-10T12:18:41.376580735Z + restimestampmock: 2025-11-10T12:18:41.376786443Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-710 +spec: + metadata: + connID: "240" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777121 + reqtimestampmock: 2025-11-10T12:18:41.376886202Z + restimestampmock: 2025-11-10T12:18:41.377005241Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-711 +spec: + metadata: + connID: "240" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('3aa6b50d-82a0-45d8-b37c-d82fa83742fb', 'noauth_addr_user', 'noauth_addr_user@example.in', 'scrypt:32768:8:1$zZvZ0yXCF3IEidSS$9729b3c2b295af116f4b94a5d9b1e7ca80a340d8f69f400a45d0e89f90669f3fd4bee2da30263e9f940a4a8b6a9b43da8cf69ab1f50a32dd2ee878996bc183f3', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777121 + reqtimestampmock: 2025-11-10T12:18:41.424645207Z + restimestampmock: 2025-11-10T12:18:41.425061884Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-712 +spec: + metadata: + connID: "240" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777121 + reqtimestampmock: 2025-11-10T12:18:41.425224123Z + restimestampmock: 2025-11-10T12:18:41.434569224Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-713 +spec: + metadata: + connID: "242" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [170, 253, 81, 22, 122, 159, 88, 239, 102, 246, 132, 165, 114, 106, 95, 34, 219, 184, 219, 91, 197, 17, 121, 35, 210, 127, 51, 189, 103, 76, 179, 220] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 243 + auth_plugin_data: [42, 72, 76, 27, 22, 108, 31, 48, 26, 114, 110, 41, 66, 125, 111, 35, 95, 39, 70, 73, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.218167579Z + restimestampmock: 2025-11-10T12:18:42.224348167Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-714 +spec: + metadata: + connID: "242" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.224490246Z + restimestampmock: 2025-11-10T12:18:42.224715375Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-715 +spec: + metadata: + connID: "242" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.224826233Z + restimestampmock: 2025-11-10T12:18:42.224973562Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-716 +spec: + metadata: + connID: "242" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.225123931Z + restimestampmock: 2025-11-10T12:18:42.22523748Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-717 +spec: + metadata: + connID: "242" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='3aa6b50d-82a0-45d8-b37c-d82fa83742fb' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 3aa6b50d-82a0-45d8-b37c-d82fa83742fb + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.225470678Z + restimestampmock: 2025-11-10T12:18:42.225832265Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-718 +spec: + metadata: + connID: "242" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 268 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('8cd8a687-17ae-433c-9822-068378f0076f','3aa6b50d-82a0-45d8-b37c-d82fa83742fb','123 MG Road',NULL,'Bengaluru','Karnataka','560001','IN','+919876543210',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.226055003Z + restimestampmock: 2025-11-10T12:18:42.226759417Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-719 +spec: + metadata: + connID: "242" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='3aa6b50d-82a0-45d8-b37c-d82fa83742fb' AND id<>'8cd8a687-17ae-433c-9822-068378f0076f' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.226928425Z + restimestampmock: 2025-11-10T12:18:42.227206764Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-720 +spec: + metadata: + connID: "242" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.227327062Z + restimestampmock: 2025-11-10T12:18:42.236547934Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-721 +spec: + metadata: + connID: "244" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [97, 251, 179, 120, 163, 65, 44, 249, 207, 186, 84, 226, 238, 127, 200, 224, 58, 87, 14, 223, 115, 86, 112, 145, 242, 55, 162, 145, 243, 102, 118, 113] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 244 + auth_plugin_data: [10, 98, 103, 68, 100, 37, 97, 49, 58, 116, 107, 93, 67, 71, 11, 68, 34, 84, 18, 48, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.947252367Z + restimestampmock: 2025-11-10T12:18:42.953424085Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-722 +spec: + metadata: + connID: "244" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.953589233Z + restimestampmock: 2025-11-10T12:18:42.953772562Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-723 +spec: + metadata: + connID: "244" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.953889941Z + restimestampmock: 2025-11-10T12:18:42.95403592Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-724 +spec: + metadata: + connID: "244" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.954127629Z + restimestampmock: 2025-11-10T12:18:42.954277558Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-725 +spec: + metadata: + connID: "244" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='noauth_addr_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 3aa6b50d-82a0-45d8-b37c-d82fa83742fb + unsigned: false + - type: 253 + name: username + value: noauth_addr_user + unsigned: false + - type: 253 + name: email + value: noauth_addr_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$zZvZ0yXCF3IEidSS$9729b3c2b295af116f4b94a5d9b1e7ca80a340d8f69f400a45d0e89f90669f3fd4bee2da30263e9f940a4a8b6a9b43da8cf69ab1f50a32dd2ee878996bc183f3 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777122 + reqtimestampmock: 2025-11-10T12:18:42.954451187Z + restimestampmock: 2025-11-10T12:18:42.954951113Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-726 +spec: + metadata: + connID: "246" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [33, 120, 7, 155, 193, 53, 151, 198, 200, 23, 82, 161, 163, 28, 168, 206, 202, 91, 251, 150, 220, 16, 202, 127, 70, 52, 118, 241, 37, 164, 12, 118] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 246 + auth_plugin_data: [37, 29, 20, 111, 39, 55, 106, 69, 107, 17, 89, 86, 102, 99, 120, 106, 82, 68, 75, 97, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.68874593Z + restimestampmock: 2025-11-10T12:18:43.697971312Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-727 +spec: + metadata: + connID: "246" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.698122101Z + restimestampmock: 2025-11-10T12:18:43.698324739Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-728 +spec: + metadata: + connID: "246" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.698437658Z + restimestampmock: 2025-11-10T12:18:43.698588537Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-729 +spec: + metadata: + connID: "246" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.698690576Z + restimestampmock: 2025-11-10T12:18:43.698789466Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-730 +spec: + metadata: + connID: "246" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='3aa6b50d-82a0-45d8-b37c-d82fa83742fb' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 3aa6b50d-82a0-45d8-b37c-d82fa83742fb + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.698951014Z + restimestampmock: 2025-11-10T12:18:43.699320581Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-731 +spec: + metadata: + connID: "246" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='3aa6b50d-82a0-45d8-b37c-d82fa83742fb' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.699456789Z + restimestampmock: 2025-11-10T12:18:43.699823106Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-732 +spec: + metadata: + connID: "246" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='3aa6b50d-82a0-45d8-b37c-d82fa83742fb' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.699953145Z + restimestampmock: 2025-11-10T12:18:43.700239993Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-733 +spec: + metadata: + connID: "246" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777123 + reqtimestampmock: 2025-11-10T12:18:43.700336372Z + restimestampmock: 2025-11-10T12:18:43.713518821Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-734 +spec: + metadata: + connID: "248" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [18, 30, 170, 54, 62, 212, 64, 254, 230, 150, 26, 247, 31, 72, 88, 173, 3, 166, 8, 124, 24, 217, 100, 112, 42, 42, 240, 198, 198, 92, 6, 205] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 247 + auth_plugin_data: [80, 59, 32, 46, 14, 50, 103, 64, 21, 72, 54, 104, 123, 19, 24, 78, 87, 82, 3, 81, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777125 + reqtimestampmock: 2025-11-10T12:18:45.611620754Z + restimestampmock: 2025-11-10T12:18:45.618244947Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-735 +spec: + metadata: + connID: "248" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777125 + reqtimestampmock: 2025-11-10T12:18:45.618410017Z + restimestampmock: 2025-11-10T12:18:45.618594515Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-736 +spec: + metadata: + connID: "248" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777125 + reqtimestampmock: 2025-11-10T12:18:45.618688844Z + restimestampmock: 2025-11-10T12:18:45.618834473Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-737 +spec: + metadata: + connID: "248" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777125 + reqtimestampmock: 2025-11-10T12:18:45.618945982Z + restimestampmock: 2025-11-10T12:18:45.619000721Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-738 +spec: + metadata: + connID: "248" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6', 'noauth_list_addr', 'noauth_list_addr@example.in', 'scrypt:32768:8:1$pnh4J4uEBP3I5Nar$edb4262cb1fb36f1434d22f0eba4e1df2b545dccec0dbac53f91db295b5eae9b5fbcf0eeecde60133243468ff3bf8b72410a4137e801aa0b32c2dccedfccccca', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777125 + reqtimestampmock: 2025-11-10T12:18:45.668434023Z + restimestampmock: 2025-11-10T12:18:45.66883237Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-739 +spec: + metadata: + connID: "248" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777125 + reqtimestampmock: 2025-11-10T12:18:45.668958379Z + restimestampmock: 2025-11-10T12:18:45.680616651Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-740 +spec: + metadata: + connID: "250" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [165, 248, 46, 36, 185, 232, 188, 38, 198, 133, 67, 221, 164, 99, 91, 0, 97, 127, 194, 25, 187, 124, 47, 127, 140, 101, 164, 164, 44, 176, 117, 162] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 248 + auth_plugin_data: [60, 20, 61, 3, 48, 109, 61, 25, 91, 62, 11, 58, 37, 64, 48, 14, 6, 109, 81, 1, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777126 + reqtimestampmock: 2025-11-10T12:18:46.410607681Z + restimestampmock: 2025-11-10T12:18:46.416583241Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-741 +spec: + metadata: + connID: "250" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777126 + reqtimestampmock: 2025-11-10T12:18:46.41674412Z + restimestampmock: 2025-11-10T12:18:46.416921048Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-742 +spec: + metadata: + connID: "250" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777126 + reqtimestampmock: 2025-11-10T12:18:46.417018948Z + restimestampmock: 2025-11-10T12:18:46.417166556Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-743 +spec: + metadata: + connID: "250" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777126 + reqtimestampmock: 2025-11-10T12:18:46.417260785Z + restimestampmock: 2025-11-10T12:18:46.417359995Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-744 +spec: + metadata: + connID: "250" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777126 + reqtimestampmock: 2025-11-10T12:18:46.417540233Z + restimestampmock: 2025-11-10T12:18:46.417917189Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-745 +spec: + metadata: + connID: "250" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 11 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777126 + reqtimestampmock: 2025-11-10T12:18:46.418054289Z + restimestampmock: 2025-11-10T12:18:46.418657384Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-746 +spec: + metadata: + connID: "252" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [210, 51, 22, 172, 149, 204, 202, 203, 18, 13, 241, 190, 31, 32, 20, 223, 21, 253, 104, 143, 61, 159, 125, 83, 188, 138, 114, 31, 64, 204, 251, 119] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 249 + auth_plugin_data: [4, 72, 120, 105, 113, 117, 39, 42, 50, 20, 25, 26, 110, 111, 124, 110, 126, 22, 127, 69, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.14587429Z + restimestampmock: 2025-11-10T12:18:47.152362265Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-747 +spec: + metadata: + connID: "252" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.152579863Z + restimestampmock: 2025-11-10T12:18:47.152751982Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-748 +spec: + metadata: + connID: "252" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.152870271Z + restimestampmock: 2025-11-10T12:18:47.153137198Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-749 +spec: + metadata: + connID: "252" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.153245668Z + restimestampmock: 2025-11-10T12:18:47.153350747Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-750 +spec: + metadata: + connID: "252" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='noauth_list_addr' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6 + unsigned: false + - type: 253 + name: username + value: noauth_list_addr + unsigned: false + - type: 253 + name: email + value: noauth_list_addr@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$pnh4J4uEBP3I5Nar$edb4262cb1fb36f1434d22f0eba4e1df2b545dccec0dbac53f91db295b5eae9b5fbcf0eeecde60133243468ff3bf8b72410a4137e801aa0b32c2dccedfccccca + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.153522875Z + restimestampmock: 2025-11-10T12:18:47.153950401Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-751 +spec: + metadata: + connID: "254" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [214, 31, 153, 16, 187, 181, 233, 85, 234, 51, 211, 31, 244, 45, 141, 124, 106, 96, 159, 156, 136, 64, 122, 107, 39, 95, 236, 198, 118, 144, 107, 233] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 250 + auth_plugin_data: [121, 30, 112, 100, 12, 20, 54, 91, 61, 70, 60, 37, 44, 67, 96, 67, 73, 63, 58, 73, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.972105707Z + restimestampmock: 2025-11-10T12:18:47.978461703Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-752 +spec: + metadata: + connID: "254" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.978619432Z + restimestampmock: 2025-11-10T12:18:47.97879591Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-753 +spec: + metadata: + connID: "254" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.97891348Z + restimestampmock: 2025-11-10T12:18:47.979081138Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-754 +spec: + metadata: + connID: "254" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.979198427Z + restimestampmock: 2025-11-10T12:18:47.979311596Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-755 +spec: + metadata: + connID: "254" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.979497525Z + restimestampmock: 2025-11-10T12:18:47.979819422Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-756 +spec: + metadata: + connID: "254" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.98001008Z + restimestampmock: 2025-11-10T12:18:47.980358778Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-757 +spec: + metadata: + connID: "254" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.980493417Z + restimestampmock: 2025-11-10T12:18:47.980841104Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-758 +spec: + metadata: + connID: "254" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777127 + reqtimestampmock: 2025-11-10T12:18:47.980954063Z + restimestampmock: 2025-11-10T12:18:47.990503462Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-759 +spec: + metadata: + connID: "256" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [147, 168, 231, 199, 153, 245, 67, 222, 224, 253, 154, 37, 119, 84, 65, 246, 142, 88, 92, 187, 33, 184, 133, 165, 60, 117, 56, 19, 65, 168, 233, 133] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 256 + auth_plugin_data: [73, 83, 53, 3, 69, 42, 24, 40, 66, 33, 107, 83, 101, 78, 72, 100, 42, 70, 106, 44, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777149 + reqtimestampmock: 2025-11-10T12:19:09.882621643Z + restimestampmock: 2025-11-10T12:19:09.889586935Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-760 +spec: + metadata: + connID: "256" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777149 + reqtimestampmock: 2025-11-10T12:19:09.889770673Z + restimestampmock: 2025-11-10T12:19:09.889931732Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-761 +spec: + metadata: + connID: "256" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777149 + reqtimestampmock: 2025-11-10T12:19:09.89003903Z + restimestampmock: 2025-11-10T12:19:09.89018929Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-762 +spec: + metadata: + connID: "256" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777149 + reqtimestampmock: 2025-11-10T12:19:09.890307289Z + restimestampmock: 2025-11-10T12:19:09.890412697Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-763 +spec: + metadata: + connID: "256" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('3363bd32-cba3-4bb9-b6b9-3257a46415fa', 'rahul_mumbai', 'rahul_mumbai@example.in', 'scrypt:32768:8:1$QfLqQ8J2sb9hRlXa$2686e11caf52fbb25fc475fb7c85337ae8017c6e279cb2aa37d0ef9f1b3668b0134536a1299cfbe4da11b9e8f17d1aecb78db0eaf8759e93dbde69623e0e327a', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777149 + reqtimestampmock: 2025-11-10T12:19:09.940253646Z + restimestampmock: 2025-11-10T12:19:09.940726862Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-764 +spec: + metadata: + connID: "256" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777149 + reqtimestampmock: 2025-11-10T12:19:09.940906491Z + restimestampmock: 2025-11-10T12:19:09.953287486Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-765 +spec: + metadata: + connID: "258" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [8, 93, 98, 58, 158, 105, 106, 226, 43, 238, 78, 126, 119, 75, 43, 108, 128, 251, 128, 163, 135, 199, 33, 174, 31, 248, 80, 101, 95, 206, 25, 214] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 257 + auth_plugin_data: [34, 17, 1, 90, 53, 37, 105, 127, 121, 79, 37, 58, 119, 123, 33, 102, 90, 12, 109, 37, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777150 + reqtimestampmock: 2025-11-10T12:19:10.63587111Z + restimestampmock: 2025-11-10T12:19:10.642014608Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-766 +spec: + metadata: + connID: "258" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777150 + reqtimestampmock: 2025-11-10T12:19:10.642245536Z + restimestampmock: 2025-11-10T12:19:10.642424124Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-767 +spec: + metadata: + connID: "258" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777150 + reqtimestampmock: 2025-11-10T12:19:10.642530174Z + restimestampmock: 2025-11-10T12:19:10.64286458Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-768 +spec: + metadata: + connID: "258" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777150 + reqtimestampmock: 2025-11-10T12:19:10.642977919Z + restimestampmock: 2025-11-10T12:19:10.64299461Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-769 +spec: + metadata: + connID: "258" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='rahul_mumbai' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 3363bd32-cba3-4bb9-b6b9-3257a46415fa + unsigned: false + - type: 253 + name: username + value: rahul_mumbai + unsigned: false + - type: 253 + name: email + value: rahul_mumbai@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$QfLqQ8J2sb9hRlXa$2686e11caf52fbb25fc475fb7c85337ae8017c6e279cb2aa37d0ef9f1b3668b0134536a1299cfbe4da11b9e8f17d1aecb78db0eaf8759e93dbde69623e0e327a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777150 + reqtimestampmock: 2025-11-10T12:19:10.643183257Z + restimestampmock: 2025-11-10T12:19:10.643614054Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-770 +spec: + metadata: + connID: "260" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [201, 227, 190, 163, 145, 13, 125, 225, 93, 247, 237, 70, 113, 236, 156, 82, 52, 6, 128, 232, 144, 233, 124, 183, 110, 22, 151, 48, 237, 196, 208, 151] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 258 + auth_plugin_data: [39, 58, 68, 38, 113, 73, 101, 90, 4, 56, 85, 113, 96, 103, 70, 119, 118, 59, 8, 12, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.456286169Z + restimestampmock: 2025-11-10T12:19:11.462445736Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-771 +spec: + metadata: + connID: "260" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.462626365Z + restimestampmock: 2025-11-10T12:19:11.462838852Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-772 +spec: + metadata: + connID: "260" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.462958202Z + restimestampmock: 2025-11-10T12:19:11.46320139Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-773 +spec: + metadata: + connID: "260" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.463373968Z + restimestampmock: 2025-11-10T12:19:11.463480108Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-774 +spec: + metadata: + connID: "260" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='3363bd32-cba3-4bb9-b6b9-3257a46415fa' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 3363bd32-cba3-4bb9-b6b9-3257a46415fa + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.463666427Z + restimestampmock: 2025-11-10T12:19:11.464035754Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-775 +spec: + metadata: + connID: "260" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 271 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('b1a0dd95-5f84-435b-a6ee-59dfe1aa6155','3363bd32-cba3-4bb9-b6b9-3257a46415fa','101 Bandra West',NULL,'Mumbai','Maharashtra','400050','IN','+919820098200',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.464215321Z + restimestampmock: 2025-11-10T12:19:11.464574208Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-776 +spec: + metadata: + connID: "260" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='3363bd32-cba3-4bb9-b6b9-3257a46415fa' AND id<>'b1a0dd95-5f84-435b-a6ee-59dfe1aa6155' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.464719187Z + restimestampmock: 2025-11-10T12:19:11.464944886Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-777 +spec: + metadata: + connID: "260" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777151 + reqtimestampmock: 2025-11-10T12:19:11.465075633Z + restimestampmock: 2025-11-10T12:19:11.477194672Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-778 +spec: + metadata: + connID: "262" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [88, 115, 40, 75, 199, 177, 205, 182, 47, 162, 194, 29, 6, 31, 99, 171, 185, 171, 123, 106, 174, 114, 91, 120, 120, 237, 40, 190, 27, 182, 81, 238] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 259 + auth_plugin_data: [47, 7, 88, 12, 121, 34, 119, 62, 2, 31, 17, 5, 120, 61, 120, 93, 46, 39, 79, 103, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777152 + reqtimestampmock: 2025-11-10T12:19:12.204137661Z + restimestampmock: 2025-11-10T12:19:12.210028412Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-779 +spec: + metadata: + connID: "262" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777152 + reqtimestampmock: 2025-11-10T12:19:12.21020825Z + restimestampmock: 2025-11-10T12:19:12.210384048Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-780 +spec: + metadata: + connID: "262" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777152 + reqtimestampmock: 2025-11-10T12:19:12.210501577Z + restimestampmock: 2025-11-10T12:19:12.210658676Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-781 +spec: + metadata: + connID: "262" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777152 + reqtimestampmock: 2025-11-10T12:19:12.210768665Z + restimestampmock: 2025-11-10T12:19:12.210857204Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-782 +spec: + metadata: + connID: "262" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='3363bd32-cba3-4bb9-b6b9-3257a46415fa' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 3363bd32-cba3-4bb9-b6b9-3257a46415fa + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777152 + reqtimestampmock: 2025-11-10T12:19:12.211030923Z + restimestampmock: 2025-11-10T12:19:12.21138379Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-783 +spec: + metadata: + connID: "262" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='3363bd32-cba3-4bb9-b6b9-3257a46415fa' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 99 + sequence_id: 11 + values: + - type: 253 + name: id + value: b1a0dd95-5f84-435b-a6ee-59dfe1aa6155 + unsigned: false + - type: 253 + name: line1 + value: 101 Bandra West + unsigned: false + - type: 253 + name: line2 + value: null + unsigned: false + - type: 253 + name: city + value: Mumbai + unsigned: false + - type: 253 + name: state + value: Maharashtra + unsigned: false + - type: 253 + name: postal_code + value: "400050" + unsigned: false + - type: 253 + name: country + value: IN + unsigned: false + - type: 253 + name: phone + value: "+919820098200" + unsigned: false + - type: 1 + name: is_default + value: "1" + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 12 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777152 + reqtimestampmock: 2025-11-10T12:19:12.211535098Z + restimestampmock: 2025-11-10T12:19:12.212085264Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-784 +spec: + metadata: + connID: "264" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [169, 149, 221, 15, 43, 196, 241, 232, 22, 227, 157, 71, 153, 251, 176, 175, 132, 36, 43, 149, 253, 211, 187, 127, 46, 82, 138, 27, 212, 19, 171, 254] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 260 + auth_plugin_data: [59, 110, 100, 37, 102, 68, 126, 123, 16, 62, 65, 57, 59, 48, 109, 109, 112, 95, 90, 122, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.029817386Z + restimestampmock: 2025-11-10T12:19:13.036122983Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-785 +spec: + metadata: + connID: "264" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.03632188Z + restimestampmock: 2025-11-10T12:19:13.03653402Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-786 +spec: + metadata: + connID: "264" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.036669069Z + restimestampmock: 2025-11-10T12:19:13.036836596Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-787 +spec: + metadata: + connID: "264" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.037003216Z + restimestampmock: 2025-11-10T12:19:13.03758532Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-788 +spec: + metadata: + connID: "264" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='3363bd32-cba3-4bb9-b6b9-3257a46415fa' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 3363bd32-cba3-4bb9-b6b9-3257a46415fa + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.03762581Z + restimestampmock: 2025-11-10T12:19:13.037989167Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-789 +spec: + metadata: + connID: "264" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='3363bd32-cba3-4bb9-b6b9-3257a46415fa' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.038191055Z + restimestampmock: 2025-11-10T12:19:13.038597682Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-790 +spec: + metadata: + connID: "264" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='3363bd32-cba3-4bb9-b6b9-3257a46415fa' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.03872487Z + restimestampmock: 2025-11-10T12:19:13.038972289Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-791 +spec: + metadata: + connID: "264" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777153 + reqtimestampmock: 2025-11-10T12:19:13.039103497Z + restimestampmock: 2025-11-10T12:19:13.052219967Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-792 +spec: + metadata: + connID: "266" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [69, 140, 213, 183, 49, 38, 25, 100, 186, 61, 226, 227, 112, 50, 6, 237, 245, 170, 106, 182, 32, 108, 103, 252, 147, 183, 87, 10, 103, 184, 186, 96] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 262 + auth_plugin_data: [40, 121, 106, 47, 104, 37, 25, 1, 32, 107, 1, 86, 57, 28, 20, 113, 39, 88, 7, 86, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777155 + reqtimestampmock: 2025-11-10T12:19:15.213354843Z + restimestampmock: 2025-11-10T12:19:15.219845309Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-793 +spec: + metadata: + connID: "266" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777155 + reqtimestampmock: 2025-11-10T12:19:15.220001756Z + restimestampmock: 2025-11-10T12:19:15.220223266Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-794 +spec: + metadata: + connID: "266" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777155 + reqtimestampmock: 2025-11-10T12:19:15.220345585Z + restimestampmock: 2025-11-10T12:19:15.220513143Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-795 +spec: + metadata: + connID: "266" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777155 + reqtimestampmock: 2025-11-10T12:19:15.220609082Z + restimestampmock: 2025-11-10T12:19:15.220712161Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-796 +spec: + metadata: + connID: "266" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a', 'sneha_delhi', 'sneha_delhi@example.in', 'scrypt:32768:8:1$ZWw7AvMu4jrz36W8$6d808434ee2a3678ae70f0c4bbe0516cf1113fae3a033ed8fb96a47e4933c33a7d6f0243f8920fdd9e99fd108f468b148da1d9856158bf1674c51449c1f9cc1d', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777155 + reqtimestampmock: 2025-11-10T12:19:15.270263702Z + restimestampmock: 2025-11-10T12:19:15.270674119Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-797 +spec: + metadata: + connID: "266" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777155 + reqtimestampmock: 2025-11-10T12:19:15.270808938Z + restimestampmock: 2025-11-10T12:19:15.282181602Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-798 +spec: + metadata: + connID: "268" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [20, 71, 175, 146, 253, 67, 99, 68, 160, 2, 200, 254, 4, 184, 185, 141, 137, 194, 64, 179, 19, 153, 102, 133, 77, 173, 5, 209, 31, 184, 123, 187] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 263 + auth_plugin_data: [98, 34, 113, 8, 31, 16, 48, 20, 94, 8, 116, 28, 127, 125, 111, 63, 75, 48, 92, 104, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.158883408Z + restimestampmock: 2025-11-10T12:19:16.164923287Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-799 +spec: + metadata: + connID: "268" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.165159935Z + restimestampmock: 2025-11-10T12:19:16.165301994Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-800 +spec: + metadata: + connID: "268" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.165473211Z + restimestampmock: 2025-11-10T12:19:16.165616791Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-801 +spec: + metadata: + connID: "268" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.16572011Z + restimestampmock: 2025-11-10T12:19:16.165809689Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-802 +spec: + metadata: + connID: "268" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='sneha_delhi' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: 5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a + unsigned: false + - type: 253 + name: username + value: sneha_delhi + unsigned: false + - type: 253 + name: email + value: sneha_delhi@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$ZWw7AvMu4jrz36W8$6d808434ee2a3678ae70f0c4bbe0516cf1113fae3a033ed8fb96a47e4933c33a7d6f0243f8920fdd9e99fd108f468b148da1d9856158bf1674c51449c1f9cc1d + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.165965148Z + restimestampmock: 2025-11-10T12:19:16.166402475Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-803 +spec: + metadata: + connID: "270" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [187, 39, 106, 130, 21, 62, 127, 225, 167, 116, 27, 177, 53, 117, 90, 200, 107, 214, 222, 185, 93, 145, 131, 71, 235, 195, 2, 122, 186, 210, 0, 29] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 264 + auth_plugin_data: [72, 65, 107, 101, 47, 12, 2, 83, 33, 93, 63, 103, 31, 100, 17, 81, 71, 64, 62, 125, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.935824196Z + restimestampmock: 2025-11-10T12:19:16.942729039Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-804 +spec: + metadata: + connID: "270" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.942934066Z + restimestampmock: 2025-11-10T12:19:16.943184154Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-805 +spec: + metadata: + connID: "270" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.943306633Z + restimestampmock: 2025-11-10T12:19:16.943450462Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-806 +spec: + metadata: + connID: "270" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.943574451Z + restimestampmock: 2025-11-10T12:19:16.94361456Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-807 +spec: + metadata: + connID: "270" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.9437491Z + restimestampmock: 2025-11-10T12:19:16.944199475Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-808 +spec: + metadata: + connID: "270" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 273 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('223a9700-5da2-454b-a432-8de30c59cf5d','5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a','25 Hauz Khas Village',NULL,'New Delhi','Delhi','110016','IN','+919810098100',0) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.944319095Z + restimestampmock: 2025-11-10T12:19:16.944638922Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-809 +spec: + metadata: + connID: "270" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777156 + reqtimestampmock: 2025-11-10T12:19:16.944715542Z + restimestampmock: 2025-11-10T12:19:16.956185715Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-810 +spec: + metadata: + connID: "272" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [29, 160, 51, 122, 193, 135, 112, 114, 88, 206, 162, 103, 52, 240, 138, 227, 80, 100, 105, 79, 15, 0, 96, 5, 41, 90, 91, 211, 232, 48, 203, 177] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 265 + auth_plugin_data: [124, 121, 53, 54, 20, 106, 10, 33, 44, 111, 83, 44, 1, 29, 98, 75, 37, 39, 82, 110, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777157 + reqtimestampmock: 2025-11-10T12:19:17.739219153Z + restimestampmock: 2025-11-10T12:19:17.748017959Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-811 +spec: + metadata: + connID: "272" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777157 + reqtimestampmock: 2025-11-10T12:19:17.748216987Z + restimestampmock: 2025-11-10T12:19:17.748400565Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-812 +spec: + metadata: + connID: "272" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777157 + reqtimestampmock: 2025-11-10T12:19:17.748526894Z + restimestampmock: 2025-11-10T12:19:17.748680033Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-813 +spec: + metadata: + connID: "272" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777157 + reqtimestampmock: 2025-11-10T12:19:17.748808501Z + restimestampmock: 2025-11-10T12:19:17.748911571Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-814 +spec: + metadata: + connID: "272" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777157 + reqtimestampmock: 2025-11-10T12:19:17.749180548Z + restimestampmock: 2025-11-10T12:19:17.749519955Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-815 +spec: + metadata: + connID: "272" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 101 + sequence_id: 11 + values: + - type: 253 + name: id + value: 223a9700-5da2-454b-a432-8de30c59cf5d + unsigned: false + - type: 253 + name: line1 + value: 25 Hauz Khas Village + unsigned: false + - type: 253 + name: line2 + value: null + unsigned: false + - type: 253 + name: city + value: New Delhi + unsigned: false + - type: 253 + name: state + value: Delhi + unsigned: false + - type: 253 + name: postal_code + value: "110016" + unsigned: false + - type: 253 + name: country + value: IN + unsigned: false + - type: 253 + name: phone + value: "+919810098100" + unsigned: false + - type: 1 + name: is_default + value: "0" + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 12 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777157 + reqtimestampmock: 2025-11-10T12:19:17.749681484Z + restimestampmock: 2025-11-10T12:19:17.750440867Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-816 +spec: + metadata: + connID: "274" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [63, 196, 140, 110, 173, 126, 61, 62, 141, 168, 68, 113, 190, 137, 194, 244, 203, 58, 177, 51, 144, 248, 146, 233, 156, 169, 125, 145, 232, 11, 101, 201] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 266 + auth_plugin_data: [80, 72, 44, 69, 28, 1, 18, 59, 34, 109, 110, 87, 70, 92, 18, 32, 68, 124, 4, 124, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.495993662Z + restimestampmock: 2025-11-10T12:19:18.502047702Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-817 +spec: + metadata: + connID: "274" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.50219497Z + restimestampmock: 2025-11-10T12:19:18.502385158Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-818 +spec: + metadata: + connID: "274" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.502471797Z + restimestampmock: 2025-11-10T12:19:18.502597276Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-819 +spec: + metadata: + connID: "274" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.502694707Z + restimestampmock: 2025-11-10T12:19:18.502770205Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-820 +spec: + metadata: + connID: "274" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.502958465Z + restimestampmock: 2025-11-10T12:19:18.503328471Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-821 +spec: + metadata: + connID: "274" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.50346525Z + restimestampmock: 2025-11-10T12:19:18.503764857Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-822 +spec: + metadata: + connID: "274" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.503887206Z + restimestampmock: 2025-11-10T12:19:18.504271593Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-823 +spec: + metadata: + connID: "274" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777158 + reqtimestampmock: 2025-11-10T12:19:18.504358061Z + restimestampmock: 2025-11-10T12:19:18.517069565Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-824 +spec: + metadata: + connID: "276" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [248, 51, 98, 51, 247, 86, 99, 25, 232, 154, 174, 143, 148, 196, 134, 162, 30, 244, 168, 81, 66, 86, 140, 240, 83, 77, 135, 128, 128, 133, 26, 35] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 268 + auth_plugin_data: [75, 87, 97, 45, 1, 42, 71, 115, 19, 33, 83, 65, 3, 62, 93, 49, 119, 30, 41, 64, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777160 + reqtimestampmock: 2025-11-10T12:19:20.389677364Z + restimestampmock: 2025-11-10T12:19:20.396132849Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-825 +spec: + metadata: + connID: "276" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777160 + reqtimestampmock: 2025-11-10T12:19:20.396277938Z + restimestampmock: 2025-11-10T12:19:20.396439466Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-826 +spec: + metadata: + connID: "276" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777160 + reqtimestampmock: 2025-11-10T12:19:20.396553545Z + restimestampmock: 2025-11-10T12:19:20.396706484Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-827 +spec: + metadata: + connID: "276" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777160 + reqtimestampmock: 2025-11-10T12:19:20.396838973Z + restimestampmock: 2025-11-10T12:19:20.396949342Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-828 +spec: + metadata: + connID: "276" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('80b19253-5d7a-4d05-9036-bff647acbaaa', 'bad_prod_user', 'bad_prod_user@example.in', 'scrypt:32768:8:1$Qw1guDJXcnMZVv97$59115be41d771ad8a9be0a34427ccde4be9f51be541cbaef6141696a88b6e297e9ee04a555ea2ef03e303428f35d8e724d291c6cdc7c0fa9f0081ee3474e9269', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777160 + reqtimestampmock: 2025-11-10T12:19:20.445042916Z + restimestampmock: 2025-11-10T12:19:20.445508853Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-829 +spec: + metadata: + connID: "276" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777160 + reqtimestampmock: 2025-11-10T12:19:20.445652822Z + restimestampmock: 2025-11-10T12:19:20.459182667Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-830 +spec: + metadata: + connID: "278" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [44, 159, 215, 13, 148, 175, 42, 50, 214, 15, 78, 167, 238, 218, 35, 109, 106, 79, 58, 64, 94, 59, 236, 137, 95, 0, 177, 42, 115, 122, 60, 161] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 269 + auth_plugin_data: [125, 121, 30, 100, 20, 68, 115, 79, 16, 58, 33, 120, 32, 56, 82, 90, 21, 113, 114, 54, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.136007523Z + restimestampmock: 2025-11-10T12:19:21.142800076Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-831 +spec: + metadata: + connID: "278" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.143190312Z + restimestampmock: 2025-11-10T12:19:21.143426761Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-832 +spec: + metadata: + connID: "278" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.143561538Z + restimestampmock: 2025-11-10T12:19:21.143726987Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-833 +spec: + metadata: + connID: "278" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.143835807Z + restimestampmock: 2025-11-10T12:19:21.144003806Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-834 +spec: + metadata: + connID: "278" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='bad_prod_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: 80b19253-5d7a-4d05-9036-bff647acbaaa + unsigned: false + - type: 253 + name: username + value: bad_prod_user + unsigned: false + - type: 253 + name: email + value: bad_prod_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Qw1guDJXcnMZVv97$59115be41d771ad8a9be0a34427ccde4be9f51be541cbaef6141696a88b6e297e9ee04a555ea2ef03e303428f35d8e724d291c6cdc7c0fa9f0081ee3474e9269 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.144210303Z + restimestampmock: 2025-11-10T12:19:21.144743809Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-835 +spec: + metadata: + connID: "280" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [101, 55, 206, 145, 175, 197, 197, 52, 171, 199, 117, 0, 131, 20, 236, 245, 30, 32, 66, 231, 178, 212, 82, 52, 12, 89, 189, 58, 111, 2, 159, 150] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 270 + auth_plugin_data: [39, 10, 89, 82, 112, 71, 55, 21, 79, 123, 25, 53, 22, 11, 53, 103, 123, 125, 113, 1, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.936336866Z + restimestampmock: 2025-11-10T12:19:21.943574155Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-836 +spec: + metadata: + connID: "280" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.943742903Z + restimestampmock: 2025-11-10T12:19:21.943920253Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-837 +spec: + metadata: + connID: "280" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.944047081Z + restimestampmock: 2025-11-10T12:19:21.94421288Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-838 +spec: + metadata: + connID: "280" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.944321859Z + restimestampmock: 2025-11-10T12:19:21.944419538Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-839 +spec: + metadata: + connID: "280" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='80b19253-5d7a-4d05-9036-bff647acbaaa' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 80b19253-5d7a-4d05-9036-bff647acbaaa + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.944599076Z + restimestampmock: 2025-11-10T12:19:21.944939004Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-840 +spec: + metadata: + connID: "280" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 272 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('9b315486-d4a1-4e7f-a2b0-9dd8736af86c','80b19253-5d7a-4d05-9036-bff647acbaaa','123 Sector 17',NULL,'Chandigarh','Chandigarh','160017','IN','+919876512345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.945130051Z + restimestampmock: 2025-11-10T12:19:21.945497298Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-841 +spec: + metadata: + connID: "280" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='80b19253-5d7a-4d05-9036-bff647acbaaa' AND id<>'9b315486-d4a1-4e7f-a2b0-9dd8736af86c' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.945639878Z + restimestampmock: 2025-11-10T12:19:21.945915745Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-842 +spec: + metadata: + connID: "280" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777161 + reqtimestampmock: 2025-11-10T12:19:21.946025675Z + restimestampmock: 2025-11-10T12:19:21.960085045Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-843 +spec: + metadata: + connID: "282" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [41, 80, 106, 194, 163, 173, 18, 174, 150, 250, 100, 190, 214, 198, 211, 231, 219, 182, 241, 149, 202, 21, 189, 212, 193, 148, 115, 237, 163, 229, 231, 174] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 271 + auth_plugin_data: [111, 32, 9, 16, 81, 35, 9, 9, 126, 48, 8, 84, 50, 96, 91, 89, 126, 25, 19, 122, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.517554529Z + restimestampmock: 2025-11-10T12:19:23.52698295Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-844 +spec: + metadata: + connID: "282" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.527200528Z + restimestampmock: 2025-11-10T12:19:23.527400546Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-845 +spec: + metadata: + connID: "282" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.527525105Z + restimestampmock: 2025-11-10T12:19:23.527683154Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-846 +spec: + metadata: + connID: "282" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.527795853Z + restimestampmock: 2025-11-10T12:19:23.527893352Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-847 +spec: + metadata: + connID: "282" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='80b19253-5d7a-4d05-9036-bff647acbaaa' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 80b19253-5d7a-4d05-9036-bff647acbaaa + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.52808823Z + restimestampmock: 2025-11-10T12:19:23.528456387Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-848 +spec: + metadata: + connID: "282" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='80b19253-5d7a-4d05-9036-bff647acbaaa' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.528650956Z + restimestampmock: 2025-11-10T12:19:23.529015503Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-849 +spec: + metadata: + connID: "282" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='80b19253-5d7a-4d05-9036-bff647acbaaa' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.529145521Z + restimestampmock: 2025-11-10T12:19:23.529438129Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-850 +spec: + metadata: + connID: "282" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777163 + reqtimestampmock: 2025-11-10T12:19:23.529554149Z + restimestampmock: 2025-11-10T12:19:23.54114338Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-851 +spec: + metadata: + connID: "284" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [70, 210, 144, 116, 20, 137, 147, 149, 86, 242, 194, 192, 193, 186, 209, 146, 227, 106, 193, 55, 153, 221, 10, 240, 242, 54, 109, 168, 251, 177, 169, 188] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 273 + auth_plugin_data: [117, 111, 110, 100, 41, 26, 62, 100, 94, 88, 72, 10, 63, 28, 93, 25, 81, 56, 57, 31, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777165 + reqtimestampmock: 2025-11-10T12:19:25.946539778Z + restimestampmock: 2025-11-10T12:19:25.953232042Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-852 +spec: + metadata: + connID: "284" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777165 + reqtimestampmock: 2025-11-10T12:19:25.953390081Z + restimestampmock: 2025-11-10T12:19:25.953573719Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-853 +spec: + metadata: + connID: "284" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777165 + reqtimestampmock: 2025-11-10T12:19:25.953679308Z + restimestampmock: 2025-11-10T12:19:25.953853517Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-854 +spec: + metadata: + connID: "284" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777165 + reqtimestampmock: 2025-11-10T12:19:25.953972695Z + restimestampmock: 2025-11-10T12:19:25.954064205Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-855 +spec: + metadata: + connID: "284" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 333 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('d2e41f94-240a-471b-a0fb-78c3380c60c2', 'zero_quant_user', 'zero_quant_user@example.in', 'scrypt:32768:8:1$mSz0PK2Tg0PBS0AB$e6a6f447956c2dbe5d019c8cb4bd8bd25ae01d0b78ee7b3cfdff79d1292aec06e85824a0b512321fdbef6e3907f4535fc2fef64d2f729c36832ba2275719b336', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777166 + reqtimestampmock: 2025-11-10T12:19:26.002418087Z + restimestampmock: 2025-11-10T12:19:26.002955692Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-856 +spec: + metadata: + connID: "284" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777166 + reqtimestampmock: 2025-11-10T12:19:26.003062341Z + restimestampmock: 2025-11-10T12:19:26.01509528Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-857 +spec: + metadata: + connID: "286" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [118, 143, 191, 88, 5, 220, 226, 233, 213, 63, 21, 188, 185, 149, 48, 179, 241, 92, 220, 86, 30, 51, 140, 53, 224, 121, 71, 132, 246, 250, 210, 225] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 274 + auth_plugin_data: [13, 85, 18, 13, 29, 77, 30, 48, 103, 58, 107, 98, 45, 96, 76, 51, 124, 117, 19, 47, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777166 + reqtimestampmock: 2025-11-10T12:19:26.878225225Z + restimestampmock: 2025-11-10T12:19:26.884573251Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-858 +spec: + metadata: + connID: "286" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777166 + reqtimestampmock: 2025-11-10T12:19:26.884729Z + restimestampmock: 2025-11-10T12:19:26.884945938Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-859 +spec: + metadata: + connID: "286" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777166 + reqtimestampmock: 2025-11-10T12:19:26.885050167Z + restimestampmock: 2025-11-10T12:19:26.885192656Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-860 +spec: + metadata: + connID: "286" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777166 + reqtimestampmock: 2025-11-10T12:19:26.885351845Z + restimestampmock: 2025-11-10T12:19:26.885392615Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-861 +spec: + metadata: + connID: "286" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 88 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='zero_quant_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 243 + sequence_id: 6 + values: + - type: 253 + name: id + value: d2e41f94-240a-471b-a0fb-78c3380c60c2 + unsigned: false + - type: 253 + name: username + value: zero_quant_user + unsigned: false + - type: 253 + name: email + value: zero_quant_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$mSz0PK2Tg0PBS0AB$e6a6f447956c2dbe5d019c8cb4bd8bd25ae01d0b78ee7b3cfdff79d1292aec06e85824a0b512321fdbef6e3907f4535fc2fef64d2f729c36832ba2275719b336 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777166 + reqtimestampmock: 2025-11-10T12:19:26.885511214Z + restimestampmock: 2025-11-10T12:19:26.885834861Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-862 +spec: + metadata: + connID: "288" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [97, 141, 139, 59, 58, 219, 83, 52, 131, 225, 62, 126, 232, 75, 204, 251, 154, 152, 33, 222, 141, 196, 159, 128, 223, 189, 167, 74, 244, 151, 171, 176] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 275 + auth_plugin_data: [105, 101, 62, 31, 124, 70, 25, 120, 9, 81, 22, 59, 87, 125, 7, 92, 110, 60, 76, 14, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.702162152Z + restimestampmock: 2025-11-10T12:19:27.711609333Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-863 +spec: + metadata: + connID: "288" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.711816691Z + restimestampmock: 2025-11-10T12:19:27.711993269Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-864 +spec: + metadata: + connID: "288" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.712116908Z + restimestampmock: 2025-11-10T12:19:27.712286128Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-865 +spec: + metadata: + connID: "288" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.712403887Z + restimestampmock: 2025-11-10T12:19:27.712564334Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-866 +spec: + metadata: + connID: "288" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='d2e41f94-240a-471b-a0fb-78c3380c60c2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: d2e41f94-240a-471b-a0fb-78c3380c60c2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.712786703Z + restimestampmock: 2025-11-10T12:19:27.71314225Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-867 +spec: + metadata: + connID: "288" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 269 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('16862c52-8fa2-4677-81ba-cc26143ddddc','d2e41f94-240a-471b-a0fb-78c3380c60c2','45 Ashram Road',NULL,'Ahmedabad','Gujarat','380009','IN','+919988776655',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.713319268Z + restimestampmock: 2025-11-10T12:19:27.713753964Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-868 +spec: + metadata: + connID: "288" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='d2e41f94-240a-471b-a0fb-78c3380c60c2' AND id<>'16862c52-8fa2-4677-81ba-cc26143ddddc' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.713892674Z + restimestampmock: 2025-11-10T12:19:27.714279871Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-869 +spec: + metadata: + connID: "288" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777167 + reqtimestampmock: 2025-11-10T12:19:27.714444158Z + restimestampmock: 2025-11-10T12:19:27.725984871Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-870 +spec: + metadata: + connID: "290" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [101, 152, 105, 157, 180, 237, 73, 108, 134, 136, 129, 224, 130, 237, 168, 7, 145, 106, 123, 30, 11, 53, 20, 80, 62, 102, 12, 161, 131, 44, 95, 228] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 277 + auth_plugin_data: [70, 98, 37, 37, 109, 74, 66, 51, 16, 41, 100, 25, 10, 47, 122, 6, 118, 61, 49, 95, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.270738537Z + restimestampmock: 2025-11-10T12:19:29.277258202Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-871 +spec: + metadata: + connID: "290" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.277452739Z + restimestampmock: 2025-11-10T12:19:29.277636828Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-872 +spec: + metadata: + connID: "290" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.277751567Z + restimestampmock: 2025-11-10T12:19:29.277900466Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-873 +spec: + metadata: + connID: "290" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.278014395Z + restimestampmock: 2025-11-10T12:19:29.278127564Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-874 +spec: + metadata: + connID: "290" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='d2e41f94-240a-471b-a0fb-78c3380c60c2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: d2e41f94-240a-471b-a0fb-78c3380c60c2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.278321993Z + restimestampmock: 2025-11-10T12:19:29.278687319Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-875 +spec: + metadata: + connID: "290" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='d2e41f94-240a-471b-a0fb-78c3380c60c2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.278867287Z + restimestampmock: 2025-11-10T12:19:29.279205154Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-876 +spec: + metadata: + connID: "290" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='d2e41f94-240a-471b-a0fb-78c3380c60c2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.279317505Z + restimestampmock: 2025-11-10T12:19:29.279612411Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-877 +spec: + metadata: + connID: "290" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777169 + reqtimestampmock: 2025-11-10T12:19:29.280064558Z + restimestampmock: 2025-11-10T12:19:29.290164462Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-878 +spec: + metadata: + connID: "292" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [14, 148, 115, 9, 107, 57, 175, 70, 194, 224, 174, 83, 20, 253, 97, 221, 186, 178, 175, 144, 113, 83, 9, 169, 72, 92, 45, 240, 253, 209, 78, 47] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 278 + auth_plugin_data: [55, 96, 15, 45, 91, 4, 90, 76, 101, 41, 7, 98, 13, 55, 60, 20, 57, 76, 90, 92, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777171 + reqtimestampmock: 2025-11-10T12:19:31.650055351Z + restimestampmock: 2025-11-10T12:19:31.656403529Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-879 +spec: + metadata: + connID: "292" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777171 + reqtimestampmock: 2025-11-10T12:19:31.656554616Z + restimestampmock: 2025-11-10T12:19:31.656731355Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-880 +spec: + metadata: + connID: "292" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777171 + reqtimestampmock: 2025-11-10T12:19:31.656854525Z + restimestampmock: 2025-11-10T12:19:31.657006263Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-881 +spec: + metadata: + connID: "292" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777171 + reqtimestampmock: 2025-11-10T12:19:31.657100722Z + restimestampmock: 2025-11-10T12:19:31.657215941Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-882 +spec: + metadata: + connID: "292" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('c6906a40-98ca-4161-9d35-da12bc129a7f', 'no_items_user', 'no_items_user@example.in', 'scrypt:32768:8:1$s2eCS6yHOLefZIQG$42a63b40c72dac1a8b47b27593e0343456616464b8c0683ad2c4df805c6165d22ac8c18f90e2fc5643f0f8c96bcb83168347dfac0768b5d41acf56553d3d07ec', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777171 + reqtimestampmock: 2025-11-10T12:19:31.706973892Z + restimestampmock: 2025-11-10T12:19:31.707376118Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-883 +spec: + metadata: + connID: "292" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777171 + reqtimestampmock: 2025-11-10T12:19:31.707475956Z + restimestampmock: 2025-11-10T12:19:31.716917138Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-884 +spec: + metadata: + connID: "294" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [23, 90, 42, 2, 93, 133, 126, 213, 194, 48, 114, 27, 144, 252, 107, 53, 202, 142, 155, 136, 179, 200, 69, 215, 124, 106, 47, 230, 139, 130, 67, 176] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 279 + auth_plugin_data: [126, 125, 110, 126, 99, 50, 120, 39, 78, 122, 18, 78, 11, 62, 28, 118, 56, 94, 30, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777172 + reqtimestampmock: 2025-11-10T12:19:32.426103804Z + restimestampmock: 2025-11-10T12:19:32.43247812Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-885 +spec: + metadata: + connID: "294" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777172 + reqtimestampmock: 2025-11-10T12:19:32.432649109Z + restimestampmock: 2025-11-10T12:19:32.432899347Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-886 +spec: + metadata: + connID: "294" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777172 + reqtimestampmock: 2025-11-10T12:19:32.433011826Z + restimestampmock: 2025-11-10T12:19:32.433162775Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-887 +spec: + metadata: + connID: "294" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777172 + reqtimestampmock: 2025-11-10T12:19:32.433255594Z + restimestampmock: 2025-11-10T12:19:32.433366243Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-888 +spec: + metadata: + connID: "294" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='no_items_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: c6906a40-98ca-4161-9d35-da12bc129a7f + unsigned: false + - type: 253 + name: username + value: no_items_user + unsigned: false + - type: 253 + name: email + value: no_items_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$s2eCS6yHOLefZIQG$42a63b40c72dac1a8b47b27593e0343456616464b8c0683ad2c4df805c6165d22ac8c18f90e2fc5643f0f8c96bcb83168347dfac0768b5d41acf56553d3d07ec + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777172 + reqtimestampmock: 2025-11-10T12:19:32.433511722Z + restimestampmock: 2025-11-10T12:19:32.433999688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-889 +spec: + metadata: + connID: "296" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [159, 215, 15, 231, 56, 104, 136, 109, 187, 253, 77, 220, 25, 212, 203, 235, 239, 248, 120, 82, 185, 38, 212, 117, 189, 218, 209, 156, 9, 60, 30, 94] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 280 + auth_plugin_data: [37, 99, 99, 21, 62, 4, 72, 110, 62, 55, 73, 55, 71, 38, 18, 115, 40, 21, 69, 59, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.173173582Z + restimestampmock: 2025-11-10T12:19:33.182706841Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-890 +spec: + metadata: + connID: "296" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.18288106Z + restimestampmock: 2025-11-10T12:19:33.183057769Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-891 +spec: + metadata: + connID: "296" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.183197168Z + restimestampmock: 2025-11-10T12:19:33.183343066Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-892 +spec: + metadata: + connID: "296" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.183428916Z + restimestampmock: 2025-11-10T12:19:33.183523614Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-893 +spec: + metadata: + connID: "296" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c6906a40-98ca-4161-9d35-da12bc129a7f' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c6906a40-98ca-4161-9d35-da12bc129a7f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.183679394Z + restimestampmock: 2025-11-10T12:19:33.18404734Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-894 +spec: + metadata: + connID: "296" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 264 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('4fa7bac9-4929-4b7c-9809-47681ee46b29','c6906a40-98ca-4161-9d35-da12bc129a7f','67 MI Road',NULL,'Jaipur','Rajasthan','302001','IN','+919829012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.184170049Z + restimestampmock: 2025-11-10T12:19:33.184437468Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-895 +spec: + metadata: + connID: "296" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='c6906a40-98ca-4161-9d35-da12bc129a7f' AND id<>'4fa7bac9-4929-4b7c-9809-47681ee46b29' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.184598375Z + restimestampmock: 2025-11-10T12:19:33.184876893Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-896 +spec: + metadata: + connID: "296" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777173 + reqtimestampmock: 2025-11-10T12:19:33.184985782Z + restimestampmock: 2025-11-10T12:19:33.194013216Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-897 +spec: + metadata: + connID: "298" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [0, 11, 212, 165, 165, 145, 93, 57, 96, 236, 16, 19, 247, 174, 111, 134, 107, 38, 5, 59, 232, 144, 29, 200, 22, 21, 39, 197, 65, 172, 117, 231] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 282 + auth_plugin_data: [37, 31, 28, 116, 114, 118, 104, 98, 59, 102, 16, 62, 87, 11, 31, 68, 39, 39, 86, 56, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.734950578Z + restimestampmock: 2025-11-10T12:19:34.741475603Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-898 +spec: + metadata: + connID: "298" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.741648222Z + restimestampmock: 2025-11-10T12:19:34.74184838Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-899 +spec: + metadata: + connID: "298" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.74193597Z + restimestampmock: 2025-11-10T12:19:34.742107987Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-900 +spec: + metadata: + connID: "298" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.742207906Z + restimestampmock: 2025-11-10T12:19:34.742302727Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-901 +spec: + metadata: + connID: "298" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c6906a40-98ca-4161-9d35-da12bc129a7f' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c6906a40-98ca-4161-9d35-da12bc129a7f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.742480634Z + restimestampmock: 2025-11-10T12:19:34.742848641Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-902 +spec: + metadata: + connID: "298" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='c6906a40-98ca-4161-9d35-da12bc129a7f' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.742986611Z + restimestampmock: 2025-11-10T12:19:34.743323448Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-903 +spec: + metadata: + connID: "298" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='c6906a40-98ca-4161-9d35-da12bc129a7f' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.743444897Z + restimestampmock: 2025-11-10T12:19:34.743685305Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-904 +spec: + metadata: + connID: "298" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777174 + reqtimestampmock: 2025-11-10T12:19:34.743798094Z + restimestampmock: 2025-11-10T12:19:34.755045659Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-905 +spec: + metadata: + connID: "300" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [134, 153, 112, 228, 255, 209, 123, 16, 142, 52, 88, 6, 155, 5, 216, 228, 159, 212, 86, 49, 97, 43, 209, 1, 36, 174, 185, 123, 164, 139, 177, 188] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 283 + auth_plugin_data: [69, 43, 101, 53, 41, 88, 58, 1, 107, 29, 45, 19, 108, 76, 25, 96, 73, 98, 43, 123, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777176 + reqtimestampmock: 2025-11-10T12:19:36.772438273Z + restimestampmock: 2025-11-10T12:19:36.77870224Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-906 +spec: + metadata: + connID: "300" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777176 + reqtimestampmock: 2025-11-10T12:19:36.778867879Z + restimestampmock: 2025-11-10T12:19:36.779032448Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-907 +spec: + metadata: + connID: "300" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777176 + reqtimestampmock: 2025-11-10T12:19:36.779134097Z + restimestampmock: 2025-11-10T12:19:36.779341964Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-908 +spec: + metadata: + connID: "300" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777176 + reqtimestampmock: 2025-11-10T12:19:36.779487643Z + restimestampmock: 2025-11-10T12:19:36.779627153Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-909 +spec: + metadata: + connID: "300" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('05b4f265-384a-4be5-b72f-b3281743867c', 'pay_twice_user', 'pay_twice_user@example.in', 'scrypt:32768:8:1$AqPCxA0dgCyPzJSw$a692b86ba74b5aec183690e0ec1a12ee10b66dfc92068b207003a64fe97fcf63cd22215b0c85fa9bb223c419ed3bcc07f6c73439c2c5f6b2cddc6a49a2e2cba6', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777176 + reqtimestampmock: 2025-11-10T12:19:36.827803136Z + restimestampmock: 2025-11-10T12:19:36.828239223Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-910 +spec: + metadata: + connID: "300" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777176 + reqtimestampmock: 2025-11-10T12:19:36.828400541Z + restimestampmock: 2025-11-10T12:19:36.83688756Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-911 +spec: + metadata: + connID: "302" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [18, 66, 255, 23, 212, 248, 155, 55, 238, 75, 50, 85, 50, 148, 225, 170, 209, 103, 30, 242, 115, 62, 120, 129, 207, 190, 141, 12, 0, 242, 56, 130] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 284 + auth_plugin_data: [15, 1, 78, 7, 31, 31, 119, 47, 100, 123, 45, 7, 86, 101, 55, 1, 91, 18, 124, 11, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777177 + reqtimestampmock: 2025-11-10T12:19:37.658870747Z + restimestampmock: 2025-11-10T12:19:37.665845148Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-912 +spec: + metadata: + connID: "302" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777177 + reqtimestampmock: 2025-11-10T12:19:37.666034697Z + restimestampmock: 2025-11-10T12:19:37.666249196Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-913 +spec: + metadata: + connID: "302" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777177 + reqtimestampmock: 2025-11-10T12:19:37.666387034Z + restimestampmock: 2025-11-10T12:19:37.666553522Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-914 +spec: + metadata: + connID: "302" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777177 + reqtimestampmock: 2025-11-10T12:19:37.666652562Z + restimestampmock: 2025-11-10T12:19:37.666754831Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-915 +spec: + metadata: + connID: "302" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='pay_twice_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: 05b4f265-384a-4be5-b72f-b3281743867c + unsigned: false + - type: 253 + name: username + value: pay_twice_user + unsigned: false + - type: 253 + name: email + value: pay_twice_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$AqPCxA0dgCyPzJSw$a692b86ba74b5aec183690e0ec1a12ee10b66dfc92068b207003a64fe97fcf63cd22215b0c85fa9bb223c419ed3bcc07f6c73439c2c5f6b2cddc6a49a2e2cba6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777177 + reqtimestampmock: 2025-11-10T12:19:37.666927438Z + restimestampmock: 2025-11-10T12:19:37.667424025Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-916 +spec: + metadata: + connID: "304" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [80, 167, 162, 10, 38, 38, 39, 102, 159, 27, 213, 149, 92, 236, 146, 208, 9, 31, 15, 219, 163, 150, 22, 225, 180, 181, 18, 92, 150, 82, 154, 211] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 285 + auth_plugin_data: [50, 7, 62, 66, 102, 81, 100, 47, 127, 37, 58, 123, 121, 86, 101, 54, 75, 13, 70, 27, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.418167433Z + restimestampmock: 2025-11-10T12:19:38.424406411Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-917 +spec: + metadata: + connID: "304" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.42455714Z + restimestampmock: 2025-11-10T12:19:38.424737778Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-918 +spec: + metadata: + connID: "304" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.424889027Z + restimestampmock: 2025-11-10T12:19:38.425143425Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-919 +spec: + metadata: + connID: "304" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.425256274Z + restimestampmock: 2025-11-10T12:19:38.425359123Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-920 +spec: + metadata: + connID: "304" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='05b4f265-384a-4be5-b72f-b3281743867c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 05b4f265-384a-4be5-b72f-b3281743867c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.425518002Z + restimestampmock: 2025-11-10T12:19:38.425928389Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-921 +spec: + metadata: + connID: "304" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 271 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('a0789c4d-45b2-486a-86ea-ae6f06226459','05b4f265-384a-4be5-b72f-b3281743867c','8 Hazratganj',NULL,'Lucknow','Uttar Pradesh','226001','IN','+919415012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.426119047Z + restimestampmock: 2025-11-10T12:19:38.426457793Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-922 +spec: + metadata: + connID: "304" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='05b4f265-384a-4be5-b72f-b3281743867c' AND id<>'a0789c4d-45b2-486a-86ea-ae6f06226459' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.426610482Z + restimestampmock: 2025-11-10T12:19:38.42691392Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-923 +spec: + metadata: + connID: "304" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777178 + reqtimestampmock: 2025-11-10T12:19:38.42700574Z + restimestampmock: 2025-11-10T12:19:38.437853969Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-924 +spec: + metadata: + connID: "306" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [183, 44, 186, 186, 253, 223, 229, 200, 46, 145, 117, 222, 244, 118, 106, 93, 244, 219, 65, 72, 141, 1, 180, 190, 124, 142, 190, 10, 152, 58, 40, 107] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 287 + auth_plugin_data: [64, 45, 52, 84, 76, 27, 26, 61, 102, 33, 103, 84, 100, 19, 35, 39, 42, 41, 50, 114, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.010879103Z + restimestampmock: 2025-11-10T12:19:40.01711823Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-925 +spec: + metadata: + connID: "306" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.017277049Z + restimestampmock: 2025-11-10T12:19:40.017437477Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-926 +spec: + metadata: + connID: "306" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.017501657Z + restimestampmock: 2025-11-10T12:19:40.017635575Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-927 +spec: + metadata: + connID: "306" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.017715275Z + restimestampmock: 2025-11-10T12:19:40.017808004Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-928 +spec: + metadata: + connID: "306" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='05b4f265-384a-4be5-b72f-b3281743867c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 05b4f265-384a-4be5-b72f-b3281743867c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.017959943Z + restimestampmock: 2025-11-10T12:19:40.01829998Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-929 +spec: + metadata: + connID: "306" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='05b4f265-384a-4be5-b72f-b3281743867c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.018432399Z + restimestampmock: 2025-11-10T12:19:40.018871746Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-930 +spec: + metadata: + connID: "306" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='05b4f265-384a-4be5-b72f-b3281743867c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.019007654Z + restimestampmock: 2025-11-10T12:19:40.019322131Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-931 +spec: + metadata: + connID: "306" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777180 + reqtimestampmock: 2025-11-10T12:19:40.01942273Z + restimestampmock: 2025-11-10T12:19:40.027937148Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-932 +spec: + metadata: + connID: "308" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [158, 148, 55, 25, 34, 37, 80, 0, 93, 180, 73, 126, 57, 161, 207, 235, 73, 232, 53, 49, 174, 216, 194, 23, 85, 24, 97, 241, 86, 108, 188, 109] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 288 + auth_plugin_data: [59, 25, 59, 47, 55, 1, 22, 61, 93, 89, 97, 25, 124, 98, 58, 99, 57, 32, 114, 59, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777183 + reqtimestampmock: 2025-11-10T12:19:43.228265376Z + restimestampmock: 2025-11-10T12:19:43.234374715Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-933 +spec: + metadata: + connID: "308" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777183 + reqtimestampmock: 2025-11-10T12:19:43.234513444Z + restimestampmock: 2025-11-10T12:19:43.234706322Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-934 +spec: + metadata: + connID: "308" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777183 + reqtimestampmock: 2025-11-10T12:19:43.23481522Z + restimestampmock: 2025-11-10T12:19:43.234974949Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-935 +spec: + metadata: + connID: "308" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777183 + reqtimestampmock: 2025-11-10T12:19:43.235069519Z + restimestampmock: 2025-11-10T12:19:43.235185887Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-936 +spec: + metadata: + connID: "308" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a', 'bad_addr_user', 'bad_addr_user@example.in', 'scrypt:32768:8:1$WIStSA6GULhzFQmz$61c905d0834462278d321021aa4e219ae359e00178f5bb4fa876b01d18562db9b3ddd3c8c19c6c23d0d64c138e87b1557e18894f4a084b428dfeccb3c98c7522', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777183 + reqtimestampmock: 2025-11-10T12:19:43.282610987Z + restimestampmock: 2025-11-10T12:19:43.283079643Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-937 +spec: + metadata: + connID: "308" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777183 + reqtimestampmock: 2025-11-10T12:19:43.283202333Z + restimestampmock: 2025-11-10T12:19:43.296069544Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-938 +spec: + metadata: + connID: "310" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [213, 168, 39, 199, 138, 112, 192, 198, 237, 195, 122, 234, 68, 189, 255, 159, 100, 144, 139, 38, 185, 245, 141, 94, 175, 70, 196, 62, 204, 124, 29, 175] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 290 + auth_plugin_data: [93, 101, 88, 1, 32, 62, 4, 42, 115, 47, 54, 25, 1, 41, 112, 79, 109, 51, 94, 112, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777184 + reqtimestampmock: 2025-11-10T12:19:44.0391066Z + restimestampmock: 2025-11-10T12:19:44.045372157Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-939 +spec: + metadata: + connID: "310" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777184 + reqtimestampmock: 2025-11-10T12:19:44.045554705Z + restimestampmock: 2025-11-10T12:19:44.045792753Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-940 +spec: + metadata: + connID: "310" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777184 + reqtimestampmock: 2025-11-10T12:19:44.045898572Z + restimestampmock: 2025-11-10T12:19:44.046087361Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-941 +spec: + metadata: + connID: "310" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777184 + reqtimestampmock: 2025-11-10T12:19:44.046320349Z + restimestampmock: 2025-11-10T12:19:44.046423127Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-942 +spec: + metadata: + connID: "310" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='bad_addr_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a + unsigned: false + - type: 253 + name: username + value: bad_addr_user + unsigned: false + - type: 253 + name: email + value: bad_addr_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$WIStSA6GULhzFQmz$61c905d0834462278d321021aa4e219ae359e00178f5bb4fa876b01d18562db9b3ddd3c8c19c6c23d0d64c138e87b1557e18894f4a084b428dfeccb3c98c7522 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777184 + reqtimestampmock: 2025-11-10T12:19:44.046648836Z + restimestampmock: 2025-11-10T12:19:44.047056332Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-943 +spec: + metadata: + connID: "312" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [21, 202, 68, 212, 66, 179, 22, 132, 116, 222, 61, 220, 16, 33, 141, 76, 28, 138, 50, 238, 162, 143, 253, 220, 85, 194, 128, 132, 131, 225, 55, 42] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 291 + auth_plugin_data: [14, 74, 100, 16, 30, 107, 4, 71, 123, 126, 93, 101, 119, 26, 113, 15, 105, 68, 13, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.546369984Z + restimestampmock: 2025-11-10T12:19:45.552355294Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-944 +spec: + metadata: + connID: "312" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.552513242Z + restimestampmock: 2025-11-10T12:19:45.552672821Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-945 +spec: + metadata: + connID: "312" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.552786509Z + restimestampmock: 2025-11-10T12:19:45.552903659Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-946 +spec: + metadata: + connID: "312" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.552997118Z + restimestampmock: 2025-11-10T12:19:45.553140637Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-947 +spec: + metadata: + connID: "312" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.553307265Z + restimestampmock: 2025-11-10T12:19:45.553743372Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-948 +spec: + metadata: + connID: "312" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.553909611Z + restimestampmock: 2025-11-10T12:19:45.554185458Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-949 +spec: + metadata: + connID: "312" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.554317837Z + restimestampmock: 2025-11-10T12:19:45.554647414Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-950 +spec: + metadata: + connID: "312" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777185 + reqtimestampmock: 2025-11-10T12:19:45.554743004Z + restimestampmock: 2025-11-10T12:19:45.567852473Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-951 +spec: + metadata: + connID: "314" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [203, 18, 103, 33, 190, 1, 168, 253, 222, 17, 7, 64, 249, 207, 166, 195, 236, 219, 66, 165, 181, 152, 20, 99, 180, 106, 186, 44, 191, 98, 195, 195] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 292 + auth_plugin_data: [105, 35, 11, 71, 65, 40, 94, 50, 27, 45, 37, 61, 98, 79, 88, 117, 82, 1, 110, 12, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777186 + reqtimestampmock: 2025-11-10T12:19:46.361632483Z + restimestampmock: 2025-11-10T12:19:46.3677932Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-952 +spec: + metadata: + connID: "314" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777186 + reqtimestampmock: 2025-11-10T12:19:46.367975749Z + restimestampmock: 2025-11-10T12:19:46.368217996Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-953 +spec: + metadata: + connID: "314" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777186 + reqtimestampmock: 2025-11-10T12:19:46.368341986Z + restimestampmock: 2025-11-10T12:19:46.368514524Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-954 +spec: + metadata: + connID: "314" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777186 + reqtimestampmock: 2025-11-10T12:19:46.368683344Z + restimestampmock: 2025-11-10T12:19:46.368806212Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-955 +spec: + metadata: + connID: "314" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 339 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('0381a46c-7bc7-4054-b914-322bb96c2cbf', 'temp_user_for_prod', 'temp_user_for_prod@example.in', 'scrypt:32768:8:1$eSMJHJJcI0x3lv0h$154cf49b80712b015a57469334a1d24dbfd6be4172a9b9de79dc4d377950ab26fb105ba51a8788bf3baa340ded19fc19e10b12b7c96b4dfa3cde7b375cc3a9c6', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777186 + reqtimestampmock: 2025-11-10T12:19:46.416926166Z + restimestampmock: 2025-11-10T12:19:46.417389653Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-956 +spec: + metadata: + connID: "314" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777186 + reqtimestampmock: 2025-11-10T12:19:46.417568771Z + restimestampmock: 2025-11-10T12:19:46.435798697Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-957 +spec: + metadata: + connID: "316" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [231, 104, 57, 138, 213, 92, 164, 38, 168, 232, 154, 200, 24, 153, 128, 214, 155, 79, 175, 181, 165, 97, 38, 174, 142, 248, 243, 95, 64, 153, 7, 242] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 293 + auth_plugin_data: [60, 77, 69, 35, 24, 93, 19, 110, 102, 85, 10, 74, 24, 38, 58, 4, 122, 10, 88, 31, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777187 + reqtimestampmock: 2025-11-10T12:19:47.115245139Z + restimestampmock: 2025-11-10T12:19:47.121809683Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-958 +spec: + metadata: + connID: "316" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777187 + reqtimestampmock: 2025-11-10T12:19:47.122021002Z + restimestampmock: 2025-11-10T12:19:47.122299889Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-959 +spec: + metadata: + connID: "316" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777187 + reqtimestampmock: 2025-11-10T12:19:47.122453109Z + restimestampmock: 2025-11-10T12:19:47.122625197Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-960 +spec: + metadata: + connID: "316" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777187 + reqtimestampmock: 2025-11-10T12:19:47.122749067Z + restimestampmock: 2025-11-10T12:19:47.122808285Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-961 +spec: + metadata: + connID: "316" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 91 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_prod' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 249 + sequence_id: 6 + values: + - type: 253 + name: id + value: 0381a46c-7bc7-4054-b914-322bb96c2cbf + unsigned: false + - type: 253 + name: username + value: temp_user_for_prod + unsigned: false + - type: 253 + name: email + value: temp_user_for_prod@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$eSMJHJJcI0x3lv0h$154cf49b80712b015a57469334a1d24dbfd6be4172a9b9de79dc4d377950ab26fb105ba51a8788bf3baa340ded19fc19e10b12b7c96b4dfa3cde7b375cc3a9c6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777187 + reqtimestampmock: 2025-11-10T12:19:47.123265122Z + restimestampmock: 2025-11-10T12:19:47.123392111Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-962 +spec: + metadata: + connID: "318" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [166, 26, 154, 192, 84, 26, 67, 131, 112, 67, 235, 174, 197, 154, 134, 213, 36, 14, 218, 235, 115, 113, 233, 95, 116, 198, 255, 199, 39, 249, 231, 2] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 294 + auth_plugin_data: [6, 69, 22, 66, 37, 97, 107, 6, 88, 104, 80, 17, 38, 60, 11, 73, 121, 40, 37, 53, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.674670336Z + restimestampmock: 2025-11-10T12:19:48.680682275Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-963 +spec: + metadata: + connID: "318" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.680816394Z + restimestampmock: 2025-11-10T12:19:48.680999712Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-964 +spec: + metadata: + connID: "318" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.681138511Z + restimestampmock: 2025-11-10T12:19:48.681350379Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-965 +spec: + metadata: + connID: "318" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.681460159Z + restimestampmock: 2025-11-10T12:19:48.681585988Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-966 +spec: + metadata: + connID: "318" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='0381a46c-7bc7-4054-b914-322bb96c2cbf' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 0381a46c-7bc7-4054-b914-322bb96c2cbf + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.681753056Z + restimestampmock: 2025-11-10T12:19:48.682122043Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-967 +spec: + metadata: + connID: "318" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='0381a46c-7bc7-4054-b914-322bb96c2cbf' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.682375301Z + restimestampmock: 2025-11-10T12:19:48.682644079Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-968 +spec: + metadata: + connID: "318" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='0381a46c-7bc7-4054-b914-322bb96c2cbf' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.682784967Z + restimestampmock: 2025-11-10T12:19:48.683104964Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-969 +spec: + metadata: + connID: "318" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777188 + reqtimestampmock: 2025-11-10T12:19:48.683218875Z + restimestampmock: 2025-11-10T12:19:48.695851187Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-970 +spec: + metadata: + connID: "320" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [242, 253, 181, 131, 97, 64, 9, 161, 135, 104, 29, 63, 143, 74, 181, 154, 25, 190, 39, 236, 139, 177, 172, 149, 177, 124, 37, 21, 83, 91, 29, 17] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 296 + auth_plugin_data: [26, 5, 102, 127, 110, 71, 55, 34, 39, 115, 45, 97, 46, 118, 87, 47, 38, 28, 72, 109, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777189 + reqtimestampmock: 2025-11-10T12:19:49.513192679Z + restimestampmock: 2025-11-10T12:19:49.52016678Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-971 +spec: + metadata: + connID: "320" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777189 + reqtimestampmock: 2025-11-10T12:19:49.520394468Z + restimestampmock: 2025-11-10T12:19:49.520566647Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-972 +spec: + metadata: + connID: "320" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777189 + reqtimestampmock: 2025-11-10T12:19:49.520691225Z + restimestampmock: 2025-11-10T12:19:49.520844954Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-973 +spec: + metadata: + connID: "320" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777189 + reqtimestampmock: 2025-11-10T12:19:49.520949894Z + restimestampmock: 2025-11-10T12:19:49.521036142Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-974 +spec: + metadata: + connID: "320" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 337 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('148553f6-5ee8-4cde-a1e7-f266507ce08e', 'temp_user_for_res', 'temp_user_for_res@example.in', 'scrypt:32768:8:1$Canko5QD54LLKO11$16375046f64aed14c323dc6ed3295463874a4a80bbe9593ec8d4fca0a218cc58d7f195df3b965baa447df30779b9cc1306fe78923e8a0747507a7a2efa4f0892', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777189 + reqtimestampmock: 2025-11-10T12:19:49.569581944Z + restimestampmock: 2025-11-10T12:19:49.57005455Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-975 +spec: + metadata: + connID: "320" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777189 + reqtimestampmock: 2025-11-10T12:19:49.570168728Z + restimestampmock: 2025-11-10T12:19:49.583763994Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-976 +spec: + metadata: + connID: "322" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [219, 229, 157, 204, 4, 88, 90, 63, 195, 44, 33, 236, 112, 45, 121, 143, 61, 119, 251, 133, 57, 104, 83, 237, 231, 142, 53, 133, 43, 45, 26, 92] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 297 + auth_plugin_data: [75, 38, 8, 105, 79, 41, 80, 97, 75, 79, 111, 10, 87, 90, 60, 61, 76, 87, 64, 34, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777190 + reqtimestampmock: 2025-11-10T12:19:50.260963578Z + restimestampmock: 2025-11-10T12:19:50.267483612Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-977 +spec: + metadata: + connID: "322" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777190 + reqtimestampmock: 2025-11-10T12:19:50.267633881Z + restimestampmock: 2025-11-10T12:19:50.2678088Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-978 +spec: + metadata: + connID: "322" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777190 + reqtimestampmock: 2025-11-10T12:19:50.267911219Z + restimestampmock: 2025-11-10T12:19:50.268037618Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-979 +spec: + metadata: + connID: "322" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777190 + reqtimestampmock: 2025-11-10T12:19:50.268137277Z + restimestampmock: 2025-11-10T12:19:50.268236456Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-980 +spec: + metadata: + connID: "322" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 90 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_res' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 247 + sequence_id: 6 + values: + - type: 253 + name: id + value: 148553f6-5ee8-4cde-a1e7-f266507ce08e + unsigned: false + - type: 253 + name: username + value: temp_user_for_res + unsigned: false + - type: 253 + name: email + value: temp_user_for_res@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Canko5QD54LLKO11$16375046f64aed14c323dc6ed3295463874a4a80bbe9593ec8d4fca0a218cc58d7f195df3b965baa447df30779b9cc1306fe78923e8a0747507a7a2efa4f0892 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777190 + reqtimestampmock: 2025-11-10T12:19:50.268430035Z + restimestampmock: 2025-11-10T12:19:50.268827561Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-981 +spec: + metadata: + connID: "324" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [42, 66, 143, 103, 87, 32, 218, 247, 248, 42, 17, 3, 154, 71, 78, 81, 85, 156, 208, 189, 100, 152, 17, 165, 186, 221, 247, 209, 89, 136, 94, 189] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 298 + auth_plugin_data: [25, 13, 6, 15, 11, 57, 39, 16, 48, 121, 92, 100, 41, 49, 108, 99, 71, 32, 86, 55, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.840026542Z + restimestampmock: 2025-11-10T12:19:51.846768006Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-982 +spec: + metadata: + connID: "324" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.846961263Z + restimestampmock: 2025-11-10T12:19:51.847162152Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-983 +spec: + metadata: + connID: "324" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.84734093Z + restimestampmock: 2025-11-10T12:19:51.847518399Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-984 +spec: + metadata: + connID: "324" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.847638738Z + restimestampmock: 2025-11-10T12:19:51.847746197Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-985 +spec: + metadata: + connID: "324" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='148553f6-5ee8-4cde-a1e7-f266507ce08e' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 148553f6-5ee8-4cde-a1e7-f266507ce08e + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.847942045Z + restimestampmock: 2025-11-10T12:19:51.848321822Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-986 +spec: + metadata: + connID: "324" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='148553f6-5ee8-4cde-a1e7-f266507ce08e' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.84845513Z + restimestampmock: 2025-11-10T12:19:51.848699658Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-987 +spec: + metadata: + connID: "324" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='148553f6-5ee8-4cde-a1e7-f266507ce08e' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.848820687Z + restimestampmock: 2025-11-10T12:19:51.849143745Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-988 +spec: + metadata: + connID: "324" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777191 + reqtimestampmock: 2025-11-10T12:19:51.849243174Z + restimestampmock: 2025-11-10T12:19:51.860878596Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-989 +spec: + metadata: + connID: "326" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [152, 178, 70, 12, 54, 64, 14, 237, 138, 104, 145, 115, 128, 232, 120, 204, 97, 18, 29, 196, 73, 142, 154, 189, 245, 115, 133, 35, 3, 48, 102, 208] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 299 + auth_plugin_data: [42, 7, 15, 49, 117, 96, 34, 54, 76, 85, 21, 89, 78, 47, 56, 60, 34, 76, 1, 48, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777192 + reqtimestampmock: 2025-11-10T12:19:52.650625731Z + restimestampmock: 2025-11-10T12:19:52.656941429Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-990 +spec: + metadata: + connID: "326" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777192 + reqtimestampmock: 2025-11-10T12:19:52.657084388Z + restimestampmock: 2025-11-10T12:19:52.657268626Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-991 +spec: + metadata: + connID: "326" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777192 + reqtimestampmock: 2025-11-10T12:19:52.657397204Z + restimestampmock: 2025-11-10T12:19:52.657569323Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-992 +spec: + metadata: + connID: "326" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777192 + reqtimestampmock: 2025-11-10T12:19:52.657706282Z + restimestampmock: 2025-11-10T12:19:52.657801581Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-993 +spec: + metadata: + connID: "326" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 337 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('042f99f1-0e36-466b-a245-da494416f551', 'temp_user_for_rel', 'temp_user_for_rel@example.in', 'scrypt:32768:8:1$Ft3ECOpI8jHeATsU$6423a2d51e6a4f4a439420287cec2d24b17010fa26a53838242c08c9786f9818623b4a4ae6e95f1aa5f31435fd08feea13001e1756f1afdc0f7693d61be1c019', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777192 + reqtimestampmock: 2025-11-10T12:19:52.7065389Z + restimestampmock: 2025-11-10T12:19:52.706994497Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-994 +spec: + metadata: + connID: "326" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777192 + reqtimestampmock: 2025-11-10T12:19:52.707184235Z + restimestampmock: 2025-11-10T12:19:52.719742749Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-995 +spec: + metadata: + connID: "328" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [60, 108, 60, 113, 184, 248, 50, 57, 30, 176, 142, 81, 73, 99, 104, 88, 32, 21, 183, 198, 4, 41, 244, 153, 180, 6, 121, 199, 234, 115, 26, 32] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 300 + auth_plugin_data: [16, 71, 35, 27, 28, 61, 53, 73, 19, 86, 80, 96, 109, 46, 78, 14, 56, 116, 75, 103, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777193 + reqtimestampmock: 2025-11-10T12:19:53.430993806Z + restimestampmock: 2025-11-10T12:19:53.437112235Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-996 +spec: + metadata: + connID: "328" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777193 + reqtimestampmock: 2025-11-10T12:19:53.437268463Z + restimestampmock: 2025-11-10T12:19:53.437448032Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-997 +spec: + metadata: + connID: "328" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777193 + reqtimestampmock: 2025-11-10T12:19:53.437582801Z + restimestampmock: 2025-11-10T12:19:53.43771752Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-998 +spec: + metadata: + connID: "328" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777193 + reqtimestampmock: 2025-11-10T12:19:53.437818539Z + restimestampmock: 2025-11-10T12:19:53.437918258Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-999 +spec: + metadata: + connID: "328" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 90 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='temp_user_for_rel' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 247 + sequence_id: 6 + values: + - type: 253 + name: id + value: 042f99f1-0e36-466b-a245-da494416f551 + unsigned: false + - type: 253 + name: username + value: temp_user_for_rel + unsigned: false + - type: 253 + name: email + value: temp_user_for_rel@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Ft3ECOpI8jHeATsU$6423a2d51e6a4f4a439420287cec2d24b17010fa26a53838242c08c9786f9818623b4a4ae6e95f1aa5f31435fd08feea13001e1756f1afdc0f7693d61be1c019 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777193 + reqtimestampmock: 2025-11-10T12:19:53.438138766Z + restimestampmock: 2025-11-10T12:19:53.438540553Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1000 +spec: + metadata: + connID: "330" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [208, 121, 12, 216, 231, 46, 233, 26, 239, 14, 29, 77, 5, 216, 65, 208, 134, 237, 2, 117, 1, 52, 64, 237, 226, 31, 5, 175, 34, 18, 30, 41] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 302 + auth_plugin_data: [69, 35, 81, 28, 107, 2, 56, 46, 70, 100, 56, 60, 61, 3, 23, 123, 47, 13, 110, 1, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:54.99384479Z + restimestampmock: 2025-11-10T12:19:55.000031488Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1001 +spec: + metadata: + connID: "330" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:55.000248466Z + restimestampmock: 2025-11-10T12:19:55.000489274Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1002 +spec: + metadata: + connID: "330" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:55.000647533Z + restimestampmock: 2025-11-10T12:19:55.000805231Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1003 +spec: + metadata: + connID: "330" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:55.00096811Z + restimestampmock: 2025-11-10T12:19:55.001080399Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1004 +spec: + metadata: + connID: "330" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='042f99f1-0e36-466b-a245-da494416f551' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 042f99f1-0e36-466b-a245-da494416f551 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:55.001302697Z + restimestampmock: 2025-11-10T12:19:55.001674013Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1005 +spec: + metadata: + connID: "330" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='042f99f1-0e36-466b-a245-da494416f551' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:55.001884153Z + restimestampmock: 2025-11-10T12:19:55.00211898Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1006 +spec: + metadata: + connID: "330" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='042f99f1-0e36-466b-a245-da494416f551' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:55.002304638Z + restimestampmock: 2025-11-10T12:19:55.002657406Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1007 +spec: + metadata: + connID: "330" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777195 + reqtimestampmock: 2025-11-10T12:19:55.002770015Z + restimestampmock: 2025-11-10T12:19:55.017753238Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1008 +spec: + metadata: + connID: "332" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [124, 138, 112, 43, 111, 92, 190, 37, 199, 69, 5, 222, 93, 3, 254, 67, 74, 10, 28, 189, 152, 123, 106, 65, 200, 116, 40, 113, 51, 172, 124, 254] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 303 + auth_plugin_data: [11, 113, 37, 45, 27, 51, 46, 34, 6, 105, 51, 17, 72, 56, 82, 114, 28, 85, 86, 93, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777197 + reqtimestampmock: 2025-11-10T12:19:57.402771217Z + restimestampmock: 2025-11-10T12:19:57.412336947Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1009 +spec: + metadata: + connID: "332" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777197 + reqtimestampmock: 2025-11-10T12:19:57.412601865Z + restimestampmock: 2025-11-10T12:19:57.412809193Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1010 +spec: + metadata: + connID: "332" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777197 + reqtimestampmock: 2025-11-10T12:19:57.412939872Z + restimestampmock: 2025-11-10T12:19:57.41310633Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1011 +spec: + metadata: + connID: "332" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777197 + reqtimestampmock: 2025-11-10T12:19:57.413257469Z + restimestampmock: 2025-11-10T12:19:57.413380097Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1012 +spec: + metadata: + connID: "332" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('254e2932-7422-46fb-81f5-9f9c3b854f14', 'kavita_pune', 'kavita_pune@example.in', 'scrypt:32768:8:1$AyS5f49TGIKiTEbo$0bb5bec2227f8f1feff70fdd048285b289e6944425143a4f16426e6f0d2746660d9b14e3c6b2888d45ef0f6b28f4bb77828eb414afa06855e5424f92785fd9f5', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777197 + reqtimestampmock: 2025-11-10T12:19:57.465464509Z + restimestampmock: 2025-11-10T12:19:57.465943465Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1013 +spec: + metadata: + connID: "332" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777197 + reqtimestampmock: 2025-11-10T12:19:57.466063004Z + restimestampmock: 2025-11-10T12:19:57.477814246Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1014 +spec: + metadata: + connID: "334" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [201, 173, 241, 75, 110, 180, 48, 24, 84, 228, 94, 172, 148, 219, 232, 26, 8, 93, 18, 138, 70, 48, 49, 109, 43, 199, 62, 152, 143, 212, 237, 132] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 304 + auth_plugin_data: [32, 112, 17, 65, 107, 18, 6, 80, 14, 6, 75, 81, 61, 123, 8, 127, 86, 54, 86, 89, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777198 + reqtimestampmock: 2025-11-10T12:19:58.367429262Z + restimestampmock: 2025-11-10T12:19:58.37361275Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1015 +spec: + metadata: + connID: "334" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777198 + reqtimestampmock: 2025-11-10T12:19:58.373746499Z + restimestampmock: 2025-11-10T12:19:58.373908247Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1016 +spec: + metadata: + connID: "334" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777198 + reqtimestampmock: 2025-11-10T12:19:58.374015716Z + restimestampmock: 2025-11-10T12:19:58.374266294Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1017 +spec: + metadata: + connID: "334" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777198 + reqtimestampmock: 2025-11-10T12:19:58.374353243Z + restimestampmock: 2025-11-10T12:19:58.374489663Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1018 +spec: + metadata: + connID: "334" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='kavita_pune' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: 254e2932-7422-46fb-81f5-9f9c3b854f14 + unsigned: false + - type: 253 + name: username + value: kavita_pune + unsigned: false + - type: 253 + name: email + value: kavita_pune@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$AyS5f49TGIKiTEbo$0bb5bec2227f8f1feff70fdd048285b289e6944425143a4f16426e6f0d2746660d9b14e3c6b2888d45ef0f6b28f4bb77828eb414afa06855e5424f92785fd9f5 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777198 + reqtimestampmock: 2025-11-10T12:19:58.374629041Z + restimestampmock: 2025-11-10T12:19:58.375064708Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1019 +spec: + metadata: + connID: "336" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [182, 33, 174, 38, 116, 94, 68, 217, 195, 149, 156, 38, 173, 231, 240, 114, 173, 12, 60, 252, 110, 73, 139, 69, 53, 33, 184, 6, 191, 195, 225, 63] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 306 + auth_plugin_data: [75, 49, 95, 124, 42, 62, 91, 80, 28, 114, 7, 115, 110, 33, 57, 103, 14, 44, 5, 70, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.167705712Z + restimestampmock: 2025-11-10T12:19:59.177037634Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1020 +spec: + metadata: + connID: "336" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.177253282Z + restimestampmock: 2025-11-10T12:19:59.177418201Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1021 +spec: + metadata: + connID: "336" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.177556399Z + restimestampmock: 2025-11-10T12:19:59.177702769Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1022 +spec: + metadata: + connID: "336" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.177809317Z + restimestampmock: 2025-11-10T12:19:59.177904607Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1023 +spec: + metadata: + connID: "336" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='254e2932-7422-46fb-81f5-9f9c3b854f14' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 254e2932-7422-46fb-81f5-9f9c3b854f14 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.178073216Z + restimestampmock: 2025-11-10T12:19:59.178357633Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1024 +spec: + metadata: + connID: "336" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 275 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('7804329b-59a5-4b0b-bc59-386a890cb09d','254e2932-7422-46fb-81f5-9f9c3b854f14','Flat 5, Koregaon Park',NULL,'Pune','Maharashtra','411001','IN','+919890098900',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.17862145Z + restimestampmock: 2025-11-10T12:19:59.178928728Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1025 +spec: + metadata: + connID: "336" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='254e2932-7422-46fb-81f5-9f9c3b854f14' AND id<>'7804329b-59a5-4b0b-bc59-386a890cb09d' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.179099057Z + restimestampmock: 2025-11-10T12:19:59.179376424Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1026 +spec: + metadata: + connID: "336" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.179493543Z + restimestampmock: 2025-11-10T12:19:59.19174172Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1027 +spec: + metadata: + connID: "338" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [28, 171, 216, 218, 126, 38, 104, 198, 33, 97, 22, 248, 245, 20, 133, 15, 189, 93, 149, 115, 55, 59, 169, 255, 60, 79, 31, 50, 244, 134, 131, 148] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 307 + auth_plugin_data: [5, 37, 105, 56, 71, 100, 68, 1, 83, 95, 103, 105, 19, 65, 117, 61, 114, 85, 121, 98, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.906914136Z + restimestampmock: 2025-11-10T12:19:59.91355089Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1028 +spec: + metadata: + connID: "338" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.913741319Z + restimestampmock: 2025-11-10T12:19:59.913933367Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1029 +spec: + metadata: + connID: "338" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.914053756Z + restimestampmock: 2025-11-10T12:19:59.914233055Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1030 +spec: + metadata: + connID: "338" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.914349284Z + restimestampmock: 2025-11-10T12:19:59.914458902Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1031 +spec: + metadata: + connID: "338" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='254e2932-7422-46fb-81f5-9f9c3b854f14' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 254e2932-7422-46fb-81f5-9f9c3b854f14 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.914880069Z + restimestampmock: 2025-11-10T12:19:59.914972428Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1032 +spec: + metadata: + connID: "338" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='254e2932-7422-46fb-81f5-9f9c3b854f14' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.915216906Z + restimestampmock: 2025-11-10T12:19:59.915645324Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1033 +spec: + metadata: + connID: "338" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='254e2932-7422-46fb-81f5-9f9c3b854f14' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.915793811Z + restimestampmock: 2025-11-10T12:19:59.916103989Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1034 +spec: + metadata: + connID: "338" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777199 + reqtimestampmock: 2025-11-10T12:19:59.916237838Z + restimestampmock: 2025-11-10T12:19:59.929633845Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1035 +spec: + metadata: + connID: "340" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [119, 34, 122, 108, 137, 80, 225, 4, 121, 23, 169, 251, 152, 33, 35, 185, 48, 216, 164, 15, 52, 93, 231, 130, 154, 163, 248, 81, 89, 247, 74, 151] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 308 + auth_plugin_data: [51, 70, 26, 24, 8, 75, 9, 119, 56, 93, 127, 124, 126, 103, 34, 45, 107, 78, 25, 96, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777201 + reqtimestampmock: 2025-11-10T12:20:01.939906484Z + restimestampmock: 2025-11-10T12:20:01.946332331Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1036 +spec: + metadata: + connID: "340" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777201 + reqtimestampmock: 2025-11-10T12:20:01.94650666Z + restimestampmock: 2025-11-10T12:20:01.946672499Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1037 +spec: + metadata: + connID: "340" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777201 + reqtimestampmock: 2025-11-10T12:20:01.946781538Z + restimestampmock: 2025-11-10T12:20:01.946916396Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1038 +spec: + metadata: + connID: "340" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777201 + reqtimestampmock: 2025-11-10T12:20:01.947010755Z + restimestampmock: 2025-11-10T12:20:01.947110364Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1039 +spec: + metadata: + connID: "340" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('17dfef3d-5760-456f-a044-ca2226645b00', 'amit_kolkata', 'amit_kolkata@example.in', 'scrypt:32768:8:1$REOf4fvi2sGQdNNe$325cff5bcc52498aa618de817f7c77f590ed66b9751e07848eba1371abf39a50f6c74b0868daa06642f0ed7541e3dba962d5d81cdec55c4d165b93d4e53a3f7c', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777202 + reqtimestampmock: 2025-11-10T12:20:01.996364899Z + restimestampmock: 2025-11-10T12:20:02.001614955Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1040 +spec: + metadata: + connID: "340" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777202 + reqtimestampmock: 2025-11-10T12:20:02.001853263Z + restimestampmock: 2025-11-10T12:20:02.013675153Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1041 +spec: + metadata: + connID: "342" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [21, 65, 5, 92, 131, 142, 50, 243, 85, 203, 131, 237, 241, 134, 100, 78, 228, 193, 184, 113, 61, 57, 214, 51, 76, 99, 124, 50, 117, 230, 135, 131] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 309 + auth_plugin_data: [32, 11, 98, 43, 5, 67, 71, 121, 65, 66, 106, 122, 101, 50, 32, 69, 74, 109, 21, 9, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777202 + reqtimestampmock: 2025-11-10T12:20:02.822495563Z + restimestampmock: 2025-11-10T12:20:02.829527603Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1042 +spec: + metadata: + connID: "342" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777202 + reqtimestampmock: 2025-11-10T12:20:02.829679802Z + restimestampmock: 2025-11-10T12:20:02.82989147Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1043 +spec: + metadata: + connID: "342" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777202 + reqtimestampmock: 2025-11-10T12:20:02.830015119Z + restimestampmock: 2025-11-10T12:20:02.830165758Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1044 +spec: + metadata: + connID: "342" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777202 + reqtimestampmock: 2025-11-10T12:20:02.830311647Z + restimestampmock: 2025-11-10T12:20:02.830411956Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1045 +spec: + metadata: + connID: "342" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='amit_kolkata' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 17dfef3d-5760-456f-a044-ca2226645b00 + unsigned: false + - type: 253 + name: username + value: amit_kolkata + unsigned: false + - type: 253 + name: email + value: amit_kolkata@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$REOf4fvi2sGQdNNe$325cff5bcc52498aa618de817f7c77f590ed66b9751e07848eba1371abf39a50f6c74b0868daa06642f0ed7541e3dba962d5d81cdec55c4d165b93d4e53a3f7c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777202 + reqtimestampmock: 2025-11-10T12:20:02.830583085Z + restimestampmock: 2025-11-10T12:20:02.830945362Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1046 +spec: + metadata: + connID: "344" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [9, 10, 166, 87, 17, 214, 87, 244, 113, 56, 233, 104, 26, 106, 89, 139, 197, 72, 17, 115, 178, 129, 163, 49, 67, 13, 139, 57, 129, 180, 39, 109] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 310 + auth_plugin_data: [121, 86, 127, 53, 42, 99, 16, 17, 11, 126, 66, 12, 19, 1, 80, 123, 57, 60, 33, 81, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.584785104Z + restimestampmock: 2025-11-10T12:20:03.591656266Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1047 +spec: + metadata: + connID: "344" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.591869825Z + restimestampmock: 2025-11-10T12:20:03.592039743Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1048 +spec: + metadata: + connID: "344" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.592120092Z + restimestampmock: 2025-11-10T12:20:03.59227757Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1049 +spec: + metadata: + connID: "344" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.592382801Z + restimestampmock: 2025-11-10T12:20:03.592481259Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1050 +spec: + metadata: + connID: "344" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='17dfef3d-5760-456f-a044-ca2226645b00' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 17dfef3d-5760-456f-a044-ca2226645b00 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.592678438Z + restimestampmock: 2025-11-10T12:20:03.593062724Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1051 +spec: + metadata: + connID: "344" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 272 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('9c7ca41a-0722-4b62-ae20-0ec8d3ce0ce5','17dfef3d-5760-456f-a044-ca2226645b00','15, Park Street',NULL,'Kolkata','West Bengal','700016','IN','+919830098300',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.593250663Z + restimestampmock: 2025-11-10T12:20:03.59356277Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1052 +spec: + metadata: + connID: "344" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='17dfef3d-5760-456f-a044-ca2226645b00' AND id<>'9c7ca41a-0722-4b62-ae20-0ec8d3ce0ce5' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.593690019Z + restimestampmock: 2025-11-10T12:20:03.593953417Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1053 +spec: + metadata: + connID: "344" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777203 + reqtimestampmock: 2025-11-10T12:20:03.594058576Z + restimestampmock: 2025-11-10T12:20:03.605630529Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1054 +spec: + metadata: + connID: "346" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [157, 240, 250, 164, 220, 195, 50, 141, 174, 65, 28, 189, 43, 133, 40, 211, 214, 118, 250, 40, 44, 135, 42, 5, 142, 98, 34, 77, 248, 95, 1, 80] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 312 + auth_plugin_data: [12, 72, 12, 115, 69, 62, 66, 66, 87, 81, 77, 123, 11, 28, 79, 105, 28, 100, 24, 90, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.403088754Z + restimestampmock: 2025-11-10T12:20:04.409199513Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1055 +spec: + metadata: + connID: "346" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.409385811Z + restimestampmock: 2025-11-10T12:20:04.4095494Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1056 +spec: + metadata: + connID: "346" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.409712178Z + restimestampmock: 2025-11-10T12:20:04.409837827Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1057 +spec: + metadata: + connID: "346" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.409952136Z + restimestampmock: 2025-11-10T12:20:04.410087445Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1058 +spec: + metadata: + connID: "346" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='17dfef3d-5760-456f-a044-ca2226645b00' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 17dfef3d-5760-456f-a044-ca2226645b00 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.410282884Z + restimestampmock: 2025-11-10T12:20:04.41073006Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1059 +spec: + metadata: + connID: "346" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='17dfef3d-5760-456f-a044-ca2226645b00' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.410881419Z + restimestampmock: 2025-11-10T12:20:04.411276685Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1060 +spec: + metadata: + connID: "346" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='17dfef3d-5760-456f-a044-ca2226645b00' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.411407644Z + restimestampmock: 2025-11-10T12:20:04.411655112Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1061 +spec: + metadata: + connID: "346" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777204 + reqtimestampmock: 2025-11-10T12:20:04.411768631Z + restimestampmock: 2025-11-10T12:20:04.42368529Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1062 +spec: + metadata: + connID: "348" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [50, 145, 37, 40, 118, 107, 127, 81, 22, 6, 17, 117, 160, 187, 30, 94, 99, 51, 186, 129, 207, 23, 131, 214, 157, 35, 124, 66, 68, 213, 61, 192] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 313 + auth_plugin_data: [56, 92, 28, 10, 39, 114, 127, 94, 8, 61, 65, 89, 57, 117, 20, 39, 46, 26, 124, 82, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777206 + reqtimestampmock: 2025-11-10T12:20:06.263346032Z + restimestampmock: 2025-11-10T12:20:06.269592259Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1063 +spec: + metadata: + connID: "348" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777206 + reqtimestampmock: 2025-11-10T12:20:06.269800146Z + restimestampmock: 2025-11-10T12:20:06.269970376Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1064 +spec: + metadata: + connID: "348" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777206 + reqtimestampmock: 2025-11-10T12:20:06.270107704Z + restimestampmock: 2025-11-10T12:20:06.270297253Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1065 +spec: + metadata: + connID: "348" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777206 + reqtimestampmock: 2025-11-10T12:20:06.270412101Z + restimestampmock: 2025-11-10T12:20:06.270511451Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1066 +spec: + metadata: + connID: "348" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 333 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('25712cc5-6d68-48ea-8437-333cf1ad5cb2', 'lakshmi_chennai', 'lakshmi_chennai@example.in', 'scrypt:32768:8:1$OAmVpujq0k9C6sAj$22953a7d7a15978128b13c1c85c73bc20d9b50ade2e87fde87d5b4d76be0e81fb95f973dceeee08f7bf1351a96012eb97650f709b9da9f2886bf0341ba1521cc', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777206 + reqtimestampmock: 2025-11-10T12:20:06.31932218Z + restimestampmock: 2025-11-10T12:20:06.319798245Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1067 +spec: + metadata: + connID: "348" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777206 + reqtimestampmock: 2025-11-10T12:20:06.319951734Z + restimestampmock: 2025-11-10T12:20:06.331693856Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1068 +spec: + metadata: + connID: "350" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [212, 173, 98, 225, 198, 220, 181, 161, 182, 127, 8, 143, 146, 76, 216, 162, 200, 52, 82, 75, 94, 134, 53, 125, 197, 203, 225, 132, 167, 136, 112, 139] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 314 + auth_plugin_data: [116, 8, 112, 46, 40, 121, 48, 59, 113, 70, 90, 83, 67, 90, 37, 53, 1, 13, 89, 115, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.028095073Z + restimestampmock: 2025-11-10T12:20:07.034646058Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1069 +spec: + metadata: + connID: "350" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.034824327Z + restimestampmock: 2025-11-10T12:20:07.035005005Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1070 +spec: + metadata: + connID: "350" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.035126804Z + restimestampmock: 2025-11-10T12:20:07.035285453Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1071 +spec: + metadata: + connID: "350" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.035415501Z + restimestampmock: 2025-11-10T12:20:07.03552874Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1072 +spec: + metadata: + connID: "350" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 88 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='lakshmi_chennai' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 243 + sequence_id: 6 + values: + - type: 253 + name: id + value: 25712cc5-6d68-48ea-8437-333cf1ad5cb2 + unsigned: false + - type: 253 + name: username + value: lakshmi_chennai + unsigned: false + - type: 253 + name: email + value: lakshmi_chennai@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$OAmVpujq0k9C6sAj$22953a7d7a15978128b13c1c85c73bc20d9b50ade2e87fde87d5b4d76be0e81fb95f973dceeee08f7bf1351a96012eb97650f709b9da9f2886bf0341ba1521cc + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.035729479Z + restimestampmock: 2025-11-10T12:20:07.037806262Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1073 +spec: + metadata: + connID: "352" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [197, 58, 224, 114, 238, 47, 187, 79, 59, 212, 132, 167, 160, 6, 192, 227, 149, 155, 236, 70, 105, 113, 88, 118, 208, 124, 139, 249, 150, 96, 190, 204] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 315 + auth_plugin_data: [13, 17, 119, 46, 55, 27, 66, 62, 49, 1, 11, 44, 14, 12, 87, 111, 16, 104, 72, 118, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.77679062Z + restimestampmock: 2025-11-10T12:20:07.783315205Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1074 +spec: + metadata: + connID: "352" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.783511283Z + restimestampmock: 2025-11-10T12:20:07.783683783Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1075 +spec: + metadata: + connID: "352" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.783883471Z + restimestampmock: 2025-11-10T12:20:07.784067699Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1076 +spec: + metadata: + connID: "352" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.784211818Z + restimestampmock: 2025-11-10T12:20:07.784324277Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1077 +spec: + metadata: + connID: "352" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='25712cc5-6d68-48ea-8437-333cf1ad5cb2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 25712cc5-6d68-48ea-8437-333cf1ad5cb2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.784487106Z + restimestampmock: 2025-11-10T12:20:07.784880202Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1078 +spec: + metadata: + connID: "352" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 270 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('5d4c1ed2-bfe3-48b3-9941-c099827911e3','25712cc5-6d68-48ea-8437-333cf1ad5cb2','No 10, T Nagar',NULL,'Chennai','Tamil Nadu','600017','IN','+919840098400',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.785063021Z + restimestampmock: 2025-11-10T12:20:07.785399168Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1079 +spec: + metadata: + connID: "352" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='25712cc5-6d68-48ea-8437-333cf1ad5cb2' AND id<>'5d4c1ed2-bfe3-48b3-9941-c099827911e3' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.785620236Z + restimestampmock: 2025-11-10T12:20:07.785898284Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1080 +spec: + metadata: + connID: "352" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777207 + reqtimestampmock: 2025-11-10T12:20:07.786038712Z + restimestampmock: 2025-11-10T12:20:07.79463405Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1081 +spec: + metadata: + connID: "354" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [112, 41, 7, 62, 132, 244, 254, 221, 43, 5, 17, 27, 192, 203, 220, 247, 96, 22, 150, 101, 180, 74, 89, 165, 93, 174, 245, 79, 157, 57, 59, 145] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 316 + auth_plugin_data: [79, 114, 89, 101, 115, 46, 59, 121, 51, 32, 75, 113, 58, 114, 83, 37, 115, 1, 47, 92, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.619564885Z + restimestampmock: 2025-11-10T12:20:08.625681694Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1082 +spec: + metadata: + connID: "354" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.625821813Z + restimestampmock: 2025-11-10T12:20:08.625996641Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1083 +spec: + metadata: + connID: "354" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.626171869Z + restimestampmock: 2025-11-10T12:20:08.626309579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1084 +spec: + metadata: + connID: "354" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.626411699Z + restimestampmock: 2025-11-10T12:20:08.626501867Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1085 +spec: + metadata: + connID: "354" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='25712cc5-6d68-48ea-8437-333cf1ad5cb2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 25712cc5-6d68-48ea-8437-333cf1ad5cb2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.626708416Z + restimestampmock: 2025-11-10T12:20:08.627064862Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1086 +spec: + metadata: + connID: "354" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='25712cc5-6d68-48ea-8437-333cf1ad5cb2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.627209551Z + restimestampmock: 2025-11-10T12:20:08.627678867Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1087 +spec: + metadata: + connID: "354" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='25712cc5-6d68-48ea-8437-333cf1ad5cb2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.627928395Z + restimestampmock: 2025-11-10T12:20:08.628208243Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1088 +spec: + metadata: + connID: "354" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777208 + reqtimestampmock: 2025-11-10T12:20:08.628364832Z + restimestampmock: 2025-11-10T12:20:08.640732558Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1089 +spec: + metadata: + connID: "356" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [95, 247, 181, 133, 96, 181, 171, 204, 142, 127, 141, 190, 14, 92, 195, 121, 150, 63, 26, 35, 99, 234, 246, 107, 8, 54, 212, 98, 162, 108, 10, 247] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 318 + auth_plugin_data: [59, 82, 94, 93, 1, 88, 91, 53, 37, 47, 17, 41, 91, 18, 63, 126, 92, 27, 61, 30, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777210 + reqtimestampmock: 2025-11-10T12:20:10.698760424Z + restimestampmock: 2025-11-10T12:20:10.70525967Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1090 +spec: + metadata: + connID: "356" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777210 + reqtimestampmock: 2025-11-10T12:20:10.705418568Z + restimestampmock: 2025-11-10T12:20:10.705586777Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1091 +spec: + metadata: + connID: "356" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777210 + reqtimestampmock: 2025-11-10T12:20:10.705687046Z + restimestampmock: 2025-11-10T12:20:10.705829405Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1092 +spec: + metadata: + connID: "356" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777210 + reqtimestampmock: 2025-11-10T12:20:10.705937934Z + restimestampmock: 2025-11-10T12:20:10.706036543Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1093 +spec: + metadata: + connID: "356" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 323 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('e2fdc4cd-cd10-43c3-b083-5b4050c1ab43', 'rajesh_hyd', 'rajesh_hyd@example.in', 'scrypt:32768:8:1$oirPyMNLjiB6HN8d$0a6225e526b2033e8d525819b4e9acbf97f31cd360bb2fd4b13adad46d5f599032543f2d6ff0be078114c28eaa5db56c87351cef7545e217a8ed45a14b505219', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777210 + reqtimestampmock: 2025-11-10T12:20:10.754286628Z + restimestampmock: 2025-11-10T12:20:10.754747613Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1094 +spec: + metadata: + connID: "356" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777210 + reqtimestampmock: 2025-11-10T12:20:10.754893462Z + restimestampmock: 2025-11-10T12:20:10.767622405Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1095 +spec: + metadata: + connID: "358" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [14, 153, 25, 125, 141, 57, 63, 63, 74, 165, 84, 219, 216, 17, 163, 173, 57, 160, 84, 181, 144, 207, 4, 50, 100, 210, 96, 100, 208, 62, 141, 25] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 319 + auth_plugin_data: [10, 25, 33, 6, 55, 32, 6, 93, 47, 97, 38, 65, 83, 70, 39, 79, 109, 55, 50, 72, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777211 + reqtimestampmock: 2025-11-10T12:20:11.460666402Z + restimestampmock: 2025-11-10T12:20:11.466679221Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1096 +spec: + metadata: + connID: "358" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777211 + reqtimestampmock: 2025-11-10T12:20:11.46685089Z + restimestampmock: 2025-11-10T12:20:11.467064658Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1097 +spec: + metadata: + connID: "358" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777211 + reqtimestampmock: 2025-11-10T12:20:11.467188607Z + restimestampmock: 2025-11-10T12:20:11.467366296Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1098 +spec: + metadata: + connID: "358" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777211 + reqtimestampmock: 2025-11-10T12:20:11.467473034Z + restimestampmock: 2025-11-10T12:20:11.467605753Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1099 +spec: + metadata: + connID: "358" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 83 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='rajesh_hyd' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 233 + sequence_id: 6 + values: + - type: 253 + name: id + value: e2fdc4cd-cd10-43c3-b083-5b4050c1ab43 + unsigned: false + - type: 253 + name: username + value: rajesh_hyd + unsigned: false + - type: 253 + name: email + value: rajesh_hyd@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$oirPyMNLjiB6HN8d$0a6225e526b2033e8d525819b4e9acbf97f31cd360bb2fd4b13adad46d5f599032543f2d6ff0be078114c28eaa5db56c87351cef7545e217a8ed45a14b505219 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777211 + reqtimestampmock: 2025-11-10T12:20:11.467792782Z + restimestampmock: 2025-11-10T12:20:11.468191208Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1100 +spec: + metadata: + connID: "360" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [88, 101, 38, 124, 16, 197, 194, 99, 2, 198, 229, 74, 236, 175, 176, 120, 189, 103, 246, 206, 196, 59, 78, 108, 161, 23, 13, 35, 76, 18, 216, 9] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 320 + auth_plugin_data: [115, 59, 35, 25, 51, 62, 39, 20, 30, 56, 26, 119, 94, 125, 106, 81, 27, 44, 120, 19, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.268048287Z + restimestampmock: 2025-11-10T12:20:12.274338944Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1101 +spec: + metadata: + connID: "360" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.274515982Z + restimestampmock: 2025-11-10T12:20:12.274719181Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1102 +spec: + metadata: + connID: "360" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.27484341Z + restimestampmock: 2025-11-10T12:20:12.275008308Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1103 +spec: + metadata: + connID: "360" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.275164007Z + restimestampmock: 2025-11-10T12:20:12.275263706Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1104 +spec: + metadata: + connID: "360" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='e2fdc4cd-cd10-43c3-b083-5b4050c1ab43' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: e2fdc4cd-cd10-43c3-b083-5b4050c1ab43 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.275435284Z + restimestampmock: 2025-11-10T12:20:12.275740383Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1105 +spec: + metadata: + connID: "360" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 281 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('1320d911-df66-4ba2-9487-538acb3f8028','e2fdc4cd-cd10-43c3-b083-5b4050c1ab43','Banjara Hills, Road No 1',NULL,'Hyderabad','Telangana','500034','IN','+919848012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.27592477Z + restimestampmock: 2025-11-10T12:20:12.276243678Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1106 +spec: + metadata: + connID: "360" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='e2fdc4cd-cd10-43c3-b083-5b4050c1ab43' AND id<>'1320d911-df66-4ba2-9487-538acb3f8028' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.276345927Z + restimestampmock: 2025-11-10T12:20:12.276641384Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1107 +spec: + metadata: + connID: "360" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777212 + reqtimestampmock: 2025-11-10T12:20:12.276744264Z + restimestampmock: 2025-11-10T12:20:12.289579725Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1108 +spec: + metadata: + connID: "362" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [226, 179, 31, 149, 18, 58, 178, 165, 110, 24, 93, 1, 150, 84, 1, 172, 184, 197, 239, 244, 109, 193, 124, 246, 238, 236, 138, 35, 204, 243, 34, 148] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 321 + auth_plugin_data: [37, 59, 63, 24, 1, 53, 100, 22, 127, 59, 39, 15, 3, 68, 58, 20, 9, 66, 110, 110, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.020131417Z + restimestampmock: 2025-11-10T12:20:13.026201566Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1109 +spec: + metadata: + connID: "362" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.026342106Z + restimestampmock: 2025-11-10T12:20:13.026499654Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1110 +spec: + metadata: + connID: "362" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.026671092Z + restimestampmock: 2025-11-10T12:20:13.026801721Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1111 +spec: + metadata: + connID: "362" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.02690956Z + restimestampmock: 2025-11-10T12:20:13.02699083Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1112 +spec: + metadata: + connID: "362" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='e2fdc4cd-cd10-43c3-b083-5b4050c1ab43' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: e2fdc4cd-cd10-43c3-b083-5b4050c1ab43 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.027132559Z + restimestampmock: 2025-11-10T12:20:13.027483526Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1113 +spec: + metadata: + connID: "362" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='e2fdc4cd-cd10-43c3-b083-5b4050c1ab43' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.027622085Z + restimestampmock: 2025-11-10T12:20:13.028347218Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1114 +spec: + metadata: + connID: "362" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='e2fdc4cd-cd10-43c3-b083-5b4050c1ab43' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.028491027Z + restimestampmock: 2025-11-10T12:20:13.028767005Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1115 +spec: + metadata: + connID: "362" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777213 + reqtimestampmock: 2025-11-10T12:20:13.028870144Z + restimestampmock: 2025-11-10T12:20:13.040495377Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1116 +spec: + metadata: + connID: "364" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [19, 239, 71, 20, 13, 187, 156, 5, 226, 173, 160, 231, 57, 172, 135, 116, 30, 36, 142, 30, 247, 78, 156, 187, 163, 13, 28, 51, 173, 139, 127, 24] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 324 + auth_plugin_data: [34, 66, 38, 94, 113, 11, 67, 5, 1, 98, 59, 51, 69, 108, 27, 13, 35, 40, 113, 57, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777220 + reqtimestampmock: 2025-11-10T12:20:20.773590718Z + restimestampmock: 2025-11-10T12:20:20.779578448Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1117 +spec: + metadata: + connID: "364" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777220 + reqtimestampmock: 2025-11-10T12:20:20.779715036Z + restimestampmock: 2025-11-10T12:20:20.779923255Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1118 +spec: + metadata: + connID: "364" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777220 + reqtimestampmock: 2025-11-10T12:20:20.780068593Z + restimestampmock: 2025-11-10T12:20:20.780257511Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1119 +spec: + metadata: + connID: "364" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777220 + reqtimestampmock: 2025-11-10T12:20:20.780357031Z + restimestampmock: 2025-11-10T12:20:20.78040627Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1120 +spec: + metadata: + connID: "364" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a60a25ea-934f-48c7-85f1-ea694cbcbac6', 'bad_addr_order', 'bad_addr_order@example.in', 'scrypt:32768:8:1$pbh0axjdsSZs8UFc$9420b2f7f9295ca48b64369d00bd44c856dd134898c8e85c66b2f909d01da53360ecf7e010ab0f07e3e87dfbee6c33f4aef98793f097eb6ec4e19eb05d30689e', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777220 + reqtimestampmock: 2025-11-10T12:20:20.828188368Z + restimestampmock: 2025-11-10T12:20:20.828598455Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1121 +spec: + metadata: + connID: "364" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777220 + reqtimestampmock: 2025-11-10T12:20:20.828722064Z + restimestampmock: 2025-11-10T12:20:20.83751578Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1122 +spec: + metadata: + connID: "366" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [124, 56, 219, 38, 205, 255, 245, 241, 249, 16, 194, 117, 71, 113, 186, 198, 34, 249, 44, 227, 63, 80, 209, 144, 155, 203, 100, 110, 127, 39, 18, 56] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 325 + auth_plugin_data: [7, 26, 78, 35, 67, 46, 51, 42, 63, 124, 95, 54, 75, 58, 75, 122, 76, 18, 127, 63, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777221 + reqtimestampmock: 2025-11-10T12:20:21.513525774Z + restimestampmock: 2025-11-10T12:20:21.519654022Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1123 +spec: + metadata: + connID: "366" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777221 + reqtimestampmock: 2025-11-10T12:20:21.51983801Z + restimestampmock: 2025-11-10T12:20:21.520053469Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1124 +spec: + metadata: + connID: "366" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777221 + reqtimestampmock: 2025-11-10T12:20:21.520168048Z + restimestampmock: 2025-11-10T12:20:21.520291857Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1125 +spec: + metadata: + connID: "366" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777221 + reqtimestampmock: 2025-11-10T12:20:21.520412776Z + restimestampmock: 2025-11-10T12:20:21.520490495Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1126 +spec: + metadata: + connID: "366" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='bad_addr_order' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: a60a25ea-934f-48c7-85f1-ea694cbcbac6 + unsigned: false + - type: 253 + name: username + value: bad_addr_order + unsigned: false + - type: 253 + name: email + value: bad_addr_order@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$pbh0axjdsSZs8UFc$9420b2f7f9295ca48b64369d00bd44c856dd134898c8e85c66b2f909d01da53360ecf7e010ab0f07e3e87dfbee6c33f4aef98793f097eb6ec4e19eb05d30689e + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777221 + reqtimestampmock: 2025-11-10T12:20:21.520736843Z + restimestampmock: 2025-11-10T12:20:21.521098759Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1127 +spec: + metadata: + connID: "368" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [250, 216, 143, 232, 153, 63, 247, 68, 163, 165, 111, 82, 87, 166, 1, 99, 221, 219, 245, 66, 157, 153, 108, 65, 11, 23, 243, 113, 32, 158, 81, 148] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 326 + auth_plugin_data: [85, 104, 37, 107, 1, 32, 93, 63, 95, 114, 83, 3, 45, 51, 105, 26, 65, 104, 77, 114, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777222 + reqtimestampmock: 2025-11-10T12:20:22.991249944Z + restimestampmock: 2025-11-10T12:20:22.999860891Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1128 +spec: + metadata: + connID: "368" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777223 + reqtimestampmock: 2025-11-10T12:20:23.000077598Z + restimestampmock: 2025-11-10T12:20:23.000241888Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1129 +spec: + metadata: + connID: "368" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777223 + reqtimestampmock: 2025-11-10T12:20:23.000356587Z + restimestampmock: 2025-11-10T12:20:23.000481466Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1130 +spec: + metadata: + connID: "368" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777223 + reqtimestampmock: 2025-11-10T12:20:23.000610815Z + restimestampmock: 2025-11-10T12:20:23.000696044Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1131 +spec: + metadata: + connID: "368" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a60a25ea-934f-48c7-85f1-ea694cbcbac6' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a60a25ea-934f-48c7-85f1-ea694cbcbac6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777223 + reqtimestampmock: 2025-11-10T12:20:23.000912932Z + restimestampmock: 2025-11-10T12:20:23.001323899Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1132 +spec: + metadata: + connID: "368" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a60a25ea-934f-48c7-85f1-ea694cbcbac6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777223 + reqtimestampmock: 2025-11-10T12:20:23.001708216Z + restimestampmock: 2025-11-10T12:20:23.001768915Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1133 +spec: + metadata: + connID: "368" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a60a25ea-934f-48c7-85f1-ea694cbcbac6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777223 + reqtimestampmock: 2025-11-10T12:20:23.001921954Z + restimestampmock: 2025-11-10T12:20:23.002268271Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1134 +spec: + metadata: + connID: "368" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777223 + reqtimestampmock: 2025-11-10T12:20:23.002387899Z + restimestampmock: 2025-11-10T12:20:23.012507565Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1135 +spec: + metadata: + connID: "370" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [90, 216, 39, 57, 141, 34, 110, 242, 135, 182, 173, 114, 171, 63, 126, 207, 30, 38, 182, 241, 99, 125, 248, 165, 13, 183, 167, 91, 42, 211, 221, 207] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 328 + auth_plugin_data: [84, 53, 12, 43, 113, 25, 117, 1, 4, 107, 22, 24, 31, 75, 19, 115, 17, 37, 42, 5, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.121383427Z + restimestampmock: 2025-11-10T12:20:25.127966562Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1136 +spec: + metadata: + connID: "370" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.128210179Z + restimestampmock: 2025-11-10T12:20:25.128412657Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1137 +spec: + metadata: + connID: "370" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.128607316Z + restimestampmock: 2025-11-10T12:20:25.128797784Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1138 +spec: + metadata: + connID: "370" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.128924073Z + restimestampmock: 2025-11-10T12:20:25.129945884Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1139 +spec: + metadata: + connID: "370" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 341 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('08d3e990-230d-42c4-afa7-b7582bcec893', 'auth_user_for_order', 'auth_user_for_order@example.in', 'scrypt:32768:8:1$7MuhvoaK9PfHmSJg$3f7a6a0a25b3191e12819e62bfe77cbddb0bfa8ddf3f544e77021e59397e3cc7bac4b977d3f4bc39b2f7eba89cd4bdbb6feccb56e5729361dedc90c9979efecc', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.179501478Z + restimestampmock: 2025-11-10T12:20:25.179874864Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1140 +spec: + metadata: + connID: "370" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.180013604Z + restimestampmock: 2025-11-10T12:20:25.191509547Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1141 +spec: + metadata: + connID: "372" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [103, 93, 174, 40, 252, 115, 15, 132, 196, 47, 41, 6, 54, 157, 247, 84, 15, 182, 161, 170, 150, 225, 19, 221, 107, 43, 31, 181, 227, 7, 73, 154] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 329 + auth_plugin_data: [27, 55, 32, 105, 93, 18, 55, 48, 111, 10, 8, 10, 18, 59, 49, 45, 27, 5, 4, 2, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.940335259Z + restimestampmock: 2025-11-10T12:20:25.946636676Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1142 +spec: + metadata: + connID: "372" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.946776225Z + restimestampmock: 2025-11-10T12:20:25.946965513Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1143 +spec: + metadata: + connID: "372" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.947095741Z + restimestampmock: 2025-11-10T12:20:25.94727186Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1144 +spec: + metadata: + connID: "372" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.947487759Z + restimestampmock: 2025-11-10T12:20:25.947582707Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1145 +spec: + metadata: + connID: "372" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 92 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='auth_user_for_order' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 251 + sequence_id: 6 + values: + - type: 253 + name: id + value: 08d3e990-230d-42c4-afa7-b7582bcec893 + unsigned: false + - type: 253 + name: username + value: auth_user_for_order + unsigned: false + - type: 253 + name: email + value: auth_user_for_order@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$7MuhvoaK9PfHmSJg$3f7a6a0a25b3191e12819e62bfe77cbddb0bfa8ddf3f544e77021e59397e3cc7bac4b977d3f4bc39b2f7eba89cd4bdbb6feccb56e5729361dedc90c9979efecc + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777225 + reqtimestampmock: 2025-11-10T12:20:25.947755286Z + restimestampmock: 2025-11-10T12:20:25.948256402Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1146 +spec: + metadata: + connID: "374" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [81, 19, 48, 92, 255, 229, 77, 112, 93, 37, 218, 101, 9, 228, 241, 161, 41, 200, 63, 165, 42, 43, 110, 160, 174, 223, 134, 230, 27, 247, 12, 166] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 330 + auth_plugin_data: [121, 100, 27, 94, 90, 27, 74, 45, 32, 32, 43, 9, 64, 48, 23, 110, 27, 17, 66, 24, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.478864769Z + restimestampmock: 2025-11-10T12:20:27.487405397Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1147 +spec: + metadata: + connID: "374" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.487597455Z + restimestampmock: 2025-11-10T12:20:27.487758325Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1148 +spec: + metadata: + connID: "374" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.487922923Z + restimestampmock: 2025-11-10T12:20:27.488186671Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1149 +spec: + metadata: + connID: "374" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.48832763Z + restimestampmock: 2025-11-10T12:20:27.488439058Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1150 +spec: + metadata: + connID: "374" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='08d3e990-230d-42c4-afa7-b7582bcec893' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 08d3e990-230d-42c4-afa7-b7582bcec893 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.488614067Z + restimestampmock: 2025-11-10T12:20:27.489025783Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1151 +spec: + metadata: + connID: "374" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='08d3e990-230d-42c4-afa7-b7582bcec893' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.489295691Z + restimestampmock: 2025-11-10T12:20:27.489670798Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1152 +spec: + metadata: + connID: "374" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='08d3e990-230d-42c4-afa7-b7582bcec893' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.489884076Z + restimestampmock: 2025-11-10T12:20:27.490263384Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1153 +spec: + metadata: + connID: "374" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777227 + reqtimestampmock: 2025-11-10T12:20:27.490353783Z + restimestampmock: 2025-11-10T12:20:27.499327087Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1154 +spec: + metadata: + connID: "376" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [152, 171, 46, 251, 41, 253, 119, 103, 245, 72, 26, 120, 19, 100, 112, 241, 33, 35, 61, 188, 251, 177, 186, 61, 8, 107, 183, 219, 31, 85, 209, 183] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 332 + auth_plugin_data: [49, 9, 9, 119, 18, 49, 99, 54, 1, 81, 62, 123, 113, 55, 55, 38, 64, 98, 45, 78, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.093910988Z + restimestampmock: 2025-11-10T12:20:30.100237316Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1155 +spec: + metadata: + connID: "376" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.100407493Z + restimestampmock: 2025-11-10T12:20:30.100626801Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1156 +spec: + metadata: + connID: "376" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.100733001Z + restimestampmock: 2025-11-10T12:20:30.100966389Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1157 +spec: + metadata: + connID: "376" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.101095608Z + restimestampmock: 2025-11-10T12:20:30.101206057Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1158 +spec: + metadata: + connID: "376" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('84fe4104-56ff-478f-a4eb-aa1c7d9833dd', 'neg_release_user', 'neg_release_user@example.in', 'scrypt:32768:8:1$ADWaINfaU5AyobTM$97f3b7e55dafcbb17c3b21857db4e5916956092c205ed7b7b322d30905e7824b02d47a8840caab005c315cd0144c5cbfc7be0792ae1d6d36c68fd9a9f0bbca23', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.151716382Z + restimestampmock: 2025-11-10T12:20:30.152222708Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1159 +spec: + metadata: + connID: "376" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.152423986Z + restimestampmock: 2025-11-10T12:20:30.164132018Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1160 +spec: + metadata: + connID: "378" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [156, 197, 113, 131, 154, 232, 132, 162, 71, 102, 45, 140, 11, 42, 102, 46, 72, 178, 251, 227, 225, 210, 235, 102, 124, 14, 176, 84, 245, 50, 57, 44] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 333 + auth_plugin_data: [86, 6, 120, 111, 95, 118, 46, 7, 41, 68, 90, 118, 79, 96, 92, 15, 125, 65, 112, 109, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.896693998Z + restimestampmock: 2025-11-10T12:20:30.904231636Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1161 +spec: + metadata: + connID: "378" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.904419553Z + restimestampmock: 2025-11-10T12:20:30.904591212Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1162 +spec: + metadata: + connID: "378" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.904696641Z + restimestampmock: 2025-11-10T12:20:30.90485059Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1163 +spec: + metadata: + connID: "378" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.904958549Z + restimestampmock: 2025-11-10T12:20:30.905055597Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1164 +spec: + metadata: + connID: "378" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='neg_release_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 84fe4104-56ff-478f-a4eb-aa1c7d9833dd + unsigned: false + - type: 253 + name: username + value: neg_release_user + unsigned: false + - type: 253 + name: email + value: neg_release_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$ADWaINfaU5AyobTM$97f3b7e55dafcbb17c3b21857db4e5916956092c205ed7b7b322d30905e7824b02d47a8840caab005c315cd0144c5cbfc7be0792ae1d6d36c68fd9a9f0bbca23 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777230 + reqtimestampmock: 2025-11-10T12:20:30.905229436Z + restimestampmock: 2025-11-10T12:20:30.905691042Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1165 +spec: + metadata: + connID: "380" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [248, 250, 102, 53, 52, 87, 184, 4, 26, 209, 140, 93, 131, 155, 96, 99, 41, 163, 241, 45, 204, 53, 76, 32, 126, 76, 135, 186, 10, 169, 26, 79] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 334 + auth_plugin_data: [57, 37, 1, 89, 112, 19, 33, 121, 102, 53, 57, 96, 104, 105, 78, 86, 125, 12, 114, 91, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.420973953Z + restimestampmock: 2025-11-10T12:20:32.427079951Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1166 +spec: + metadata: + connID: "380" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.427275759Z + restimestampmock: 2025-11-10T12:20:32.427460348Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1167 +spec: + metadata: + connID: "380" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.427560468Z + restimestampmock: 2025-11-10T12:20:32.427698496Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1168 +spec: + metadata: + connID: "380" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.427858105Z + restimestampmock: 2025-11-10T12:20:32.427993293Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1169 +spec: + metadata: + connID: "380" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='84fe4104-56ff-478f-a4eb-aa1c7d9833dd' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 84fe4104-56ff-478f-a4eb-aa1c7d9833dd + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.428180402Z + restimestampmock: 2025-11-10T12:20:32.428524719Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1170 +spec: + metadata: + connID: "380" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='84fe4104-56ff-478f-a4eb-aa1c7d9833dd' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.428728927Z + restimestampmock: 2025-11-10T12:20:32.428962855Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1171 +spec: + metadata: + connID: "380" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='84fe4104-56ff-478f-a4eb-aa1c7d9833dd' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.429111254Z + restimestampmock: 2025-11-10T12:20:32.429459372Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1172 +spec: + metadata: + connID: "380" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777232 + reqtimestampmock: 2025-11-10T12:20:32.429584681Z + restimestampmock: 2025-11-10T12:20:32.438256488Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1173 +spec: + metadata: + connID: "382" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [13, 214, 162, 147, 77, 45, 51, 18, 69, 46, 250, 207, 58, 236, 89, 133, 88, 137, 189, 218, 130, 58, 17, 51, 133, 232, 69, 228, 203, 157, 221, 244] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 336 + auth_plugin_data: [110, 1, 18, 71, 121, 5, 84, 123, 116, 59, 83, 89, 30, 56, 23, 118, 1, 103, 85, 115, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777234 + reqtimestampmock: 2025-11-10T12:20:34.817083739Z + restimestampmock: 2025-11-10T12:20:34.823365016Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1174 +spec: + metadata: + connID: "382" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777234 + reqtimestampmock: 2025-11-10T12:20:34.823550825Z + restimestampmock: 2025-11-10T12:20:34.823757393Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1175 +spec: + metadata: + connID: "382" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777234 + reqtimestampmock: 2025-11-10T12:20:34.823936901Z + restimestampmock: 2025-11-10T12:20:34.82407961Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1176 +spec: + metadata: + connID: "382" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777234 + reqtimestampmock: 2025-11-10T12:20:34.824216069Z + restimestampmock: 2025-11-10T12:20:34.824328639Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1177 +spec: + metadata: + connID: "382" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('868072e7-73dc-4416-a6ea-28c2819950b2', 'neg_reserve_user', 'neg_reserve_user@example.in', 'scrypt:32768:8:1$jX4BWoelyrPLJ0CM$ebf85f97931a35663e1d14bd7506dde857ddec2048e62a104601dcb512266fe292f448abeb2cca9be4571bb93acc98f93b179e101ba411fa950bcb60b916f392', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777234 + reqtimestampmock: 2025-11-10T12:20:34.877264323Z + restimestampmock: 2025-11-10T12:20:34.877721079Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1178 +spec: + metadata: + connID: "382" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777234 + reqtimestampmock: 2025-11-10T12:20:34.877853408Z + restimestampmock: 2025-11-10T12:20:34.887369398Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1179 +spec: + metadata: + connID: "384" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [114, 220, 219, 17, 162, 27, 77, 10, 252, 138, 228, 205, 56, 255, 28, 119, 226, 51, 234, 149, 219, 150, 83, 94, 126, 149, 197, 149, 128, 92, 131, 222] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 337 + auth_plugin_data: [85, 40, 80, 81, 46, 79, 104, 78, 25, 8, 74, 92, 106, 96, 39, 44, 30, 107, 67, 119, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777235 + reqtimestampmock: 2025-11-10T12:20:35.623715529Z + restimestampmock: 2025-11-10T12:20:35.630038827Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1180 +spec: + metadata: + connID: "384" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777235 + reqtimestampmock: 2025-11-10T12:20:35.630194654Z + restimestampmock: 2025-11-10T12:20:35.630378563Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1181 +spec: + metadata: + connID: "384" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777235 + reqtimestampmock: 2025-11-10T12:20:35.630478932Z + restimestampmock: 2025-11-10T12:20:35.630603391Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1182 +spec: + metadata: + connID: "384" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777235 + reqtimestampmock: 2025-11-10T12:20:35.63068398Z + restimestampmock: 2025-11-10T12:20:35.63076114Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1183 +spec: + metadata: + connID: "384" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='neg_reserve_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 868072e7-73dc-4416-a6ea-28c2819950b2 + unsigned: false + - type: 253 + name: username + value: neg_reserve_user + unsigned: false + - type: 253 + name: email + value: neg_reserve_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$jX4BWoelyrPLJ0CM$ebf85f97931a35663e1d14bd7506dde857ddec2048e62a104601dcb512266fe292f448abeb2cca9be4571bb93acc98f93b179e101ba411fa950bcb60b916f392 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777235 + reqtimestampmock: 2025-11-10T12:20:35.630962148Z + restimestampmock: 2025-11-10T12:20:35.631261465Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1184 +spec: + metadata: + connID: "386" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [222, 47, 104, 165, 140, 70, 102, 156, 97, 253, 163, 149, 196, 43, 80, 46, 42, 14, 86, 190, 45, 230, 3, 121, 76, 85, 139, 207, 46, 253, 97, 204] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 338 + auth_plugin_data: [107, 16, 54, 87, 123, 9, 39, 109, 116, 5, 70, 34, 118, 7, 84, 96, 46, 11, 114, 17, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.150358746Z + restimestampmock: 2025-11-10T12:20:37.157384817Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1185 +spec: + metadata: + connID: "386" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.157577875Z + restimestampmock: 2025-11-10T12:20:37.157754424Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1186 +spec: + metadata: + connID: "386" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.157914552Z + restimestampmock: 2025-11-10T12:20:37.158123451Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1187 +spec: + metadata: + connID: "386" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.15823451Z + restimestampmock: 2025-11-10T12:20:37.158352719Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1188 +spec: + metadata: + connID: "386" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='868072e7-73dc-4416-a6ea-28c2819950b2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 868072e7-73dc-4416-a6ea-28c2819950b2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.158560538Z + restimestampmock: 2025-11-10T12:20:37.158934614Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1189 +spec: + metadata: + connID: "386" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='868072e7-73dc-4416-a6ea-28c2819950b2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.159082763Z + restimestampmock: 2025-11-10T12:20:37.159354711Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1190 +spec: + metadata: + connID: "386" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='868072e7-73dc-4416-a6ea-28c2819950b2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.159463579Z + restimestampmock: 2025-11-10T12:20:37.159734457Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1191 +spec: + metadata: + connID: "386" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777237 + reqtimestampmock: 2025-11-10T12:20:37.159880717Z + restimestampmock: 2025-11-10T12:20:37.169297608Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1192 +spec: + metadata: + connID: "388" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [79, 42, 218, 37, 34, 123, 209, 218, 183, 30, 16, 226, 122, 8, 144, 144, 34, 99, 141, 180, 129, 234, 159, 82, 102, 113, 56, 252, 3, 188, 76, 23] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 340 + auth_plugin_data: [118, 66, 99, 107, 58, 95, 114, 127, 37, 43, 1, 88, 100, 65, 108, 22, 124, 116, 37, 116, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777239 + reqtimestampmock: 2025-11-10T12:20:39.767836986Z + restimestampmock: 2025-11-10T12:20:39.774287052Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1193 +spec: + metadata: + connID: "388" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777239 + reqtimestampmock: 2025-11-10T12:20:39.774431871Z + restimestampmock: 2025-11-10T12:20:39.774670499Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1194 +spec: + metadata: + connID: "388" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777239 + reqtimestampmock: 2025-11-10T12:20:39.774900727Z + restimestampmock: 2025-11-10T12:20:39.774962307Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1195 +spec: + metadata: + connID: "388" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777239 + reqtimestampmock: 2025-11-10T12:20:39.775055296Z + restimestampmock: 2025-11-10T12:20:39.775181865Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1196 +spec: + metadata: + connID: "388" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('5d6a84ae-2dbf-422c-9bbd-134aa47f0127', 'enrich_user', 'enrich_user@example.in', 'scrypt:32768:8:1$EBiaXDPnijbNEn2e$e20af787760e73fb570ddf1d9bf8f4153c44f7c7bd4c10debe56d0df0b427dc5856e404c2ccab4314b5cb8ce12b23c5a803fd39715a067d22f563d55c4a0c57a', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777239 + reqtimestampmock: 2025-11-10T12:20:39.824663439Z + restimestampmock: 2025-11-10T12:20:39.825034556Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1197 +spec: + metadata: + connID: "388" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777239 + reqtimestampmock: 2025-11-10T12:20:39.825165875Z + restimestampmock: 2025-11-10T12:20:39.837276083Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1198 +spec: + metadata: + connID: "390" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [28, 254, 15, 117, 171, 148, 213, 19, 36, 61, 57, 223, 155, 180, 71, 42, 179, 21, 193, 184, 7, 121, 37, 207, 172, 147, 118, 72, 116, 127, 92, 253] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 341 + auth_plugin_data: [92, 113, 93, 93, 90, 28, 126, 48, 77, 20, 87, 71, 35, 55, 15, 98, 45, 88, 82, 65, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777240 + reqtimestampmock: 2025-11-10T12:20:40.585792182Z + restimestampmock: 2025-11-10T12:20:40.592275909Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1199 +spec: + metadata: + connID: "390" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777240 + reqtimestampmock: 2025-11-10T12:20:40.592481776Z + restimestampmock: 2025-11-10T12:20:40.592648586Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1200 +spec: + metadata: + connID: "390" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777240 + reqtimestampmock: 2025-11-10T12:20:40.592752694Z + restimestampmock: 2025-11-10T12:20:40.592903013Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1201 +spec: + metadata: + connID: "390" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777240 + reqtimestampmock: 2025-11-10T12:20:40.593001062Z + restimestampmock: 2025-11-10T12:20:40.593122141Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1202 +spec: + metadata: + connID: "390" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='enrich_user' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: 5d6a84ae-2dbf-422c-9bbd-134aa47f0127 + unsigned: false + - type: 253 + name: username + value: enrich_user + unsigned: false + - type: 253 + name: email + value: enrich_user@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$EBiaXDPnijbNEn2e$e20af787760e73fb570ddf1d9bf8f4153c44f7c7bd4c10debe56d0df0b427dc5856e404c2ccab4314b5cb8ce12b23c5a803fd39715a067d22f563d55c4a0c57a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777240 + reqtimestampmock: 2025-11-10T12:20:40.59329747Z + restimestampmock: 2025-11-10T12:20:40.593749626Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1203 +spec: + metadata: + connID: "392" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [34, 42, 173, 153, 233, 41, 244, 201, 125, 102, 181, 36, 15, 39, 122, 39, 93, 181, 142, 211, 85, 74, 82, 225, 17, 79, 115, 49, 144, 0, 47, 88] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 342 + auth_plugin_data: [26, 32, 87, 46, 123, 13, 42, 92, 112, 29, 1, 16, 64, 60, 18, 123, 39, 60, 125, 29, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.331711705Z + restimestampmock: 2025-11-10T12:20:41.338479697Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1204 +spec: + metadata: + connID: "392" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.338690345Z + restimestampmock: 2025-11-10T12:20:41.338944393Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1205 +spec: + metadata: + connID: "392" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.339072032Z + restimestampmock: 2025-11-10T12:20:41.339275921Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1206 +spec: + metadata: + connID: "392" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.33935369Z + restimestampmock: 2025-11-10T12:20:41.33942984Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1207 +spec: + metadata: + connID: "392" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5d6a84ae-2dbf-422c-9bbd-134aa47f0127' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5d6a84ae-2dbf-422c-9bbd-134aa47f0127 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.339605218Z + restimestampmock: 2025-11-10T12:20:41.340034465Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1208 +spec: + metadata: + connID: "392" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 268 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('c0f33e54-1f63-4c31-bc63-5dd4f8683457','5d6a84ae-2dbf-422c-9bbd-134aa47f0127','123 MG Road',NULL,'Bengaluru','Karnataka','560001','IN','+919876543210',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.340214962Z + restimestampmock: 2025-11-10T12:20:41.34058162Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1209 +spec: + metadata: + connID: "392" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='5d6a84ae-2dbf-422c-9bbd-134aa47f0127' AND id<>'c0f33e54-1f63-4c31-bc63-5dd4f8683457' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.340725469Z + restimestampmock: 2025-11-10T12:20:41.341046486Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1210 +spec: + metadata: + connID: "392" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777241 + reqtimestampmock: 2025-11-10T12:20:41.341186175Z + restimestampmock: 2025-11-10T12:20:41.349241638Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1211 +spec: + metadata: + connID: "394" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [252, 94, 58, 72, 224, 38, 115, 196, 218, 61, 232, 149, 83, 71, 206, 14, 59, 189, 41, 94, 139, 18, 116, 201, 189, 217, 33, 222, 209, 46, 128, 111] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 343 + auth_plugin_data: [22, 32, 127, 28, 99, 33, 2, 79, 6, 45, 51, 26, 106, 62, 94, 14, 72, 101, 46, 81, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.904473278Z + restimestampmock: 2025-11-10T12:20:42.911562699Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1212 +spec: + metadata: + connID: "394" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.911792326Z + restimestampmock: 2025-11-10T12:20:42.911969986Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1213 +spec: + metadata: + connID: "394" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.912072724Z + restimestampmock: 2025-11-10T12:20:42.912215093Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1214 +spec: + metadata: + connID: "394" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.912321372Z + restimestampmock: 2025-11-10T12:20:42.912422431Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1215 +spec: + metadata: + connID: "394" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5d6a84ae-2dbf-422c-9bbd-134aa47f0127' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5d6a84ae-2dbf-422c-9bbd-134aa47f0127 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.91258802Z + restimestampmock: 2025-11-10T12:20:42.912899468Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1216 +spec: + metadata: + connID: "394" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='5d6a84ae-2dbf-422c-9bbd-134aa47f0127' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.913069016Z + restimestampmock: 2025-11-10T12:20:42.913475513Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1217 +spec: + metadata: + connID: "394" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='5d6a84ae-2dbf-422c-9bbd-134aa47f0127' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.913716241Z + restimestampmock: 2025-11-10T12:20:42.914042197Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1218 +spec: + metadata: + connID: "394" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777242 + reqtimestampmock: 2025-11-10T12:20:42.914430354Z + restimestampmock: 2025-11-10T12:20:42.924789998Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1219 +spec: + metadata: + connID: "396" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [206, 254, 81, 89, 47, 216, 234, 190, 234, 57, 127, 44, 6, 111, 43, 213, 218, 241, 41, 120, 219, 133, 124, 41, 37, 128, 97, 227, 210, 218, 19, 172] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 345 + auth_plugin_data: [85, 112, 73, 102, 47, 17, 85, 11, 99, 79, 43, 118, 28, 22, 110, 70, 32, 51, 5, 75, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777245 + reqtimestampmock: 2025-11-10T12:20:45.526555246Z + restimestampmock: 2025-11-10T12:20:45.533819236Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1220 +spec: + metadata: + connID: "396" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777245 + reqtimestampmock: 2025-11-10T12:20:45.534046463Z + restimestampmock: 2025-11-10T12:20:45.534265371Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1221 +spec: + metadata: + connID: "396" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777245 + reqtimestampmock: 2025-11-10T12:20:45.53439089Z + restimestampmock: 2025-11-10T12:20:45.534539419Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1222 +spec: + metadata: + connID: "396" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777245 + reqtimestampmock: 2025-11-10T12:20:45.534658578Z + restimestampmock: 2025-11-10T12:20:45.534774987Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1223 +spec: + metadata: + connID: "396" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 333 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('f8de48e0-82cc-4004-8fb3-3639ebb3be22', 'immediate_login', 'immediate_login@example.in', 'scrypt:32768:8:1$6JSdHFArT7FG30gB$5b7d428eb9e134e13ac05862383ad8543f610ccebab80012060e37ffd99731f514cc4000434dd3e396753e2ab4aea8986e2dd14f68111bb9f26b4b9a9dd95cf9', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777245 + reqtimestampmock: 2025-11-10T12:20:45.581803042Z + restimestampmock: 2025-11-10T12:20:45.582256408Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1224 +spec: + metadata: + connID: "396" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777245 + reqtimestampmock: 2025-11-10T12:20:45.582388157Z + restimestampmock: 2025-11-10T12:20:45.591270673Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1225 +spec: + metadata: + connID: "398" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [170, 214, 13, 25, 178, 26, 136, 86, 120, 99, 73, 19, 175, 85, 108, 231, 186, 227, 40, 36, 8, 146, 219, 239, 62, 153, 236, 3, 58, 99, 45, 145] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 346 + auth_plugin_data: [95, 84, 58, 75, 12, 9, 77, 114, 32, 77, 70, 67, 123, 1, 51, 78, 89, 57, 11, 102, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777246 + reqtimestampmock: 2025-11-10T12:20:46.348265132Z + restimestampmock: 2025-11-10T12:20:46.354954196Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1226 +spec: + metadata: + connID: "398" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777246 + reqtimestampmock: 2025-11-10T12:20:46.355174434Z + restimestampmock: 2025-11-10T12:20:46.355378542Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1227 +spec: + metadata: + connID: "398" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777246 + reqtimestampmock: 2025-11-10T12:20:46.355511801Z + restimestampmock: 2025-11-10T12:20:46.35566392Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1228 +spec: + metadata: + connID: "398" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777246 + reqtimestampmock: 2025-11-10T12:20:46.355822169Z + restimestampmock: 2025-11-10T12:20:46.355919018Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1229 +spec: + metadata: + connID: "398" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 88 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='immediate_login' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 243 + sequence_id: 6 + values: + - type: 253 + name: id + value: f8de48e0-82cc-4004-8fb3-3639ebb3be22 + unsigned: false + - type: 253 + name: username + value: immediate_login + unsigned: false + - type: 253 + name: email + value: immediate_login@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$6JSdHFArT7FG30gB$5b7d428eb9e134e13ac05862383ad8543f610ccebab80012060e37ffd99731f514cc4000434dd3e396753e2ab4aea8986e2dd14f68111bb9f26b4b9a9dd95cf9 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777246 + reqtimestampmock: 2025-11-10T12:20:46.356133066Z + restimestampmock: 2025-11-10T12:20:46.356629362Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1230 +spec: + metadata: + connID: "400" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [232, 2, 16, 237, 3, 4, 129, 61, 195, 22, 100, 157, 129, 210, 10, 110, 160, 151, 95, 39, 194, 192, 208, 43, 121, 53, 129, 202, 27, 12, 118, 181] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 347 + auth_plugin_data: [70, 70, 73, 67, 41, 80, 53, 61, 29, 27, 115, 43, 4, 106, 96, 91, 55, 20, 18, 32, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.139226367Z + restimestampmock: 2025-11-10T12:20:47.146551725Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1231 +spec: + metadata: + connID: "400" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.146716124Z + restimestampmock: 2025-11-10T12:20:47.146909193Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1232 +spec: + metadata: + connID: "400" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.147021412Z + restimestampmock: 2025-11-10T12:20:47.14723964Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1233 +spec: + metadata: + connID: "400" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.147325859Z + restimestampmock: 2025-11-10T12:20:47.147431007Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1234 +spec: + metadata: + connID: "400" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='f8de48e0-82cc-4004-8fb3-3639ebb3be22' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: f8de48e0-82cc-4004-8fb3-3639ebb3be22 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.147572427Z + restimestampmock: 2025-11-10T12:20:47.147956253Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1235 +spec: + metadata: + connID: "400" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='f8de48e0-82cc-4004-8fb3-3639ebb3be22' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.148032384Z + restimestampmock: 2025-11-10T12:20:47.148295051Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1236 +spec: + metadata: + connID: "400" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='f8de48e0-82cc-4004-8fb3-3639ebb3be22' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.14840222Z + restimestampmock: 2025-11-10T12:20:47.148747987Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1237 +spec: + metadata: + connID: "400" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.148831596Z + restimestampmock: 2025-11-10T12:20:47.16023914Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1238 +spec: + metadata: + connID: "402" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [100, 137, 109, 102, 33, 132, 140, 119, 204, 247, 47, 212, 67, 254, 229, 236, 80, 85, 124, 170, 144, 137, 248, 113, 93, 175, 50, 126, 162, 17, 58, 229] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 348 + auth_plugin_data: [49, 3, 77, 26, 84, 114, 16, 91, 76, 13, 92, 110, 38, 20, 55, 102, 80, 11, 15, 31, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.975493331Z + restimestampmock: 2025-11-10T12:20:47.98163003Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1239 +spec: + metadata: + connID: "402" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.981794438Z + restimestampmock: 2025-11-10T12:20:47.981965178Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1240 +spec: + metadata: + connID: "402" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.982093776Z + restimestampmock: 2025-11-10T12:20:47.982238785Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1241 +spec: + metadata: + connID: "402" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777247 + reqtimestampmock: 2025-11-10T12:20:47.982329254Z + restimestampmock: 2025-11-10T12:20:47.982430693Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1242 +spec: + metadata: + connID: "402" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('f820469b-ddda-4dd0-866d-f240033e6b6a', 'delete_verify', 'delete_verify@example.in', 'scrypt:32768:8:1$BRRh3Py73GI81lEZ$548e54d3e357193352958389484371f50e9dcbaef5a8a276d9ea53eeff41b9366a198329276e83072b4cc82d94b122b56d3ff2840f1ab4d2e0b4a89d15f1277c', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777248 + reqtimestampmock: 2025-11-10T12:20:48.033349295Z + restimestampmock: 2025-11-10T12:20:48.033820272Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1243 +spec: + metadata: + connID: "402" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777248 + reqtimestampmock: 2025-11-10T12:20:48.03394974Z + restimestampmock: 2025-11-10T12:20:48.049242272Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1244 +spec: + metadata: + connID: "404" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [66, 143, 145, 211, 10, 254, 214, 126, 179, 186, 10, 17, 48, 143, 54, 48, 6, 87, 57, 166, 6, 173, 17, 207, 3, 87, 83, 221, 166, 79, 49, 50] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 349 + auth_plugin_data: [59, 66, 91, 90, 77, 79, 47, 57, 52, 102, 96, 127, 60, 68, 40, 112, 89, 95, 92, 102, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777248 + reqtimestampmock: 2025-11-10T12:20:48.72565714Z + restimestampmock: 2025-11-10T12:20:48.731939176Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1245 +spec: + metadata: + connID: "404" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777248 + reqtimestampmock: 2025-11-10T12:20:48.732129665Z + restimestampmock: 2025-11-10T12:20:48.732306033Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1246 +spec: + metadata: + connID: "404" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777248 + reqtimestampmock: 2025-11-10T12:20:48.732433462Z + restimestampmock: 2025-11-10T12:20:48.732647491Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1247 +spec: + metadata: + connID: "404" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777248 + reqtimestampmock: 2025-11-10T12:20:48.73276362Z + restimestampmock: 2025-11-10T12:20:48.732873169Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1248 +spec: + metadata: + connID: "404" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='delete_verify' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: f820469b-ddda-4dd0-866d-f240033e6b6a + unsigned: false + - type: 253 + name: username + value: delete_verify + unsigned: false + - type: 253 + name: email + value: delete_verify@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$BRRh3Py73GI81lEZ$548e54d3e357193352958389484371f50e9dcbaef5a8a276d9ea53eeff41b9366a198329276e83072b4cc82d94b122b56d3ff2840f1ab4d2e0b4a89d15f1277c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777248 + reqtimestampmock: 2025-11-10T12:20:48.733066077Z + restimestampmock: 2025-11-10T12:20:48.733508763Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1249 +spec: + metadata: + connID: "406" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [17, 79, 237, 122, 124, 58, 210, 157, 56, 21, 139, 130, 184, 101, 165, 244, 247, 67, 215, 105, 166, 145, 197, 126, 156, 236, 190, 133, 121, 181, 238, 243] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 351 + auth_plugin_data: [58, 66, 84, 112, 27, 14, 93, 9, 66, 52, 41, 109, 3, 72, 96, 112, 82, 85, 99, 13, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.498052531Z + restimestampmock: 2025-11-10T12:20:49.504381118Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1250 +spec: + metadata: + connID: "406" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.504547936Z + restimestampmock: 2025-11-10T12:20:49.504795664Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1251 +spec: + metadata: + connID: "406" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.504919913Z + restimestampmock: 2025-11-10T12:20:49.505074332Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1252 +spec: + metadata: + connID: "406" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.505187971Z + restimestampmock: 2025-11-10T12:20:49.505281159Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1253 +spec: + metadata: + connID: "406" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='f820469b-ddda-4dd0-866d-f240033e6b6a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: f820469b-ddda-4dd0-866d-f240033e6b6a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.505457469Z + restimestampmock: 2025-11-10T12:20:49.505859616Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1254 +spec: + metadata: + connID: "406" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='f820469b-ddda-4dd0-866d-f240033e6b6a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.506066264Z + restimestampmock: 2025-11-10T12:20:49.506335742Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1255 +spec: + metadata: + connID: "406" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='f820469b-ddda-4dd0-866d-f240033e6b6a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.50649732Z + restimestampmock: 2025-11-10T12:20:49.506845297Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1256 +spec: + metadata: + connID: "406" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777249 + reqtimestampmock: 2025-11-10T12:20:49.506949996Z + restimestampmock: 2025-11-10T12:20:49.514223436Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1257 +spec: + metadata: + connID: "408" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [25, 187, 41, 40, 175, 22, 8, 162, 11, 95, 182, 58, 11, 146, 116, 18, 22, 12, 45, 94, 114, 113, 228, 137, 183, 28, 119, 176, 46, 57, 120, 63] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 352 + auth_plugin_data: [38, 91, 73, 41, 98, 54, 37, 52, 69, 126, 113, 37, 76, 94, 117, 79, 120, 116, 96, 20, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777250 + reqtimestampmock: 2025-11-10T12:20:50.235897142Z + restimestampmock: 2025-11-10T12:20:50.242051571Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1258 +spec: + metadata: + connID: "408" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777250 + reqtimestampmock: 2025-11-10T12:20:50.242244129Z + restimestampmock: 2025-11-10T12:20:50.242442398Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1259 +spec: + metadata: + connID: "408" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777250 + reqtimestampmock: 2025-11-10T12:20:50.242607067Z + restimestampmock: 2025-11-10T12:20:50.242757855Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1260 +spec: + metadata: + connID: "408" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777250 + reqtimestampmock: 2025-11-10T12:20:50.242863755Z + restimestampmock: 2025-11-10T12:20:50.242946523Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1261 +spec: + metadata: + connID: "408" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 109 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, phone, created_at FROM users WHERE id = 'f820469b-ddda-4dd0-866d-f240033e6b6a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 5 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 59 + sequence_id: 6 + catalog: def + schema: user_db + table: users + org_table: users + name: created_at + org_name: created_at + fixed_length: 12 + character_set: 63 + column_length: 19 + type: 7 + flags: 1153 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777250 + reqtimestampmock: 2025-11-10T12:20:50.243201672Z + restimestampmock: 2025-11-10T12:20:50.243691117Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1262 +spec: + metadata: + connID: "410" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [182, 45, 27, 226, 247, 174, 17, 150, 59, 220, 162, 58, 87, 45, 64, 72, 98, 95, 156, 145, 12, 102, 186, 244, 33, 132, 10, 76, 200, 207, 169, 252] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 353 + auth_plugin_data: [63, 34, 60, 63, 40, 12, 118, 89, 51, 50, 112, 8, 115, 20, 84, 72, 66, 35, 29, 100, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.068715107Z + restimestampmock: 2025-11-10T12:20:51.082714909Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1263 +spec: + metadata: + connID: "410" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.082958038Z + restimestampmock: 2025-11-10T12:20:51.083129276Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1264 +spec: + metadata: + connID: "410" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.083308224Z + restimestampmock: 2025-11-10T12:20:51.083438983Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1265 +spec: + metadata: + connID: "410" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.083584162Z + restimestampmock: 2025-11-10T12:20:51.083696932Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1266 +spec: + metadata: + connID: "410" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='delete_verify' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 6 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.083906179Z + restimestampmock: 2025-11-10T12:20:51.084340656Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1267 +spec: + metadata: + connID: "412" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [137, 130, 153, 56, 199, 105, 59, 152, 46, 222, 182, 36, 162, 197, 216, 99, 206, 68, 168, 236, 17, 74, 180, 18, 218, 38, 89, 164, 162, 79, 29, 22] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 354 + auth_plugin_data: [37, 55, 92, 42, 50, 44, 52, 52, 46, 6, 23, 45, 77, 110, 6, 1, 4, 29, 86, 108, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.91004017Z + restimestampmock: 2025-11-10T12:20:51.916439857Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1268 +spec: + metadata: + connID: "412" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.916649935Z + restimestampmock: 2025-11-10T12:20:51.916841623Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1269 +spec: + metadata: + connID: "412" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.916949552Z + restimestampmock: 2025-11-10T12:20:51.917092932Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1270 +spec: + metadata: + connID: "412" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.917184771Z + restimestampmock: 2025-11-10T12:20:51.917300579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1271 +spec: + metadata: + connID: "412" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('5be5ca18-7185-4cc1-847b-7a56eab9c349', 'non_default_addr', 'non_default_addr@example.in', 'scrypt:32768:8:1$A72Ak0KvHlo3ABDb$29e3cbb7e96508f19bce870ffc9bc3ef7ab473b8c93b5d2ed5db51f061b50ae4be7f0940b5da7ed1abf2dcf7156aabb78c27426b5e98af44c37792606cef9750', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.968808367Z + restimestampmock: 2025-11-10T12:20:51.969177254Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1272 +spec: + metadata: + connID: "412" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777251 + reqtimestampmock: 2025-11-10T12:20:51.969336222Z + restimestampmock: 2025-11-10T12:20:51.978181948Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1273 +spec: + metadata: + connID: "414" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [232, 235, 217, 229, 237, 84, 163, 101, 101, 132, 125, 29, 163, 173, 224, 126, 208, 105, 251, 75, 16, 229, 27, 165, 136, 4, 146, 130, 87, 181, 217, 76] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 355 + auth_plugin_data: [85, 13, 108, 9, 39, 115, 96, 83, 102, 10, 109, 31, 76, 31, 75, 17, 115, 37, 17, 51, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777252 + reqtimestampmock: 2025-11-10T12:20:52.666490117Z + restimestampmock: 2025-11-10T12:20:52.672915193Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1274 +spec: + metadata: + connID: "414" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777252 + reqtimestampmock: 2025-11-10T12:20:52.673088322Z + restimestampmock: 2025-11-10T12:20:52.673308309Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1275 +spec: + metadata: + connID: "414" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777252 + reqtimestampmock: 2025-11-10T12:20:52.673406689Z + restimestampmock: 2025-11-10T12:20:52.673548498Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1276 +spec: + metadata: + connID: "414" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777252 + reqtimestampmock: 2025-11-10T12:20:52.673697796Z + restimestampmock: 2025-11-10T12:20:52.673822176Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1277 +spec: + metadata: + connID: "414" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='non_default_addr' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 5be5ca18-7185-4cc1-847b-7a56eab9c349 + unsigned: false + - type: 253 + name: username + value: non_default_addr + unsigned: false + - type: 253 + name: email + value: non_default_addr@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$A72Ak0KvHlo3ABDb$29e3cbb7e96508f19bce870ffc9bc3ef7ab473b8c93b5d2ed5db51f061b50ae4be7f0940b5da7ed1abf2dcf7156aabb78c27426b5e98af44c37792606cef9750 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777252 + reqtimestampmock: 2025-11-10T12:20:52.674032134Z + restimestampmock: 2025-11-10T12:20:52.674509989Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1278 +spec: + metadata: + connID: "416" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [174, 215, 191, 145, 129, 184, 200, 96, 94, 227, 184, 0, 38, 55, 71, 218, 225, 51, 49, 12, 189, 234, 41, 32, 7, 134, 210, 162, 244, 85, 115, 233] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 356 + auth_plugin_data: [119, 37, 53, 25, 73, 66, 20, 42, 1, 5, 65, 102, 50, 19, 91, 92, 1, 126, 104, 57, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777253 + reqtimestampmock: 2025-11-10T12:20:53.39822258Z + restimestampmock: 2025-11-10T12:20:53.404624167Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1279 +spec: + metadata: + connID: "416" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777253 + reqtimestampmock: 2025-11-10T12:20:53.404776876Z + restimestampmock: 2025-11-10T12:20:53.404961635Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1280 +spec: + metadata: + connID: "416" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777253 + reqtimestampmock: 2025-11-10T12:20:53.405059274Z + restimestampmock: 2025-11-10T12:20:53.405239652Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1281 +spec: + metadata: + connID: "416" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777253 + reqtimestampmock: 2025-11-10T12:20:53.405364061Z + restimestampmock: 2025-11-10T12:20:53.40545865Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1282 +spec: + metadata: + connID: "416" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5be5ca18-7185-4cc1-847b-7a56eab9c349' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5be5ca18-7185-4cc1-847b-7a56eab9c349 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777253 + reqtimestampmock: 2025-11-10T12:20:53.405621209Z + restimestampmock: 2025-11-10T12:20:53.406025765Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1283 +spec: + metadata: + connID: "416" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 271 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('afcc695f-bd55-46df-aff7-2687d3bf1e56','5be5ca18-7185-4cc1-847b-7a56eab9c349','Work Office, Infopark',NULL,'Kochi','Kerala','682030','IN','+919847012345',0) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777253 + reqtimestampmock: 2025-11-10T12:20:53.406162824Z + restimestampmock: 2025-11-10T12:20:53.406479391Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1284 +spec: + metadata: + connID: "416" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777253 + reqtimestampmock: 2025-11-10T12:20:53.406581061Z + restimestampmock: 2025-11-10T12:20:53.41618654Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1285 +spec: + metadata: + connID: "418" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [130, 220, 147, 68, 62, 130, 33, 114, 62, 39, 234, 53, 124, 34, 236, 114, 182, 224, 90, 116, 7, 22, 174, 76, 203, 157, 22, 1, 233, 112, 159, 85] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 357 + auth_plugin_data: [89, 82, 122, 100, 87, 8, 58, 99, 72, 85, 67, 2, 113, 41, 73, 37, 73, 79, 64, 29, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.251231027Z + restimestampmock: 2025-11-10T12:20:54.257373156Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1286 +spec: + metadata: + connID: "418" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.257533745Z + restimestampmock: 2025-11-10T12:20:54.257734223Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1287 +spec: + metadata: + connID: "418" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.257851502Z + restimestampmock: 2025-11-10T12:20:54.258005551Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1288 +spec: + metadata: + connID: "418" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.25811831Z + restimestampmock: 2025-11-10T12:20:54.258227429Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1289 +spec: + metadata: + connID: "418" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5be5ca18-7185-4cc1-847b-7a56eab9c349' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5be5ca18-7185-4cc1-847b-7a56eab9c349 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.258406237Z + restimestampmock: 2025-11-10T12:20:54.258746994Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1290 +spec: + metadata: + connID: "418" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='5be5ca18-7185-4cc1-847b-7a56eab9c349' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 99 + sequence_id: 11 + values: + - type: 253 + name: id + value: afcc695f-bd55-46df-aff7-2687d3bf1e56 + unsigned: false + - type: 253 + name: line1 + value: Work Office, Infopark + unsigned: false + - type: 253 + name: line2 + value: null + unsigned: false + - type: 253 + name: city + value: Kochi + unsigned: false + - type: 253 + name: state + value: Kerala + unsigned: false + - type: 253 + name: postal_code + value: "682030" + unsigned: false + - type: 253 + name: country + value: IN + unsigned: false + - type: 253 + name: phone + value: "+919847012345" + unsigned: false + - type: 1 + name: is_default + value: "0" + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 12 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.258910843Z + restimestampmock: 2025-11-10T12:20:54.259714515Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1291 +spec: + metadata: + connID: "420" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [195, 192, 130, 252, 201, 219, 34, 142, 253, 230, 53, 47, 253, 39, 147, 217, 56, 89, 82, 107, 102, 85, 27, 138, 196, 136, 23, 19, 32, 220, 253, 238] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 359 + auth_plugin_data: [82, 124, 96, 103, 125, 117, 1, 23, 25, 102, 1, 45, 23, 61, 121, 123, 57, 92, 28, 73, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.971282281Z + restimestampmock: 2025-11-10T12:20:54.977871005Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1292 +spec: + metadata: + connID: "420" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.978031883Z + restimestampmock: 2025-11-10T12:20:54.978208882Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1293 +spec: + metadata: + connID: "420" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.978324801Z + restimestampmock: 2025-11-10T12:20:54.97848269Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1294 +spec: + metadata: + connID: "420" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.978623879Z + restimestampmock: 2025-11-10T12:20:54.978711628Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1295 +spec: + metadata: + connID: "420" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5be5ca18-7185-4cc1-847b-7a56eab9c349' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5be5ca18-7185-4cc1-847b-7a56eab9c349 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.978901077Z + restimestampmock: 2025-11-10T12:20:54.979279933Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1296 +spec: + metadata: + connID: "420" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='5be5ca18-7185-4cc1-847b-7a56eab9c349' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.979474922Z + restimestampmock: 2025-11-10T12:20:54.979788058Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1297 +spec: + metadata: + connID: "420" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='5be5ca18-7185-4cc1-847b-7a56eab9c349' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.979957488Z + restimestampmock: 2025-11-10T12:20:54.980227555Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1298 +spec: + metadata: + connID: "420" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777254 + reqtimestampmock: 2025-11-10T12:20:54.980353434Z + restimestampmock: 2025-11-10T12:20:54.993109087Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1299 +spec: + metadata: + connID: "422" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [15, 227, 117, 43, 53, 49, 243, 245, 71, 242, 33, 19, 119, 189, 160, 201, 120, 205, 172, 160, 132, 136, 128, 117, 15, 87, 45, 111, 186, 230, 165, 95] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 360 + auth_plugin_data: [78, 37, 113, 113, 69, 81, 107, 33, 112, 127, 40, 102, 123, 98, 123, 26, 94, 34, 67, 73, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777258 + reqtimestampmock: 2025-11-10T12:20:58.638641074Z + restimestampmock: 2025-11-10T12:20:58.645239688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1300 +spec: + metadata: + connID: "422" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777258 + reqtimestampmock: 2025-11-10T12:20:58.645424797Z + restimestampmock: 2025-11-10T12:20:58.645611815Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1301 +spec: + metadata: + connID: "422" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777258 + reqtimestampmock: 2025-11-10T12:20:58.645711064Z + restimestampmock: 2025-11-10T12:20:58.645877603Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1302 +spec: + metadata: + connID: "422" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777258 + reqtimestampmock: 2025-11-10T12:20:58.645962402Z + restimestampmock: 2025-11-10T12:20:58.646123091Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1303 +spec: + metadata: + connID: "422" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 147 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='userwithaveryverylongandunnecessarilycomplexusernamethatshouldstillbevalid' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 6 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777258 + reqtimestampmock: 2025-11-10T12:20:58.64629174Z + restimestampmock: 2025-11-10T12:20:58.646675466Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1304 +spec: + metadata: + connID: "424" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [106, 129, 79, 227, 190, 241, 148, 193, 73, 109, 199, 16, 101, 173, 129, 192, 157, 132, 192, 51, 235, 121, 82, 221, 9, 190, 123, 84, 70, 230, 218, 221] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 362 + auth_plugin_data: [1, 4, 27, 15, 37, 82, 21, 52, 28, 9, 122, 58, 12, 121, 91, 111, 122, 112, 59, 57, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777261 + reqtimestampmock: 2025-11-10T12:21:01.949733833Z + restimestampmock: 2025-11-10T12:21:01.956465856Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1305 +spec: + metadata: + connID: "424" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777261 + reqtimestampmock: 2025-11-10T12:21:01.956625084Z + restimestampmock: 2025-11-10T12:21:01.956817833Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1306 +spec: + metadata: + connID: "424" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777261 + reqtimestampmock: 2025-11-10T12:21:01.956918042Z + restimestampmock: 2025-11-10T12:21:01.95708168Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1307 +spec: + metadata: + connID: "424" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777261 + reqtimestampmock: 2025-11-10T12:21:01.95720291Z + restimestampmock: 2025-11-10T12:21:01.957357688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1308 +spec: + metadata: + connID: "424" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a96df4d6-c21f-47ec-956f-48b8e7afe77b', 'user_-.123', 'user.special@example.in', 'scrypt:32768:8:1$LyYsFPHw7JRWensE$aa74e9b40626889fe2932f30d6f33a41709f71148a2831a2deb50dee1974c546f5377595151d8f54240882ca3a8adc3989a0320b56a213b5f38117005c264af3', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777262 + reqtimestampmock: 2025-11-10T12:21:02.007713925Z + restimestampmock: 2025-11-10T12:21:02.008186531Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1309 +spec: + metadata: + connID: "424" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777262 + reqtimestampmock: 2025-11-10T12:21:02.00833982Z + restimestampmock: 2025-11-10T12:21:02.017216126Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1310 +spec: + metadata: + connID: "426" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [69, 52, 205, 107, 121, 154, 194, 157, 223, 76, 248, 157, 0, 107, 50, 202, 116, 190, 190, 28, 126, 158, 159, 86, 111, 141, 1, 133, 181, 146, 28, 168] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 363 + auth_plugin_data: [76, 122, 98, 37, 28, 116, 41, 63, 114, 12, 78, 87, 18, 42, 16, 69, 102, 124, 23, 70, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777262 + reqtimestampmock: 2025-11-10T12:21:02.846318826Z + restimestampmock: 2025-11-10T12:21:02.852485563Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1311 +spec: + metadata: + connID: "426" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777262 + reqtimestampmock: 2025-11-10T12:21:02.852638583Z + restimestampmock: 2025-11-10T12:21:02.852796921Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1312 +spec: + metadata: + connID: "426" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777262 + reqtimestampmock: 2025-11-10T12:21:02.85289588Z + restimestampmock: 2025-11-10T12:21:02.853042999Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1313 +spec: + metadata: + connID: "426" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777262 + reqtimestampmock: 2025-11-10T12:21:02.853160748Z + restimestampmock: 2025-11-10T12:21:02.853247058Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1314 +spec: + metadata: + connID: "426" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 83 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='user_-.123' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: a96df4d6-c21f-47ec-956f-48b8e7afe77b + unsigned: false + - type: 253 + name: username + value: user_-.123 + unsigned: false + - type: 253 + name: email + value: user.special@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$LyYsFPHw7JRWensE$aa74e9b40626889fe2932f30d6f33a41709f71148a2831a2deb50dee1974c546f5377595151d8f54240882ca3a8adc3989a0320b56a213b5f38117005c264af3 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777262 + reqtimestampmock: 2025-11-10T12:21:02.853452417Z + restimestampmock: 2025-11-10T12:21:02.853877302Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1315 +spec: + metadata: + connID: "428" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [232, 86, 208, 233, 94, 8, 157, 45, 67, 132, 221, 46, 13, 158, 184, 2, 193, 138, 210, 170, 127, 204, 255, 246, 22, 91, 186, 233, 193, 204, 36, 51] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 364 + auth_plugin_data: [109, 119, 13, 112, 56, 60, 65, 95, 105, 21, 43, 32, 10, 75, 80, 71, 86, 2, 100, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.711022178Z + restimestampmock: 2025-11-10T12:21:03.717423753Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1316 +spec: + metadata: + connID: "428" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.717612871Z + restimestampmock: 2025-11-10T12:21:03.71778734Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1317 +spec: + metadata: + connID: "428" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.717928959Z + restimestampmock: 2025-11-10T12:21:03.718079878Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1318 +spec: + metadata: + connID: "428" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.718220107Z + restimestampmock: 2025-11-10T12:21:03.718329285Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1319 +spec: + metadata: + connID: "428" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a96df4d6-c21f-47ec-956f-48b8e7afe77b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a96df4d6-c21f-47ec-956f-48b8e7afe77b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.718496394Z + restimestampmock: 2025-11-10T12:21:03.718823152Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1320 +spec: + metadata: + connID: "428" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a96df4d6-c21f-47ec-956f-48b8e7afe77b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.71900951Z + restimestampmock: 2025-11-10T12:21:03.719271687Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1321 +spec: + metadata: + connID: "428" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a96df4d6-c21f-47ec-956f-48b8e7afe77b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.719723584Z + restimestampmock: 2025-11-10T12:21:03.720065071Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1322 +spec: + metadata: + connID: "428" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777263 + reqtimestampmock: 2025-11-10T12:21:03.72018592Z + restimestampmock: 2025-11-10T12:21:03.730015807Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1323 +spec: + metadata: + connID: "430" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [202, 45, 43, 132, 191, 147, 93, 30, 77, 106, 130, 253, 179, 78, 172, 245, 107, 233, 42, 134, 210, 127, 228, 116, 163, 155, 53, 54, 114, 111, 226, 136] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 366 + auth_plugin_data: [102, 111, 25, 40, 123, 73, 24, 29, 108, 39, 22, 118, 109, 114, 123, 42, 103, 116, 114, 35, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777264 + reqtimestampmock: 2025-11-10T12:21:04.525186151Z + restimestampmock: 2025-11-10T12:21:04.53130326Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1324 +spec: + metadata: + connID: "430" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777264 + reqtimestampmock: 2025-11-10T12:21:04.531469218Z + restimestampmock: 2025-11-10T12:21:04.531658848Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1325 +spec: + metadata: + connID: "430" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777264 + reqtimestampmock: 2025-11-10T12:21:04.531750887Z + restimestampmock: 2025-11-10T12:21:04.531911745Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1326 +spec: + metadata: + connID: "430" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777264 + reqtimestampmock: 2025-11-10T12:21:04.532013424Z + restimestampmock: 2025-11-10T12:21:04.532107203Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1327 +spec: + metadata: + connID: "430" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 341 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('777b90d1-71b1-4983-942d-656250aac340', 'auth_user_for_other', 'auth_user_for_other@example.in', 'scrypt:32768:8:1$hevjeMRkhBKIkxD7$49104df42aa01a53559987d12cf199f2772afad34640c5142f21c6844c3d8db312d0df806600a93a8bf8e56020577fcfe0c4056fa631132919f78e78447e1f21', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777264 + reqtimestampmock: 2025-11-10T12:21:04.57892595Z + restimestampmock: 2025-11-10T12:21:04.579343177Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1328 +spec: + metadata: + connID: "430" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777264 + reqtimestampmock: 2025-11-10T12:21:04.579497456Z + restimestampmock: 2025-11-10T12:21:04.596993829Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1329 +spec: + metadata: + connID: "432" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [252, 15, 84, 231, 139, 73, 143, 21, 53, 126, 68, 139, 102, 55, 57, 81, 242, 165, 215, 175, 53, 45, 221, 36, 90, 195, 8, 231, 84, 3, 110, 88] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 367 + auth_plugin_data: [53, 80, 121, 30, 74, 90, 23, 117, 81, 67, 78, 3, 18, 107, 17, 104, 78, 6, 7, 30, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777265 + reqtimestampmock: 2025-11-10T12:21:05.344336896Z + restimestampmock: 2025-11-10T12:21:05.350910252Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1330 +spec: + metadata: + connID: "432" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777265 + reqtimestampmock: 2025-11-10T12:21:05.35106654Z + restimestampmock: 2025-11-10T12:21:05.351262508Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1331 +spec: + metadata: + connID: "432" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777265 + reqtimestampmock: 2025-11-10T12:21:05.351472476Z + restimestampmock: 2025-11-10T12:21:05.351607215Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1332 +spec: + metadata: + connID: "432" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777265 + reqtimestampmock: 2025-11-10T12:21:05.351749674Z + restimestampmock: 2025-11-10T12:21:05.351837503Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1333 +spec: + metadata: + connID: "432" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('87d0e4a5-0b24-4869-bf5d-258cd2a17ff5', 'order_user_other', 'order_user_other@example.in', 'scrypt:32768:8:1$djGCVj7cMBvutvTt$15b89daaaefd85716aae7802c876ee79f8add72d0b74f3532c184bb3438d5da9845c528b495bb52545a294c952a5588d96a7bec286b5bab6d1ffbea811cd7676', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777265 + reqtimestampmock: 2025-11-10T12:21:05.399109487Z + restimestampmock: 2025-11-10T12:21:05.399584932Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1334 +spec: + metadata: + connID: "432" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777265 + reqtimestampmock: 2025-11-10T12:21:05.399738122Z + restimestampmock: 2025-11-10T12:21:05.412091867Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1335 +spec: + metadata: + connID: "434" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [254, 122, 84, 5, 145, 230, 149, 197, 139, 34, 157, 123, 61, 31, 189, 121, 189, 255, 151, 58, 206, 119, 40, 72, 159, 250, 134, 169, 151, 152, 106, 193] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 368 + auth_plugin_data: [62, 113, 17, 115, 41, 26, 23, 33, 89, 6, 91, 65, 113, 78, 82, 100, 26, 61, 2, 14, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777266 + reqtimestampmock: 2025-11-10T12:21:06.256184982Z + restimestampmock: 2025-11-10T12:21:06.262252421Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1336 +spec: + metadata: + connID: "434" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777266 + reqtimestampmock: 2025-11-10T12:21:06.26240683Z + restimestampmock: 2025-11-10T12:21:06.262578488Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1337 +spec: + metadata: + connID: "434" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777266 + reqtimestampmock: 2025-11-10T12:21:06.262683348Z + restimestampmock: 2025-11-10T12:21:06.262829686Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1338 +spec: + metadata: + connID: "434" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777266 + reqtimestampmock: 2025-11-10T12:21:06.262919716Z + restimestampmock: 2025-11-10T12:21:06.263002775Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1339 +spec: + metadata: + connID: "434" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 92 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='auth_user_for_other' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 251 + sequence_id: 6 + values: + - type: 253 + name: id + value: 777b90d1-71b1-4983-942d-656250aac340 + unsigned: false + - type: 253 + name: username + value: auth_user_for_other + unsigned: false + - type: 253 + name: email + value: auth_user_for_other@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$hevjeMRkhBKIkxD7$49104df42aa01a53559987d12cf199f2772afad34640c5142f21c6844c3d8db312d0df806600a93a8bf8e56020577fcfe0c4056fa631132919f78e78447e1f21 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777266 + reqtimestampmock: 2025-11-10T12:21:06.263180144Z + restimestampmock: 2025-11-10T12:21:06.26354704Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1340 +spec: + metadata: + connID: "436" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [81, 112, 167, 153, 171, 0, 111, 81, 209, 207, 144, 81, 187, 222, 76, 55, 151, 210, 3, 107, 244, 105, 224, 64, 132, 150, 161, 195, 191, 86, 240, 157] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 369 + auth_plugin_data: [113, 19, 91, 71, 76, 82, 79, 95, 70, 105, 33, 26, 126, 98, 107, 72, 37, 16, 8, 57, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.838312132Z + restimestampmock: 2025-11-10T12:21:07.844767938Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1341 +spec: + metadata: + connID: "436" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.844988936Z + restimestampmock: 2025-11-10T12:21:07.845249174Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1342 +spec: + metadata: + connID: "436" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.845364242Z + restimestampmock: 2025-11-10T12:21:07.845565561Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1343 +spec: + metadata: + connID: "436" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.845678301Z + restimestampmock: 2025-11-10T12:21:07.845796739Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1344 +spec: + metadata: + connID: "436" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='777b90d1-71b1-4983-942d-656250aac340' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 777b90d1-71b1-4983-942d-656250aac340 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.845968598Z + restimestampmock: 2025-11-10T12:21:07.846425664Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1345 +spec: + metadata: + connID: "436" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='777b90d1-71b1-4983-942d-656250aac340' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.846625942Z + restimestampmock: 2025-11-10T12:21:07.84686263Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1346 +spec: + metadata: + connID: "436" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='777b90d1-71b1-4983-942d-656250aac340' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.847032908Z + restimestampmock: 2025-11-10T12:21:07.847437225Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1347 +spec: + metadata: + connID: "436" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777267 + reqtimestampmock: 2025-11-10T12:21:07.847887522Z + restimestampmock: 2025-11-10T12:21:07.858007847Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1348 +spec: + metadata: + connID: "438" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [198, 89, 100, 49, 221, 155, 29, 176, 77, 93, 157, 215, 68, 158, 28, 171, 130, 30, 27, 36, 2, 136, 106, 170, 199, 138, 202, 5, 55, 77, 8, 231] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 370 + auth_plugin_data: [109, 51, 10, 29, 4, 35, 16, 86, 61, 22, 75, 94, 111, 7, 111, 21, 105, 21, 86, 98, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777268 + reqtimestampmock: 2025-11-10T12:21:08.593636353Z + restimestampmock: 2025-11-10T12:21:08.600029839Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1349 +spec: + metadata: + connID: "438" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777268 + reqtimestampmock: 2025-11-10T12:21:08.600195807Z + restimestampmock: 2025-11-10T12:21:08.600371046Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1350 +spec: + metadata: + connID: "438" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777268 + reqtimestampmock: 2025-11-10T12:21:08.600485875Z + restimestampmock: 2025-11-10T12:21:08.600736443Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1351 +spec: + metadata: + connID: "438" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777268 + reqtimestampmock: 2025-11-10T12:21:08.600882502Z + restimestampmock: 2025-11-10T12:21:08.600989471Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1352 +spec: + metadata: + connID: "438" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='order_user_other' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: 87d0e4a5-0b24-4869-bf5d-258cd2a17ff5 + unsigned: false + - type: 253 + name: username + value: order_user_other + unsigned: false + - type: 253 + name: email + value: order_user_other@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$djGCVj7cMBvutvTt$15b89daaaefd85716aae7802c876ee79f8add72d0b74f3532c184bb3438d5da9845c528b495bb52545a294c952a5588d96a7bec286b5bab6d1ffbea811cd7676 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777268 + reqtimestampmock: 2025-11-10T12:21:08.601191339Z + restimestampmock: 2025-11-10T12:21:08.601613866Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1353 +spec: + metadata: + connID: "440" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [227, 77, 26, 205, 139, 52, 22, 168, 185, 168, 109, 242, 140, 76, 49, 134, 211, 33, 189, 234, 80, 198, 12, 214, 150, 185, 80, 230, 68, 109, 154, 168] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 372 + auth_plugin_data: [7, 12, 116, 63, 99, 15, 37, 18, 114, 83, 29, 105, 47, 22, 93, 88, 14, 74, 108, 62, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.427582144Z + restimestampmock: 2025-11-10T12:21:09.434038589Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1354 +spec: + metadata: + connID: "440" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.434212378Z + restimestampmock: 2025-11-10T12:21:09.434383017Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1355 +spec: + metadata: + connID: "440" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.434503265Z + restimestampmock: 2025-11-10T12:21:09.434723413Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1356 +spec: + metadata: + connID: "440" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.434871182Z + restimestampmock: 2025-11-10T12:21:09.435018051Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1357 +spec: + metadata: + connID: "440" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='87d0e4a5-0b24-4869-bf5d-258cd2a17ff5' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 87d0e4a5-0b24-4869-bf5d-258cd2a17ff5 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.435247749Z + restimestampmock: 2025-11-10T12:21:09.435621386Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1358 +spec: + metadata: + connID: "440" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='87d0e4a5-0b24-4869-bf5d-258cd2a17ff5' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.435745565Z + restimestampmock: 2025-11-10T12:21:09.435944262Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1359 +spec: + metadata: + connID: "440" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='87d0e4a5-0b24-4869-bf5d-258cd2a17ff5' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.436363669Z + restimestampmock: 2025-11-10T12:21:09.436398329Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1360 +spec: + metadata: + connID: "440" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777269 + reqtimestampmock: 2025-11-10T12:21:09.436541999Z + restimestampmock: 2025-11-10T12:21:09.447891613Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1361 +spec: + metadata: + connID: "442" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [239, 107, 63, 220, 241, 196, 128, 152, 141, 106, 43, 22, 187, 76, 155, 126, 12, 196, 148, 92, 235, 140, 251, 3, 87, 66, 19, 163, 227, 129, 15, 119] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 373 + auth_plugin_data: [111, 77, 117, 71, 24, 125, 109, 37, 81, 53, 125, 27, 126, 69, 54, 88, 55, 2, 67, 1, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.035388866Z + restimestampmock: 2025-11-10T12:21:12.041484416Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1362 +spec: + metadata: + connID: "442" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.041651153Z + restimestampmock: 2025-11-10T12:21:12.041838562Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1363 +spec: + metadata: + connID: "442" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.041950281Z + restimestampmock: 2025-11-10T12:21:12.04209029Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1364 +spec: + metadata: + connID: "442" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.042200129Z + restimestampmock: 2025-11-10T12:21:12.042319748Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1365 +spec: + metadata: + connID: "442" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 337 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('531eb4e5-9d74-4017-a6ff-a400e1a169c8', 'user_no_addresses', 'user_no_addresses@example.in', 'scrypt:32768:8:1$sf01yWa9KDkpyuWV$c374c1e3e79b070943708f241c2fc18e67c913c972298317ec11243844fc51c8859b7cff68f98469b22ac83de253178d79b1be5ab9511e7f7f9cc5ed65dbe434', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.091507725Z + restimestampmock: 2025-11-10T12:21:12.091949401Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1366 +spec: + metadata: + connID: "442" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.092052671Z + restimestampmock: 2025-11-10T12:21:12.101036666Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1367 +spec: + metadata: + connID: "444" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [17, 241, 4, 17, 83, 233, 177, 138, 134, 35, 130, 185, 144, 9, 37, 15, 61, 99, 225, 115, 107, 104, 132, 239, 34, 172, 46, 104, 217, 222, 58, 250] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 374 + auth_plugin_data: [1, 116, 125, 118, 24, 41, 67, 2, 39, 105, 9, 50, 92, 119, 37, 64, 9, 118, 111, 94, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.787466065Z + restimestampmock: 2025-11-10T12:21:12.793754642Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1368 +spec: + metadata: + connID: "444" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.79395151Z + restimestampmock: 2025-11-10T12:21:12.794102609Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1369 +spec: + metadata: + connID: "444" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.794297958Z + restimestampmock: 2025-11-10T12:21:12.794461606Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1370 +spec: + metadata: + connID: "444" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.794605795Z + restimestampmock: 2025-11-10T12:21:12.794750074Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1371 +spec: + metadata: + connID: "444" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 90 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='user_no_addresses' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 247 + sequence_id: 6 + values: + - type: 253 + name: id + value: 531eb4e5-9d74-4017-a6ff-a400e1a169c8 + unsigned: false + - type: 253 + name: username + value: user_no_addresses + unsigned: false + - type: 253 + name: email + value: user_no_addresses@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$sf01yWa9KDkpyuWV$c374c1e3e79b070943708f241c2fc18e67c913c972298317ec11243844fc51c8859b7cff68f98469b22ac83de253178d79b1be5ab9511e7f7f9cc5ed65dbe434 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777272 + reqtimestampmock: 2025-11-10T12:21:12.795120451Z + restimestampmock: 2025-11-10T12:21:12.795661176Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1372 +spec: + metadata: + connID: "446" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [68, 176, 97, 236, 93, 200, 235, 3, 1, 168, 246, 87, 71, 39, 54, 2, 62, 126, 144, 144, 36, 47, 141, 173, 67, 53, 250, 41, 254, 26, 157, 135] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 375 + auth_plugin_data: [64, 91, 42, 1, 6, 58, 48, 5, 125, 98, 106, 32, 80, 1, 11, 72, 24, 111, 3, 120, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777273 + reqtimestampmock: 2025-11-10T12:21:13.627414507Z + restimestampmock: 2025-11-10T12:21:13.633652805Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1373 +spec: + metadata: + connID: "446" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777273 + reqtimestampmock: 2025-11-10T12:21:13.633783823Z + restimestampmock: 2025-11-10T12:21:13.633967372Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1374 +spec: + metadata: + connID: "446" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777273 + reqtimestampmock: 2025-11-10T12:21:13.634056231Z + restimestampmock: 2025-11-10T12:21:13.634217979Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1375 +spec: + metadata: + connID: "446" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777273 + reqtimestampmock: 2025-11-10T12:21:13.63432061Z + restimestampmock: 2025-11-10T12:21:13.634403048Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1376 +spec: + metadata: + connID: "446" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='531eb4e5-9d74-4017-a6ff-a400e1a169c8' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 531eb4e5-9d74-4017-a6ff-a400e1a169c8 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777273 + reqtimestampmock: 2025-11-10T12:21:13.634572307Z + restimestampmock: 2025-11-10T12:21:13.634862034Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1377 +spec: + metadata: + connID: "446" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 190 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, line1, line2, city, state, postal_code, country, phone, is_default FROM addresses WHERE user_id='531eb4e5-9d74-4017-a6ff-a400e1a169c8' ORDER BY is_default DESC, created_at DESC + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 9 + columns: + - header: + payload_length: 51 + sequence_id: 2 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 3 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line1 + org_name: line1 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 4 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: line2 + org_name: line2 + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 5 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: city + org_name: city + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 6 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: state + org_name: state + fixed_length: 12 + character_set: 255 + column_length: 400 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 69 + sequence_id: 7 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: postal_code + org_name: postal_code + fixed_length: 12 + character_set: 255 + column_length: 80 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 61 + sequence_id: 8 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: country + org_name: country + fixed_length: 12 + character_set: 255 + column_length: 8 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 57 + sequence_id: 9 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: phone + org_name: phone + fixed_length: 12 + character_set: 255 + column_length: 128 + type: 253 + flags: 0 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 67 + sequence_id: 10 + catalog: def + schema: user_db + table: addresses + org_table: addresses + name: is_default + org_name: is_default + fixed_length: 12 + character_set: 63 + column_length: 1 + type: 1 + flags: 1 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: [] + FinalResponse: + data: + - 7 + - 0 + - 0 + - 11 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777273 + reqtimestampmock: 2025-11-10T12:21:13.635043743Z + restimestampmock: 2025-11-10T12:21:13.635488399Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1378 +spec: + metadata: + connID: "448" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [196, 213, 205, 106, 107, 202, 242, 248, 90, 103, 141, 127, 173, 172, 72, 170, 253, 160, 49, 10, 30, 158, 167, 133, 207, 195, 45, 77, 39, 196, 23, 132] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 376 + auth_plugin_data: [20, 82, 116, 118, 14, 103, 71, 60, 124, 15, 3, 41, 84, 44, 33, 1, 54, 45, 83, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.359531043Z + restimestampmock: 2025-11-10T12:21:14.366090508Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1379 +spec: + metadata: + connID: "448" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.366293555Z + restimestampmock: 2025-11-10T12:21:14.366487665Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1380 +spec: + metadata: + connID: "448" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.366592864Z + restimestampmock: 2025-11-10T12:21:14.366738242Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1381 +spec: + metadata: + connID: "448" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.366862542Z + restimestampmock: 2025-11-10T12:21:14.366950781Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1382 +spec: + metadata: + connID: "448" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='531eb4e5-9d74-4017-a6ff-a400e1a169c8' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 531eb4e5-9d74-4017-a6ff-a400e1a169c8 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.367119289Z + restimestampmock: 2025-11-10T12:21:14.367438526Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1383 +spec: + metadata: + connID: "448" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='531eb4e5-9d74-4017-a6ff-a400e1a169c8' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.367921752Z + restimestampmock: 2025-11-10T12:21:14.36816161Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1384 +spec: + metadata: + connID: "448" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='531eb4e5-9d74-4017-a6ff-a400e1a169c8' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.368290439Z + restimestampmock: 2025-11-10T12:21:14.368575437Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1385 +spec: + metadata: + connID: "448" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777274 + reqtimestampmock: 2025-11-10T12:21:14.368665247Z + restimestampmock: 2025-11-10T12:21:14.379944021Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1386 +spec: + metadata: + connID: "450" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [220, 146, 251, 169, 123, 178, 65, 123, 52, 173, 12, 216, 42, 205, 153, 184, 48, 3, 242, 45, 177, 118, 94, 59, 110, 195, 248, 56, 71, 165, 195, 122] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 378 + auth_plugin_data: [27, 46, 77, 122, 71, 91, 72, 116, 43, 77, 42, 83, 27, 88, 111, 120, 47, 12, 101, 125, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.187412395Z + restimestampmock: 2025-11-10T12:21:15.193811662Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1387 +spec: + metadata: + connID: "450" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.193966791Z + restimestampmock: 2025-11-10T12:21:15.19416392Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1388 +spec: + metadata: + connID: "450" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.194260028Z + restimestampmock: 2025-11-10T12:21:15.194403518Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1389 +spec: + metadata: + connID: "450" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.194503357Z + restimestampmock: 2025-11-10T12:21:15.194597516Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1390 +spec: + metadata: + connID: "450" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('d9d26f64-586a-45bc-b398-4ae9c5a4d9c2', 'user_no_orders', 'user_no_orders@example.in', 'scrypt:32768:8:1$OZLCDNynuJLP6t9e$b936d98e65758bd241b27c1d8c1ceab26c7cc38086efc2e43981010666c527fe201c306473268de73211cb2a958ebcadd0f945d1d83021d1c4d6a55862607dda', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.242437894Z + restimestampmock: 2025-11-10T12:21:15.24294061Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1391 +spec: + metadata: + connID: "450" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.243091598Z + restimestampmock: 2025-11-10T12:21:15.25592753Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1392 +spec: + metadata: + connID: "452" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [90, 71, 242, 237, 86, 117, 170, 188, 135, 224, 115, 27, 199, 194, 175, 255, 52, 1, 89, 4, 111, 140, 207, 132, 241, 149, 112, 251, 128, 95, 196, 151] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 379 + auth_plugin_data: [23, 111, 92, 14, 116, 125, 13, 122, 103, 56, 54, 118, 116, 108, 1, 49, 121, 85, 20, 68, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.942840118Z + restimestampmock: 2025-11-10T12:21:15.953957965Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1393 +spec: + metadata: + connID: "452" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.954127163Z + restimestampmock: 2025-11-10T12:21:15.954326391Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1394 +spec: + metadata: + connID: "452" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.954432971Z + restimestampmock: 2025-11-10T12:21:15.95458077Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1395 +spec: + metadata: + connID: "452" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.954683918Z + restimestampmock: 2025-11-10T12:21:15.954806717Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1396 +spec: + metadata: + connID: "452" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='user_no_orders' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: d9d26f64-586a-45bc-b398-4ae9c5a4d9c2 + unsigned: false + - type: 253 + name: username + value: user_no_orders + unsigned: false + - type: 253 + name: email + value: user_no_orders@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$OZLCDNynuJLP6t9e$b936d98e65758bd241b27c1d8c1ceab26c7cc38086efc2e43981010666c527fe201c306473268de73211cb2a958ebcadd0f945d1d83021d1c4d6a55862607dda + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777275 + reqtimestampmock: 2025-11-10T12:21:15.954965996Z + restimestampmock: 2025-11-10T12:21:15.955484102Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1397 +spec: + metadata: + connID: "454" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [84, 226, 31, 85, 167, 18, 253, 100, 123, 158, 52, 230, 230, 1, 251, 216, 189, 205, 180, 190, 234, 144, 155, 181, 61, 133, 124, 241, 191, 86, 175, 106] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 380 + auth_plugin_data: [116, 62, 1, 71, 15, 83, 37, 89, 72, 87, 110, 31, 30, 94, 31, 8, 104, 82, 51, 61, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.505239099Z + restimestampmock: 2025-11-10T12:21:17.512100742Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1398 +spec: + metadata: + connID: "454" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.512434249Z + restimestampmock: 2025-11-10T12:21:17.51345688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1399 +spec: + metadata: + connID: "454" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.513600249Z + restimestampmock: 2025-11-10T12:21:17.513751848Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1400 +spec: + metadata: + connID: "454" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.513877147Z + restimestampmock: 2025-11-10T12:21:17.513992136Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1401 +spec: + metadata: + connID: "454" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='d9d26f64-586a-45bc-b398-4ae9c5a4d9c2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: d9d26f64-586a-45bc-b398-4ae9c5a4d9c2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.514199444Z + restimestampmock: 2025-11-10T12:21:17.514621111Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1402 +spec: + metadata: + connID: "454" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='d9d26f64-586a-45bc-b398-4ae9c5a4d9c2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.51478448Z + restimestampmock: 2025-11-10T12:21:17.515046328Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1403 +spec: + metadata: + connID: "454" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='d9d26f64-586a-45bc-b398-4ae9c5a4d9c2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.515225545Z + restimestampmock: 2025-11-10T12:21:17.515571012Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1404 +spec: + metadata: + connID: "454" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777277 + reqtimestampmock: 2025-11-10T12:21:17.515644182Z + restimestampmock: 2025-11-10T12:21:17.526937647Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1405 +spec: + metadata: + connID: "456" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [75, 99, 75, 57, 107, 104, 119, 63, 27, 18, 168, 165, 3, 122, 164, 126, 28, 188, 156, 1, 71, 22, 81, 104, 12, 209, 46, 175, 98, 154, 182, 135] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 382 + auth_plugin_data: [17, 10, 64, 34, 43, 112, 29, 67, 27, 65, 71, 88, 90, 52, 94, 104, 57, 70, 5, 66, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777281 + reqtimestampmock: 2025-11-10T12:21:21.294724649Z + restimestampmock: 2025-11-10T12:21:21.301112375Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1406 +spec: + metadata: + connID: "456" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777281 + reqtimestampmock: 2025-11-10T12:21:21.301278074Z + restimestampmock: 2025-11-10T12:21:21.301485832Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1407 +spec: + metadata: + connID: "456" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777281 + reqtimestampmock: 2025-11-10T12:21:21.301610381Z + restimestampmock: 2025-11-10T12:21:21.30179131Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1408 +spec: + metadata: + connID: "456" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777281 + reqtimestampmock: 2025-11-10T12:21:21.301893749Z + restimestampmock: 2025-11-10T12:21:21.302016908Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1409 +spec: + metadata: + connID: "456" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('f77a805c-a2c8-4646-a16b-1e1cd58249ff', 'addr_bad_json', 'addr_bad_json@example.in', 'scrypt:32768:8:1$aoH11mV085I7c8Ld$2203b3271c757b198a22892848b06df64930c1b09edcb1339112ab41bddb8171a89b1da361544a891790d2a83fd300c60b5dc4557d97e71b5563860dd68bb7dc', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777281 + reqtimestampmock: 2025-11-10T12:21:21.351729701Z + restimestampmock: 2025-11-10T12:21:21.352254746Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1410 +spec: + metadata: + connID: "456" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777281 + reqtimestampmock: 2025-11-10T12:21:21.352434285Z + restimestampmock: 2025-11-10T12:21:21.36492282Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1411 +spec: + metadata: + connID: "458" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [56, 113, 61, 191, 78, 223, 128, 175, 78, 8, 228, 236, 194, 97, 145, 149, 14, 63, 13, 13, 35, 131, 48, 137, 94, 110, 147, 242, 122, 238, 165, 221] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 383 + auth_plugin_data: [8, 21, 47, 72, 2, 4, 67, 1, 46, 67, 76, 71, 75, 62, 120, 93, 87, 118, 41, 8, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777282 + reqtimestampmock: 2025-11-10T12:21:22.133575063Z + restimestampmock: 2025-11-10T12:21:22.139588902Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1412 +spec: + metadata: + connID: "458" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777282 + reqtimestampmock: 2025-11-10T12:21:22.139745071Z + restimestampmock: 2025-11-10T12:21:22.139933338Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1413 +spec: + metadata: + connID: "458" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777282 + reqtimestampmock: 2025-11-10T12:21:22.140071088Z + restimestampmock: 2025-11-10T12:21:22.140293735Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1414 +spec: + metadata: + connID: "458" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777282 + reqtimestampmock: 2025-11-10T12:21:22.140394716Z + restimestampmock: 2025-11-10T12:21:22.140496445Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1415 +spec: + metadata: + connID: "458" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='addr_bad_json' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: f77a805c-a2c8-4646-a16b-1e1cd58249ff + unsigned: false + - type: 253 + name: username + value: addr_bad_json + unsigned: false + - type: 253 + name: email + value: addr_bad_json@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$aoH11mV085I7c8Ld$2203b3271c757b198a22892848b06df64930c1b09edcb1339112ab41bddb8171a89b1da361544a891790d2a83fd300c60b5dc4557d97e71b5563860dd68bb7dc + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777282 + reqtimestampmock: 2025-11-10T12:21:22.140751702Z + restimestampmock: 2025-11-10T12:21:22.141293648Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1416 +spec: + metadata: + connID: "460" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [107, 65, 101, 55, 242, 89, 13, 32, 20, 116, 75, 119, 87, 82, 148, 91, 38, 155, 223, 114, 27, 121, 209, 96, 203, 33, 174, 166, 221, 158, 173, 28] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 384 + auth_plugin_data: [99, 104, 2, 16, 51, 109, 6, 99, 98, 33, 85, 33, 21, 8, 125, 115, 99, 74, 61, 43, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.794027235Z + restimestampmock: 2025-11-10T12:21:23.800898418Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1417 +spec: + metadata: + connID: "460" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.801067676Z + restimestampmock: 2025-11-10T12:21:23.801288074Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1418 +spec: + metadata: + connID: "460" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.801404734Z + restimestampmock: 2025-11-10T12:21:23.801567832Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1419 +spec: + metadata: + connID: "460" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.801663961Z + restimestampmock: 2025-11-10T12:21:23.801760711Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1420 +spec: + metadata: + connID: "460" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='f77a805c-a2c8-4646-a16b-1e1cd58249ff' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: f77a805c-a2c8-4646-a16b-1e1cd58249ff + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.801940309Z + restimestampmock: 2025-11-10T12:21:23.802329186Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1421 +spec: + metadata: + connID: "460" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='f77a805c-a2c8-4646-a16b-1e1cd58249ff' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.802457724Z + restimestampmock: 2025-11-10T12:21:23.802695852Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1422 +spec: + metadata: + connID: "460" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='f77a805c-a2c8-4646-a16b-1e1cd58249ff' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.802839441Z + restimestampmock: 2025-11-10T12:21:23.803170929Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1423 +spec: + metadata: + connID: "460" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777283 + reqtimestampmock: 2025-11-10T12:21:23.803275138Z + restimestampmock: 2025-11-10T12:21:23.81484981Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1424 +spec: + metadata: + connID: "462" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [41, 140, 177, 70, 244, 81, 50, 26, 99, 86, 49, 78, 237, 85, 135, 213, 74, 236, 149, 77, 110, 252, 108, 216, 232, 223, 207, 80, 76, 245, 4, 250] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 386 + auth_plugin_data: [18, 2, 104, 67, 46, 62, 104, 96, 119, 78, 116, 41, 33, 113, 13, 84, 26, 22, 1, 97, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777284 + reqtimestampmock: 2025-11-10T12:21:24.618905786Z + restimestampmock: 2025-11-10T12:21:24.625330363Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1425 +spec: + metadata: + connID: "462" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777284 + reqtimestampmock: 2025-11-10T12:21:24.625515931Z + restimestampmock: 2025-11-10T12:21:24.625672859Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1426 +spec: + metadata: + connID: "462" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777284 + reqtimestampmock: 2025-11-10T12:21:24.625866818Z + restimestampmock: 2025-11-10T12:21:24.626094056Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1427 +spec: + metadata: + connID: "462" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777284 + reqtimestampmock: 2025-11-10T12:21:24.626257865Z + restimestampmock: 2025-11-10T12:21:24.626346564Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1428 +spec: + metadata: + connID: "462" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('bc280dae-7857-442d-ad52-1883bd5394f6', 'order_bad_json', 'order_bad_json@example.in', 'scrypt:32768:8:1$Imj8TvNOp1ZPSXJp$563d57685696d2f795679b19299123addbdec8fc7ef0f69585c3f1d7cfb40f789e12e51b3a0cb8f2d60c12d7a58c92995b96676827bae99ed1537c4e24833b31', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777284 + reqtimestampmock: 2025-11-10T12:21:24.676230966Z + restimestampmock: 2025-11-10T12:21:24.676649871Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1429 +spec: + metadata: + connID: "462" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777284 + reqtimestampmock: 2025-11-10T12:21:24.676771771Z + restimestampmock: 2025-11-10T12:21:24.68883885Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1430 +spec: + metadata: + connID: "464" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [248, 227, 26, 202, 71, 116, 175, 71, 82, 162, 37, 75, 13, 89, 103, 145, 236, 39, 122, 102, 247, 46, 231, 54, 175, 50, 107, 4, 141, 158, 144, 34] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 387 + auth_plugin_data: [105, 25, 33, 53, 126, 46, 103, 3, 108, 47, 71, 104, 13, 94, 98, 79, 37, 76, 33, 108, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777285 + reqtimestampmock: 2025-11-10T12:21:25.368717427Z + restimestampmock: 2025-11-10T12:21:25.374809486Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1431 +spec: + metadata: + connID: "464" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777285 + reqtimestampmock: 2025-11-10T12:21:25.375006164Z + restimestampmock: 2025-11-10T12:21:25.375237583Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1432 +spec: + metadata: + connID: "464" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777285 + reqtimestampmock: 2025-11-10T12:21:25.375349543Z + restimestampmock: 2025-11-10T12:21:25.37549784Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1433 +spec: + metadata: + connID: "464" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777285 + reqtimestampmock: 2025-11-10T12:21:25.37560693Z + restimestampmock: 2025-11-10T12:21:25.375745259Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1434 +spec: + metadata: + connID: "464" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='order_bad_json' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: bc280dae-7857-442d-ad52-1883bd5394f6 + unsigned: false + - type: 253 + name: username + value: order_bad_json + unsigned: false + - type: 253 + name: email + value: order_bad_json@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Imj8TvNOp1ZPSXJp$563d57685696d2f795679b19299123addbdec8fc7ef0f69585c3f1d7cfb40f789e12e51b3a0cb8f2d60c12d7a58c92995b96676827bae99ed1537c4e24833b31 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777285 + reqtimestampmock: 2025-11-10T12:21:25.375965267Z + restimestampmock: 2025-11-10T12:21:25.376450313Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1435 +spec: + metadata: + connID: "466" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [152, 99, 11, 219, 17, 50, 46, 24, 112, 200, 178, 87, 190, 144, 93, 188, 125, 216, 17, 2, 70, 67, 51, 229, 214, 52, 122, 101, 91, 247, 140, 248] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 388 + auth_plugin_data: [47, 65, 70, 5, 124, 118, 19, 56, 88, 10, 80, 77, 57, 81, 74, 22, 109, 66, 104, 120, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.938963178Z + restimestampmock: 2025-11-10T12:21:26.9494574Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1436 +spec: + metadata: + connID: "466" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.949656979Z + restimestampmock: 2025-11-10T12:21:26.949847867Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1437 +spec: + metadata: + connID: "466" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.949969686Z + restimestampmock: 2025-11-10T12:21:26.950131245Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1438 +spec: + metadata: + connID: "466" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.950239644Z + restimestampmock: 2025-11-10T12:21:26.950357413Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1439 +spec: + metadata: + connID: "466" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='bc280dae-7857-442d-ad52-1883bd5394f6' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: bc280dae-7857-442d-ad52-1883bd5394f6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.950506561Z + restimestampmock: 2025-11-10T12:21:26.950916238Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1440 +spec: + metadata: + connID: "466" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='bc280dae-7857-442d-ad52-1883bd5394f6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.951032837Z + restimestampmock: 2025-11-10T12:21:26.951385524Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1441 +spec: + metadata: + connID: "466" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='bc280dae-7857-442d-ad52-1883bd5394f6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.951651722Z + restimestampmock: 2025-11-10T12:21:26.951992869Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1442 +spec: + metadata: + connID: "466" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777286 + reqtimestampmock: 2025-11-10T12:21:26.952119977Z + restimestampmock: 2025-11-10T12:21:26.963815179Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1443 +spec: + metadata: + connID: "468" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [75, 222, 125, 3, 120, 245, 231, 223, 126, 225, 121, 135, 61, 211, 114, 33, 159, 4, 32, 90, 150, 182, 2, 141, 246, 0, 160, 63, 242, 15, 156, 100] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 389 + auth_plugin_data: [91, 40, 97, 56, 78, 57, 96, 98, 43, 32, 62, 4, 109, 86, 40, 111, 102, 86, 13, 60, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777289 + reqtimestampmock: 2025-11-10T12:21:29.167404331Z + restimestampmock: 2025-11-10T12:21:29.173743398Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1444 +spec: + metadata: + connID: "468" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777289 + reqtimestampmock: 2025-11-10T12:21:29.173958896Z + restimestampmock: 2025-11-10T12:21:29.174127355Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1445 +spec: + metadata: + connID: "468" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777289 + reqtimestampmock: 2025-11-10T12:21:29.174260454Z + restimestampmock: 2025-11-10T12:21:29.174438142Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1446 +spec: + metadata: + connID: "468" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777289 + reqtimestampmock: 2025-11-10T12:21:29.174932649Z + restimestampmock: 2025-11-10T12:21:29.175059758Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1447 +spec: + metadata: + connID: "468" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a8f32eb8-2e36-4603-8ba1-182b5a91d48b', 'reserve_bad_json', 'reserve_bad_json@example.in', 'scrypt:32768:8:1$QN9eYMnVwlCv2KWp$81017dcdd8ac9056c5270c2f23e7929955286bce1a6e69a7b1596bd1f3f199ede45873b2d567598df07570a4cd96c4d9a49f7e86e9225fe7914e7ac86f96895c', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777289 + reqtimestampmock: 2025-11-10T12:21:29.225244326Z + restimestampmock: 2025-11-10T12:21:29.225716102Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1448 +spec: + metadata: + connID: "468" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777289 + reqtimestampmock: 2025-11-10T12:21:29.225843791Z + restimestampmock: 2025-11-10T12:21:29.237807221Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1449 +spec: + metadata: + connID: "470" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [82, 170, 203, 49, 171, 89, 196, 132, 62, 173, 134, 41, 35, 153, 82, 15, 202, 214, 217, 207, 38, 10, 40, 84, 134, 122, 241, 41, 121, 25, 119, 240] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 391 + auth_plugin_data: [99, 101, 48, 104, 54, 13, 90, 34, 115, 93, 99, 90, 67, 98, 60, 77, 79, 47, 19, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777290 + reqtimestampmock: 2025-11-10T12:21:30.001288369Z + restimestampmock: 2025-11-10T12:21:30.012099928Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1450 +spec: + metadata: + connID: "470" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777290 + reqtimestampmock: 2025-11-10T12:21:30.012320226Z + restimestampmock: 2025-11-10T12:21:30.012498615Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1451 +spec: + metadata: + connID: "470" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777290 + reqtimestampmock: 2025-11-10T12:21:30.012596864Z + restimestampmock: 2025-11-10T12:21:30.012751763Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1452 +spec: + metadata: + connID: "470" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777290 + reqtimestampmock: 2025-11-10T12:21:30.012871332Z + restimestampmock: 2025-11-10T12:21:30.01297015Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1453 +spec: + metadata: + connID: "470" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='reserve_bad_json' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: a8f32eb8-2e36-4603-8ba1-182b5a91d48b + unsigned: false + - type: 253 + name: username + value: reserve_bad_json + unsigned: false + - type: 253 + name: email + value: reserve_bad_json@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$QN9eYMnVwlCv2KWp$81017dcdd8ac9056c5270c2f23e7929955286bce1a6e69a7b1596bd1f3f199ede45873b2d567598df07570a4cd96c4d9a49f7e86e9225fe7914e7ac86f96895c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777290 + reqtimestampmock: 2025-11-10T12:21:30.01316317Z + restimestampmock: 2025-11-10T12:21:30.013567806Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1454 +spec: + metadata: + connID: "472" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [101, 107, 121, 98, 42, 77, 56, 207, 159, 83, 108, 50, 164, 251, 214, 173, 116, 23, 123, 237, 61, 173, 205, 147, 62, 53, 116, 199, 37, 250, 54, 200] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 392 + auth_plugin_data: [43, 86, 53, 24, 85, 106, 90, 73, 56, 86, 24, 71, 127, 31, 126, 85, 67, 93, 120, 62, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.665894329Z + restimestampmock: 2025-11-10T12:21:31.672719712Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1455 +spec: + metadata: + connID: "472" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.67298388Z + restimestampmock: 2025-11-10T12:21:31.673190798Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1456 +spec: + metadata: + connID: "472" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.673350547Z + restimestampmock: 2025-11-10T12:21:31.673504766Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1457 +spec: + metadata: + connID: "472" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.673631705Z + restimestampmock: 2025-11-10T12:21:31.673743124Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1458 +spec: + metadata: + connID: "472" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a8f32eb8-2e36-4603-8ba1-182b5a91d48b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a8f32eb8-2e36-4603-8ba1-182b5a91d48b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.673955762Z + restimestampmock: 2025-11-10T12:21:31.674370479Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1459 +spec: + metadata: + connID: "472" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a8f32eb8-2e36-4603-8ba1-182b5a91d48b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.674549917Z + restimestampmock: 2025-11-10T12:21:31.675261811Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1460 +spec: + metadata: + connID: "472" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a8f32eb8-2e36-4603-8ba1-182b5a91d48b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.67541249Z + restimestampmock: 2025-11-10T12:21:31.675744637Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1461 +spec: + metadata: + connID: "472" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777291 + reqtimestampmock: 2025-11-10T12:21:31.675863916Z + restimestampmock: 2025-11-10T12:21:31.687008013Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1462 +spec: + metadata: + connID: "474" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [229, 142, 102, 142, 139, 114, 155, 58, 172, 154, 113, 107, 209, 234, 118, 192, 231, 46, 224, 156, 30, 182, 240, 220, 135, 91, 230, 225, 57, 39, 139, 183] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 393 + auth_plugin_data: [32, 42, 114, 124, 101, 55, 1, 101, 76, 25, 5, 78, 98, 79, 21, 112, 92, 65, 87, 52, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777293 + reqtimestampmock: 2025-11-10T12:21:33.765483424Z + restimestampmock: 2025-11-10T12:21:33.772433366Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1463 +spec: + metadata: + connID: "474" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777293 + reqtimestampmock: 2025-11-10T12:21:33.772688734Z + restimestampmock: 2025-11-10T12:21:33.772894351Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1464 +spec: + metadata: + connID: "474" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777293 + reqtimestampmock: 2025-11-10T12:21:33.77302987Z + restimestampmock: 2025-11-10T12:21:33.773210249Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1465 +spec: + metadata: + connID: "474" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777293 + reqtimestampmock: 2025-11-10T12:21:33.773306688Z + restimestampmock: 2025-11-10T12:21:33.773414877Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1466 +spec: + metadata: + connID: "474" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 335 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('eeae17ed-c614-4cb0-bf39-c9dd9062ed3a', 'release_bad_json', 'release_bad_json@example.in', 'scrypt:32768:8:1$bBT3qSXKJfFaI9WB$34c54855700076bdbc0ab4c02e71672f0b84122887d26072142f8c26e97c50115dbdaea942eb0e745c6de9bfa93850b6b32b7eaa57ce0f73ebf102a62165c5e2', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777293 + reqtimestampmock: 2025-11-10T12:21:33.823916014Z + restimestampmock: 2025-11-10T12:21:33.824407049Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1467 +spec: + metadata: + connID: "474" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777293 + reqtimestampmock: 2025-11-10T12:21:33.824574718Z + restimestampmock: 2025-11-10T12:21:33.836868676Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1468 +spec: + metadata: + connID: "476" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [142, 155, 173, 21, 148, 106, 97, 200, 196, 83, 216, 213, 95, 185, 82, 144, 108, 132, 84, 184, 211, 207, 157, 131, 235, 158, 187, 10, 73, 70, 218, 91] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 395 + auth_plugin_data: [126, 127, 106, 50, 114, 3, 93, 63, 85, 111, 71, 48, 84, 30, 120, 1, 47, 92, 73, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777294 + reqtimestampmock: 2025-11-10T12:21:34.587528422Z + restimestampmock: 2025-11-10T12:21:34.595878091Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1469 +spec: + metadata: + connID: "476" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777294 + reqtimestampmock: 2025-11-10T12:21:34.59606696Z + restimestampmock: 2025-11-10T12:21:34.596251608Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1470 +spec: + metadata: + connID: "476" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777294 + reqtimestampmock: 2025-11-10T12:21:34.596380717Z + restimestampmock: 2025-11-10T12:21:34.596506096Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1471 +spec: + metadata: + connID: "476" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777294 + reqtimestampmock: 2025-11-10T12:21:34.596598945Z + restimestampmock: 2025-11-10T12:21:34.596690785Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1472 +spec: + metadata: + connID: "476" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 89 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='release_bad_json' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 245 + sequence_id: 6 + values: + - type: 253 + name: id + value: eeae17ed-c614-4cb0-bf39-c9dd9062ed3a + unsigned: false + - type: 253 + name: username + value: release_bad_json + unsigned: false + - type: 253 + name: email + value: release_bad_json@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$bBT3qSXKJfFaI9WB$34c54855700076bdbc0ab4c02e71672f0b84122887d26072142f8c26e97c50115dbdaea942eb0e745c6de9bfa93850b6b32b7eaa57ce0f73ebf102a62165c5e2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777294 + reqtimestampmock: 2025-11-10T12:21:34.596855473Z + restimestampmock: 2025-11-10T12:21:34.597328949Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1473 +spec: + metadata: + connID: "478" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [86, 168, 36, 64, 21, 71, 80, 3, 173, 45, 230, 162, 190, 78, 63, 106, 106, 231, 86, 222, 179, 89, 56, 160, 176, 16, 102, 85, 202, 125, 142, 93] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 396 + auth_plugin_data: [1, 110, 72, 57, 102, 26, 91, 121, 64, 7, 56, 64, 115, 82, 82, 85, 123, 118, 98, 11, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.173798692Z + restimestampmock: 2025-11-10T12:21:36.180143929Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1474 +spec: + metadata: + connID: "478" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.180334068Z + restimestampmock: 2025-11-10T12:21:36.180510506Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1475 +spec: + metadata: + connID: "478" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.180643185Z + restimestampmock: 2025-11-10T12:21:36.180843513Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1476 +spec: + metadata: + connID: "478" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.181004152Z + restimestampmock: 2025-11-10T12:21:36.18110031Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1477 +spec: + metadata: + connID: "478" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='eeae17ed-c614-4cb0-bf39-c9dd9062ed3a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: eeae17ed-c614-4cb0-bf39-c9dd9062ed3a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.181292829Z + restimestampmock: 2025-11-10T12:21:36.181633436Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1478 +spec: + metadata: + connID: "478" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='eeae17ed-c614-4cb0-bf39-c9dd9062ed3a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.181774635Z + restimestampmock: 2025-11-10T12:21:36.181972844Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1479 +spec: + metadata: + connID: "478" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='eeae17ed-c614-4cb0-bf39-c9dd9062ed3a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.182171472Z + restimestampmock: 2025-11-10T12:21:36.18253545Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1480 +spec: + metadata: + connID: "478" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777296 + reqtimestampmock: 2025-11-10T12:21:36.182639948Z + restimestampmock: 2025-11-10T12:21:36.195658939Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1481 +spec: + metadata: + connID: "480" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [252, 212, 25, 103, 194, 158, 141, 228, 201, 64, 176, 56, 53, 93, 227, 26, 131, 97, 64, 78, 120, 32, 170, 215, 149, 130, 201, 121, 17, 195, 31, 92] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 397 + auth_plugin_data: [78, 86, 122, 19, 108, 94, 120, 124, 85, 53, 125, 93, 98, 90, 124, 24, 3, 90, 107, 49, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777298 + reqtimestampmock: 2025-11-10T12:21:38.247701516Z + restimestampmock: 2025-11-10T12:21:38.254162192Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1482 +spec: + metadata: + connID: "480" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777298 + reqtimestampmock: 2025-11-10T12:21:38.254312402Z + restimestampmock: 2025-11-10T12:21:38.25447927Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1483 +spec: + metadata: + connID: "480" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777298 + reqtimestampmock: 2025-11-10T12:21:38.254591569Z + restimestampmock: 2025-11-10T12:21:38.254718538Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1484 +spec: + metadata: + connID: "480" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777298 + reqtimestampmock: 2025-11-10T12:21:38.254815527Z + restimestampmock: 2025-11-10T12:21:38.254968006Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1485 +spec: + metadata: + connID: "480" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 321 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('f0e44763-84a3-4d1b-b31d-c2bde7baaaef', 'maria_goa', 'maria_goa@example.in', 'scrypt:32768:8:1$EhG0ocI1sXLnvQGL$d1cbd0c4a9d6e91ba0d0461cd7fc35c858b404c1c914c6fd96e6a3f36b35904971dffdbc6ba7ec9db8761a9c2cfa6191caf07c5e6a76a9500ed89b75c472bbdd', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777298 + reqtimestampmock: 2025-11-10T12:21:38.304923077Z + restimestampmock: 2025-11-10T12:21:38.305389273Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1486 +spec: + metadata: + connID: "480" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777298 + reqtimestampmock: 2025-11-10T12:21:38.305522832Z + restimestampmock: 2025-11-10T12:21:38.317625261Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1487 +spec: + metadata: + connID: "482" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [135, 1, 248, 178, 12, 170, 252, 208, 227, 87, 157, 194, 104, 209, 150, 190, 53, 191, 186, 201, 222, 233, 76, 241, 2, 6, 133, 128, 17, 39, 251, 170] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 398 + auth_plugin_data: [33, 61, 84, 1, 120, 95, 118, 70, 39, 8, 6, 103, 116, 49, 70, 35, 65, 101, 55, 96, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.013725756Z + restimestampmock: 2025-11-10T12:21:39.020061193Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1488 +spec: + metadata: + connID: "482" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.020250561Z + restimestampmock: 2025-11-10T12:21:39.02044774Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1489 +spec: + metadata: + connID: "482" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.020632707Z + restimestampmock: 2025-11-10T12:21:39.020795306Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1490 +spec: + metadata: + connID: "482" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.020932475Z + restimestampmock: 2025-11-10T12:21:39.021033295Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1491 +spec: + metadata: + connID: "482" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 82 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='maria_goa' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 231 + sequence_id: 6 + values: + - type: 253 + name: id + value: f0e44763-84a3-4d1b-b31d-c2bde7baaaef + unsigned: false + - type: 253 + name: username + value: maria_goa + unsigned: false + - type: 253 + name: email + value: maria_goa@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$EhG0ocI1sXLnvQGL$d1cbd0c4a9d6e91ba0d0461cd7fc35c858b404c1c914c6fd96e6a3f36b35904971dffdbc6ba7ec9db8761a9c2cfa6191caf07c5e6a76a9500ed89b75c472bbdd + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.021255443Z + restimestampmock: 2025-11-10T12:21:39.02161741Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1492 +spec: + metadata: + connID: "484" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [245, 176, 203, 112, 198, 165, 133, 110, 39, 252, 220, 194, 109, 214, 38, 191, 107, 208, 221, 109, 137, 16, 50, 127, 156, 78, 103, 29, 65, 2, 113, 115] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 400 + auth_plugin_data: [37, 78, 3, 20, 35, 50, 35, 35, 106, 85, 58, 119, 125, 14, 28, 106, 14, 19, 103, 104, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.833210708Z + restimestampmock: 2025-11-10T12:21:39.839613814Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1493 +spec: + metadata: + connID: "484" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.839765252Z + restimestampmock: 2025-11-10T12:21:39.839952101Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1494 +spec: + metadata: + connID: "484" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.84008315Z + restimestampmock: 2025-11-10T12:21:39.840235069Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1495 +spec: + metadata: + connID: "484" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.840358397Z + restimestampmock: 2025-11-10T12:21:39.840453027Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1496 +spec: + metadata: + connID: "484" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='f0e44763-84a3-4d1b-b31d-c2bde7baaaef' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: f0e44763-84a3-4d1b-b31d-c2bde7baaaef + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.840633615Z + restimestampmock: 2025-11-10T12:21:39.840976122Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1497 +spec: + metadata: + connID: "484" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 271 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('578822f8-7c40-4316-bd19-b9fbb6e27992','f0e44763-84a3-4d1b-b31d-c2bde7baaaef','House 123, Calangute',NULL,'North Goa','Goa','403516','IN','+919822123456',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.841187841Z + restimestampmock: 2025-11-10T12:21:39.841448009Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1498 +spec: + metadata: + connID: "484" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='f0e44763-84a3-4d1b-b31d-c2bde7baaaef' AND id<>'578822f8-7c40-4316-bd19-b9fbb6e27992' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.841571467Z + restimestampmock: 2025-11-10T12:21:39.841798086Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1499 +spec: + metadata: + connID: "484" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777299 + reqtimestampmock: 2025-11-10T12:21:39.841915255Z + restimestampmock: 2025-11-10T12:21:39.851649543Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1500 +spec: + metadata: + connID: "486" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [159, 60, 199, 56, 175, 192, 175, 176, 86, 170, 76, 65, 159, 251, 225, 195, 103, 254, 183, 156, 216, 173, 138, 6, 131, 61, 31, 246, 70, 25, 119, 88] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 401 + auth_plugin_data: [121, 120, 51, 95, 31, 122, 123, 59, 66, 112, 121, 26, 43, 23, 60, 116, 58, 87, 60, 108, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.662353037Z + restimestampmock: 2025-11-10T12:21:40.669750276Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1501 +spec: + metadata: + connID: "486" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.669921914Z + restimestampmock: 2025-11-10T12:21:40.670124193Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1502 +spec: + metadata: + connID: "486" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.670249601Z + restimestampmock: 2025-11-10T12:21:40.67039735Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1503 +spec: + metadata: + connID: "486" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.670506349Z + restimestampmock: 2025-11-10T12:21:40.670594788Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1504 +spec: + metadata: + connID: "486" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='f0e44763-84a3-4d1b-b31d-c2bde7baaaef' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: f0e44763-84a3-4d1b-b31d-c2bde7baaaef + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.670765387Z + restimestampmock: 2025-11-10T12:21:40.671078444Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1505 +spec: + metadata: + connID: "486" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='f0e44763-84a3-4d1b-b31d-c2bde7baaaef' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.671297563Z + restimestampmock: 2025-11-10T12:21:40.67164489Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1506 +spec: + metadata: + connID: "486" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='f0e44763-84a3-4d1b-b31d-c2bde7baaaef' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.671853448Z + restimestampmock: 2025-11-10T12:21:40.672092096Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1507 +spec: + metadata: + connID: "486" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777300 + reqtimestampmock: 2025-11-10T12:21:40.672207535Z + restimestampmock: 2025-11-10T12:21:40.685745341Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1508 +spec: + metadata: + connID: "488" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [109, 52, 198, 77, 0, 248, 148, 75, 63, 187, 14, 61, 60, 251, 110, 228, 253, 178, 143, 136, 172, 43, 235, 6, 139, 236, 61, 35, 84, 102, 69, 228] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 402 + auth_plugin_data: [62, 32, 19, 73, 46, 80, 61, 13, 19, 126, 45, 21, 89, 37, 71, 111, 81, 58, 28, 77, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777303 + reqtimestampmock: 2025-11-10T12:21:43.495444641Z + restimestampmock: 2025-11-10T12:21:43.501988197Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1509 +spec: + metadata: + connID: "488" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777303 + reqtimestampmock: 2025-11-10T12:21:43.502143635Z + restimestampmock: 2025-11-10T12:21:43.502383743Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1510 +spec: + metadata: + connID: "488" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777303 + reqtimestampmock: 2025-11-10T12:21:43.502483733Z + restimestampmock: 2025-11-10T12:21:43.502613681Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1511 +spec: + metadata: + connID: "488" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777303 + reqtimestampmock: 2025-11-10T12:21:43.5027233Z + restimestampmock: 2025-11-10T12:21:43.5028367Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1512 +spec: + metadata: + connID: "488" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('91eb8fad-7de2-4795-98dc-913fa5a7eece', 'yash_jaipur', 'yash_jaipur@example.in', 'scrypt:32768:8:1$rCuGOTD376maETE8$f562f3530828f493b385776624f1f3946b13857dac262751fb6976aa0bb32610ed6a1e2651bfd2aa2701289eac3c0ad903ac4b0dc560bfa9629213a5fd9c75b4', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777303 + reqtimestampmock: 2025-11-10T12:21:43.554818194Z + restimestampmock: 2025-11-10T12:21:43.55536031Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1513 +spec: + metadata: + connID: "488" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777303 + reqtimestampmock: 2025-11-10T12:21:43.555483018Z + restimestampmock: 2025-11-10T12:21:43.568652588Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1514 +spec: + metadata: + connID: "490" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [93, 76, 110, 55, 102, 222, 28, 132, 190, 131, 131, 67, 12, 9, 42, 122, 69, 164, 2, 239, 191, 246, 188, 18, 114, 81, 90, 223, 147, 197, 122, 192] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 403 + auth_plugin_data: [27, 26, 82, 60, 107, 120, 12, 45, 6, 112, 14, 87, 55, 41, 125, 109, 7, 90, 26, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777304 + reqtimestampmock: 2025-11-10T12:21:44.276260919Z + restimestampmock: 2025-11-10T12:21:44.283244299Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1515 +spec: + metadata: + connID: "490" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777304 + reqtimestampmock: 2025-11-10T12:21:44.283529987Z + restimestampmock: 2025-11-10T12:21:44.283817655Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1516 +spec: + metadata: + connID: "490" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777304 + reqtimestampmock: 2025-11-10T12:21:44.283944294Z + restimestampmock: 2025-11-10T12:21:44.284098552Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1517 +spec: + metadata: + connID: "490" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777304 + reqtimestampmock: 2025-11-10T12:21:44.284231522Z + restimestampmock: 2025-11-10T12:21:44.284352641Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1518 +spec: + metadata: + connID: "490" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='yash_jaipur' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: 91eb8fad-7de2-4795-98dc-913fa5a7eece + unsigned: false + - type: 253 + name: username + value: yash_jaipur + unsigned: false + - type: 253 + name: email + value: yash_jaipur@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$rCuGOTD376maETE8$f562f3530828f493b385776624f1f3946b13857dac262751fb6976aa0bb32610ed6a1e2651bfd2aa2701289eac3c0ad903ac4b0dc560bfa9629213a5fd9c75b4 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777304 + reqtimestampmock: 2025-11-10T12:21:44.284562428Z + restimestampmock: 2025-11-10T12:21:44.285055404Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1519 +spec: + metadata: + connID: "492" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [9, 56, 190, 97, 238, 157, 60, 59, 240, 235, 99, 195, 35, 20, 80, 8, 243, 100, 19, 23, 89, 174, 45, 115, 41, 139, 155, 66, 80, 97, 222, 134] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 405 + auth_plugin_data: [106, 15, 76, 92, 49, 21, 30, 78, 48, 95, 37, 76, 26, 73, 83, 4, 114, 25, 101, 59, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.08030947Z + restimestampmock: 2025-11-10T12:21:45.08742956Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1520 +spec: + metadata: + connID: "492" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.087670268Z + restimestampmock: 2025-11-10T12:21:45.087890735Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1521 +spec: + metadata: + connID: "492" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.088008985Z + restimestampmock: 2025-11-10T12:21:45.088181013Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1522 +spec: + metadata: + connID: "492" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.088283012Z + restimestampmock: 2025-11-10T12:21:45.088376952Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1523 +spec: + metadata: + connID: "492" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='91eb8fad-7de2-4795-98dc-913fa5a7eece' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 91eb8fad-7de2-4795-98dc-913fa5a7eece + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.08854129Z + restimestampmock: 2025-11-10T12:21:45.088960358Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1524 +spec: + metadata: + connID: "492" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 269 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('2aafcfd3-ebe2-405f-90c5-a59fef147006','91eb8fad-7de2-4795-98dc-913fa5a7eece','Hawa Mahal Road',NULL,'Jaipur','Rajasthan','302002','IN','+919829098290',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.089137375Z + restimestampmock: 2025-11-10T12:21:45.089491812Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1525 +spec: + metadata: + connID: "492" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='91eb8fad-7de2-4795-98dc-913fa5a7eece' AND id<>'2aafcfd3-ebe2-405f-90c5-a59fef147006' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.089662181Z + restimestampmock: 2025-11-10T12:21:45.089972228Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1526 +spec: + metadata: + connID: "492" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.090065748Z + restimestampmock: 2025-11-10T12:21:45.101744159Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1527 +spec: + metadata: + connID: "494" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [255, 38, 181, 38, 63, 83, 56, 177, 103, 146, 226, 235, 19, 102, 119, 225, 93, 82, 136, 221, 129, 71, 94, 3, 67, 211, 141, 47, 114, 53, 204, 71] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 406 + auth_plugin_data: [55, 39, 70, 59, 119, 107, 14, 27, 114, 75, 15, 2, 104, 7, 106, 113, 5, 47, 102, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.817255684Z + restimestampmock: 2025-11-10T12:21:45.824017106Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1528 +spec: + metadata: + connID: "494" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.824286294Z + restimestampmock: 2025-11-10T12:21:45.824488712Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1529 +spec: + metadata: + connID: "494" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.824622571Z + restimestampmock: 2025-11-10T12:21:45.82480684Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1530 +spec: + metadata: + connID: "494" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.824880449Z + restimestampmock: 2025-11-10T12:21:45.824922879Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1531 +spec: + metadata: + connID: "494" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='91eb8fad-7de2-4795-98dc-913fa5a7eece' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 91eb8fad-7de2-4795-98dc-913fa5a7eece + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.825184196Z + restimestampmock: 2025-11-10T12:21:45.825540913Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1532 +spec: + metadata: + connID: "494" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='91eb8fad-7de2-4795-98dc-913fa5a7eece' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.825789972Z + restimestampmock: 2025-11-10T12:21:45.826251668Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1533 +spec: + metadata: + connID: "494" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='91eb8fad-7de2-4795-98dc-913fa5a7eece' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.826415057Z + restimestampmock: 2025-11-10T12:21:45.826708114Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1534 +spec: + metadata: + connID: "494" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777305 + reqtimestampmock: 2025-11-10T12:21:45.826844253Z + restimestampmock: 2025-11-10T12:21:45.843604282Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1535 +spec: + metadata: + connID: "496" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [154, 79, 226, 219, 116, 130, 179, 11, 147, 8, 4, 23, 68, 183, 35, 26, 111, 203, 247, 245, 43, 226, 143, 68, 133, 184, 53, 223, 232, 140, 189, 182] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 407 + auth_plugin_data: [48, 10, 127, 32, 22, 39, 115, 64, 64, 118, 111, 114, 92, 31, 89, 33, 19, 93, 94, 55, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777307 + reqtimestampmock: 2025-11-10T12:21:47.740620578Z + restimestampmock: 2025-11-10T12:21:47.750555624Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1536 +spec: + metadata: + connID: "496" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777307 + reqtimestampmock: 2025-11-10T12:21:47.750855621Z + restimestampmock: 2025-11-10T12:21:47.75109183Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1537 +spec: + metadata: + connID: "496" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777307 + reqtimestampmock: 2025-11-10T12:21:47.751317928Z + restimestampmock: 2025-11-10T12:21:47.751481706Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1538 +spec: + metadata: + connID: "496" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777307 + reqtimestampmock: 2025-11-10T12:21:47.751688325Z + restimestampmock: 2025-11-10T12:21:47.751817853Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1539 +spec: + metadata: + connID: "496" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('44708021-ee36-4225-8633-f6d9b6c3a32d', 'isha_ahmedabad', 'isha_ahmedabad@example.in', 'scrypt:32768:8:1$tgcjgwFRCrArry4D$6845a0d336eed8338b59f41a9e9954aa826e0c065e7e948ad2eb33b0be0c7638d2efc3b5081626bda1ab82bab4089601365e11bcbba38826dd579042e1d8f798', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777307 + reqtimestampmock: 2025-11-10T12:21:47.820576457Z + restimestampmock: 2025-11-10T12:21:47.821314181Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1540 +spec: + metadata: + connID: "496" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777307 + reqtimestampmock: 2025-11-10T12:21:47.821522849Z + restimestampmock: 2025-11-10T12:21:47.837882732Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1541 +spec: + metadata: + connID: "498" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [202, 163, 2, 83, 255, 142, 90, 65, 96, 149, 40, 43, 20, 173, 7, 124, 174, 59, 15, 81, 0, 107, 14, 17, 247, 64, 135, 174, 187, 77, 129, 93] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 408 + auth_plugin_data: [23, 26, 43, 3, 39, 50, 12, 56, 98, 99, 75, 62, 2, 121, 52, 116, 108, 31, 46, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777308 + reqtimestampmock: 2025-11-10T12:21:48.516492084Z + restimestampmock: 2025-11-10T12:21:48.524093341Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1542 +spec: + metadata: + connID: "498" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777308 + reqtimestampmock: 2025-11-10T12:21:48.524383659Z + restimestampmock: 2025-11-10T12:21:48.524625527Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1543 +spec: + metadata: + connID: "498" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777308 + reqtimestampmock: 2025-11-10T12:21:48.524772556Z + restimestampmock: 2025-11-10T12:21:48.524944594Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1544 +spec: + metadata: + connID: "498" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777308 + reqtimestampmock: 2025-11-10T12:21:48.525079203Z + restimestampmock: 2025-11-10T12:21:48.525205112Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1545 +spec: + metadata: + connID: "498" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='isha_ahmedabad' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: 44708021-ee36-4225-8633-f6d9b6c3a32d + unsigned: false + - type: 253 + name: username + value: isha_ahmedabad + unsigned: false + - type: 253 + name: email + value: isha_ahmedabad@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$tgcjgwFRCrArry4D$6845a0d336eed8338b59f41a9e9954aa826e0c065e7e948ad2eb33b0be0c7638d2efc3b5081626bda1ab82bab4089601365e11bcbba38826dd579042e1d8f798 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777308 + reqtimestampmock: 2025-11-10T12:21:48.525533499Z + restimestampmock: 2025-11-10T12:21:48.526036845Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1546 +spec: + metadata: + connID: "500" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [245, 144, 212, 85, 5, 84, 162, 51, 30, 187, 211, 207, 91, 66, 13, 123, 184, 234, 5, 212, 151, 61, 59, 46, 79, 187, 82, 5, 175, 16, 187, 158] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 409 + auth_plugin_data: [56, 111, 33, 48, 72, 78, 33, 34, 49, 9, 49, 106, 120, 29, 48, 61, 21, 4, 28, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.270708685Z + restimestampmock: 2025-11-10T12:21:49.28089451Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1547 +spec: + metadata: + connID: "500" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.281190368Z + restimestampmock: 2025-11-10T12:21:49.281392456Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1548 +spec: + metadata: + connID: "500" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.281522095Z + restimestampmock: 2025-11-10T12:21:49.281813552Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1549 +spec: + metadata: + connID: "500" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.281967191Z + restimestampmock: 2025-11-10T12:21:49.282185529Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1550 +spec: + metadata: + connID: "500" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='44708021-ee36-4225-8633-f6d9b6c3a32d' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 44708021-ee36-4225-8633-f6d9b6c3a32d + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.282373619Z + restimestampmock: 2025-11-10T12:21:49.282789294Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1551 +spec: + metadata: + connID: "500" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 262 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('af27df60-c68f-4667-94e8-5be0b463f296','44708021-ee36-4225-8633-f6d9b6c3a32d','CG Road',NULL,'Ahmedabad','Gujarat','380006','IN','+919825012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.282952723Z + restimestampmock: 2025-11-10T12:21:49.283343499Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1552 +spec: + metadata: + connID: "500" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='44708021-ee36-4225-8633-f6d9b6c3a32d' AND id<>'af27df60-c68f-4667-94e8-5be0b463f296' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.283647857Z + restimestampmock: 2025-11-10T12:21:49.283984875Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1553 +spec: + metadata: + connID: "500" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777309 + reqtimestampmock: 2025-11-10T12:21:49.284144143Z + restimestampmock: 2025-11-10T12:21:49.305710472Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1554 +spec: + metadata: + connID: "502" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [160, 86, 183, 59, 219, 91, 197, 88, 207, 133, 93, 71, 237, 216, 59, 199, 234, 0, 106, 28, 252, 68, 251, 142, 228, 197, 50, 28, 239, 92, 231, 167] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 411 + auth_plugin_data: [82, 49, 94, 63, 102, 77, 49, 65, 117, 121, 107, 88, 125, 2, 24, 114, 87, 124, 16, 21, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.008181185Z + restimestampmock: 2025-11-10T12:21:50.015210038Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1555 +spec: + metadata: + connID: "502" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.015391265Z + restimestampmock: 2025-11-10T12:21:50.015612824Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1556 +spec: + metadata: + connID: "502" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.015744183Z + restimestampmock: 2025-11-10T12:21:50.015903321Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1557 +spec: + metadata: + connID: "502" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.016009911Z + restimestampmock: 2025-11-10T12:21:50.016174339Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1558 +spec: + metadata: + connID: "502" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='44708021-ee36-4225-8633-f6d9b6c3a32d' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 44708021-ee36-4225-8633-f6d9b6c3a32d + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.016471756Z + restimestampmock: 2025-11-10T12:21:50.016931253Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1559 +spec: + metadata: + connID: "502" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='44708021-ee36-4225-8633-f6d9b6c3a32d' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.017065211Z + restimestampmock: 2025-11-10T12:21:50.017447568Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1560 +spec: + metadata: + connID: "502" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='44708021-ee36-4225-8633-f6d9b6c3a32d' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.017614627Z + restimestampmock: 2025-11-10T12:21:50.017871605Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1561 +spec: + metadata: + connID: "502" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777310 + reqtimestampmock: 2025-11-10T12:21:50.017980744Z + restimestampmock: 2025-11-10T12:21:50.027469794Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1562 +spec: + metadata: + connID: "504" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [137, 233, 46, 69, 128, 51, 182, 221, 176, 205, 160, 185, 237, 11, 253, 96, 85, 109, 153, 129, 178, 186, 64, 213, 65, 220, 247, 197, 19, 84, 181, 37] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 412 + auth_plugin_data: [111, 57, 19, 3, 64, 29, 114, 23, 19, 104, 95, 111, 116, 30, 67, 75, 96, 121, 67, 38, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777311 + reqtimestampmock: 2025-11-10T12:21:51.885013983Z + restimestampmock: 2025-11-10T12:21:51.891952485Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1563 +spec: + metadata: + connID: "504" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777311 + reqtimestampmock: 2025-11-10T12:21:51.892208493Z + restimestampmock: 2025-11-10T12:21:51.89242524Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1564 +spec: + metadata: + connID: "504" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777311 + reqtimestampmock: 2025-11-10T12:21:51.892582119Z + restimestampmock: 2025-11-10T12:21:51.892772128Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1565 +spec: + metadata: + connID: "504" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777311 + reqtimestampmock: 2025-11-10T12:21:51.892864027Z + restimestampmock: 2025-11-10T12:21:51.892998165Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1566 +spec: + metadata: + connID: "504" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a4290205-4d0c-4577-a66c-6b180d9e87bc', 'aditya_lucknow', 'aditya_lucknow@example.in', 'scrypt:32768:8:1$feWK93udWkmxdWk8$879ef14ce147b31889e34900f0e474e71b21b17ca67d9fe03189b50443d19223be22cb65bd493e5a35ad663e73fde635e92e1ea9749294f36dc88c30b2f4ac42', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777311 + reqtimestampmock: 2025-11-10T12:21:51.944580173Z + restimestampmock: 2025-11-10T12:21:51.945058719Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1567 +spec: + metadata: + connID: "504" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777311 + reqtimestampmock: 2025-11-10T12:21:51.945208678Z + restimestampmock: 2025-11-10T12:21:51.957729143Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1568 +spec: + metadata: + connID: "506" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [199, 191, 13, 186, 13, 237, 127, 204, 240, 29, 95, 78, 99, 6, 121, 135, 28, 119, 23, 161, 204, 186, 220, 115, 228, 217, 233, 126, 31, 130, 254, 93] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 413 + auth_plugin_data: [109, 53, 67, 38, 69, 26, 89, 21, 111, 42, 11, 54, 55, 22, 52, 52, 11, 23, 42, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777312 + reqtimestampmock: 2025-11-10T12:21:52.643960874Z + restimestampmock: 2025-11-10T12:21:52.651142024Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1569 +spec: + metadata: + connID: "506" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777312 + reqtimestampmock: 2025-11-10T12:21:52.651496302Z + restimestampmock: 2025-11-10T12:21:52.65172686Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1570 +spec: + metadata: + connID: "506" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777312 + reqtimestampmock: 2025-11-10T12:21:52.651857219Z + restimestampmock: 2025-11-10T12:21:52.652022356Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1571 +spec: + metadata: + connID: "506" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777312 + reqtimestampmock: 2025-11-10T12:21:52.652186885Z + restimestampmock: 2025-11-10T12:21:52.652301734Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1572 +spec: + metadata: + connID: "506" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='aditya_lucknow' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: a4290205-4d0c-4577-a66c-6b180d9e87bc + unsigned: false + - type: 253 + name: username + value: aditya_lucknow + unsigned: false + - type: 253 + name: email + value: aditya_lucknow@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$feWK93udWkmxdWk8$879ef14ce147b31889e34900f0e474e71b21b17ca67d9fe03189b50443d19223be22cb65bd493e5a35ad663e73fde635e92e1ea9749294f36dc88c30b2f4ac42 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777312 + reqtimestampmock: 2025-11-10T12:21:52.652457723Z + restimestampmock: 2025-11-10T12:21:52.652913679Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1573 +spec: + metadata: + connID: "508" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [249, 39, 56, 250, 241, 147, 142, 30, 37, 247, 160, 69, 131, 246, 152, 47, 191, 175, 46, 85, 71, 141, 218, 92, 74, 160, 179, 119, 140, 7, 192, 80] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 414 + auth_plugin_data: [28, 7, 95, 44, 120, 27, 117, 61, 83, 114, 22, 63, 4, 86, 76, 55, 98, 115, 90, 124, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.503278225Z + restimestampmock: 2025-11-10T12:21:53.510091919Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1574 +spec: + metadata: + connID: "508" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.510280897Z + restimestampmock: 2025-11-10T12:21:53.510500465Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1575 +spec: + metadata: + connID: "508" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.510625184Z + restimestampmock: 2025-11-10T12:21:53.510922641Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1576 +spec: + metadata: + connID: "508" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.511048181Z + restimestampmock: 2025-11-10T12:21:53.51114266Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1577 +spec: + metadata: + connID: "508" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a4290205-4d0c-4577-a66c-6b180d9e87bc' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a4290205-4d0c-4577-a66c-6b180d9e87bc + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.511323527Z + restimestampmock: 2025-11-10T12:21:53.511689354Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1578 +spec: + metadata: + connID: "508" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 270 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('c2479e30-8c19-4779-922e-1f96cb1797fe','a4290205-4d0c-4577-a66c-6b180d9e87bc','Gomti Nagar',NULL,'Lucknow','Uttar Pradesh','226010','IN','+919415112345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.511816083Z + restimestampmock: 2025-11-10T12:21:53.51220208Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1579 +spec: + metadata: + connID: "508" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='a4290205-4d0c-4577-a66c-6b180d9e87bc' AND id<>'c2479e30-8c19-4779-922e-1f96cb1797fe' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.512370149Z + restimestampmock: 2025-11-10T12:21:53.512625787Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1580 +spec: + metadata: + connID: "508" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777313 + reqtimestampmock: 2025-11-10T12:21:53.512746416Z + restimestampmock: 2025-11-10T12:21:53.521442583Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1581 +spec: + metadata: + connID: "510" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [237, 119, 190, 17, 241, 143, 166, 20, 193, 51, 106, 220, 15, 194, 37, 16, 168, 227, 154, 183, 167, 155, 250, 121, 154, 116, 51, 178, 228, 100, 20, 55] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 415 + auth_plugin_data: [23, 114, 57, 81, 109, 103, 35, 92, 88, 72, 10, 63, 81, 106, 10, 54, 38, 126, 110, 8, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.232829963Z + restimestampmock: 2025-11-10T12:21:54.240554688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1582 +spec: + metadata: + connID: "510" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.240799117Z + restimestampmock: 2025-11-10T12:21:54.240992434Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1583 +spec: + metadata: + connID: "510" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.241139303Z + restimestampmock: 2025-11-10T12:21:54.241297112Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1584 +spec: + metadata: + connID: "510" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.241384001Z + restimestampmock: 2025-11-10T12:21:54.24150544Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1585 +spec: + metadata: + connID: "510" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a4290205-4d0c-4577-a66c-6b180d9e87bc' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a4290205-4d0c-4577-a66c-6b180d9e87bc + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.241693229Z + restimestampmock: 2025-11-10T12:21:54.242051456Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1586 +spec: + metadata: + connID: "510" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a4290205-4d0c-4577-a66c-6b180d9e87bc' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.242199975Z + restimestampmock: 2025-11-10T12:21:54.242537761Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1587 +spec: + metadata: + connID: "510" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a4290205-4d0c-4577-a66c-6b180d9e87bc' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.24267971Z + restimestampmock: 2025-11-10T12:21:54.242933808Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1588 +spec: + metadata: + connID: "510" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777314 + reqtimestampmock: 2025-11-10T12:21:54.243076157Z + restimestampmock: 2025-11-10T12:21:54.255636451Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1589 +spec: + metadata: + connID: "512" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [137, 187, 169, 34, 88, 135, 157, 97, 97, 219, 254, 5, 16, 14, 28, 198, 186, 85, 230, 118, 153, 168, 74, 191, 132, 186, 206, 115, 49, 62, 236, 161] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 417 + auth_plugin_data: [63, 86, 84, 98, 108, 50, 109, 121, 78, 17, 107, 73, 50, 17, 114, 97, 47, 16, 11, 1, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777316 + reqtimestampmock: 2025-11-10T12:21:56.60265759Z + restimestampmock: 2025-11-10T12:21:56.609446284Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1590 +spec: + metadata: + connID: "512" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777316 + reqtimestampmock: 2025-11-10T12:21:56.609643822Z + restimestampmock: 2025-11-10T12:21:56.609818211Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1591 +spec: + metadata: + connID: "512" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777316 + reqtimestampmock: 2025-11-10T12:21:56.60995364Z + restimestampmock: 2025-11-10T12:21:56.610119458Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1592 +spec: + metadata: + connID: "512" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777316 + reqtimestampmock: 2025-11-10T12:21:56.610238727Z + restimestampmock: 2025-11-10T12:21:56.610338777Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1593 +spec: + metadata: + connID: "512" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 323 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('1dd33e6c-1eda-484f-9ac0-25323324cd5e', 'simran_chd', 'simran_chd@example.in', 'scrypt:32768:8:1$dCOQjDkgMLnaqzB4$a45722db8b0242f16ef412e4799ab16072eaaa5e29cf053f2a07cd20ba47acc80083fbfd990ea7fa52ad116348599784723135eef6e00f8af966df5eb6903d02', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777316 + reqtimestampmock: 2025-11-10T12:21:56.661838764Z + restimestampmock: 2025-11-10T12:21:56.662199392Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1594 +spec: + metadata: + connID: "512" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777316 + reqtimestampmock: 2025-11-10T12:21:56.662366031Z + restimestampmock: 2025-11-10T12:21:56.671466604Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1595 +spec: + metadata: + connID: "514" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [204, 52, 55, 31, 201, 236, 220, 91, 226, 141, 249, 180, 204, 8, 178, 160, 225, 179, 136, 40, 118, 97, 218, 181, 230, 246, 209, 236, 182, 1, 68, 177] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 418 + auth_plugin_data: [54, 94, 101, 109, 120, 94, 68, 22, 50, 16, 42, 39, 93, 101, 123, 121, 106, 12, 56, 8, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777317 + reqtimestampmock: 2025-11-10T12:21:57.3474561Z + restimestampmock: 2025-11-10T12:21:57.35464985Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1596 +spec: + metadata: + connID: "514" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777317 + reqtimestampmock: 2025-11-10T12:21:57.354815369Z + restimestampmock: 2025-11-10T12:21:57.355009097Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1597 +spec: + metadata: + connID: "514" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777317 + reqtimestampmock: 2025-11-10T12:21:57.355115136Z + restimestampmock: 2025-11-10T12:21:57.355268915Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1598 +spec: + metadata: + connID: "514" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777317 + reqtimestampmock: 2025-11-10T12:21:57.355365114Z + restimestampmock: 2025-11-10T12:21:57.355450964Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1599 +spec: + metadata: + connID: "514" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 83 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='simran_chd' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 233 + sequence_id: 6 + values: + - type: 253 + name: id + value: 1dd33e6c-1eda-484f-9ac0-25323324cd5e + unsigned: false + - type: 253 + name: username + value: simran_chd + unsigned: false + - type: 253 + name: email + value: simran_chd@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$dCOQjDkgMLnaqzB4$a45722db8b0242f16ef412e4799ab16072eaaa5e29cf053f2a07cd20ba47acc80083fbfd990ea7fa52ad116348599784723135eef6e00f8af966df5eb6903d02 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777317 + reqtimestampmock: 2025-11-10T12:21:57.355623422Z + restimestampmock: 2025-11-10T12:21:57.356045748Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1600 +spec: + metadata: + connID: "516" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [206, 230, 72, 103, 255, 26, 64, 26, 185, 47, 224, 127, 120, 252, 191, 120, 175, 162, 100, 111, 127, 141, 107, 80, 151, 53, 12, 190, 1, 157, 7, 16] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 419 + auth_plugin_data: [26, 125, 106, 62, 40, 69, 66, 60, 62, 126, 34, 95, 86, 126, 109, 81, 19, 88, 120, 102, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.20819993Z + restimestampmock: 2025-11-10T12:21:58.217122385Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1601 +spec: + metadata: + connID: "516" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.217323163Z + restimestampmock: 2025-11-10T12:21:58.217512712Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1602 +spec: + metadata: + connID: "516" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.217664051Z + restimestampmock: 2025-11-10T12:21:58.217830499Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1603 +spec: + metadata: + connID: "516" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.217960538Z + restimestampmock: 2025-11-10T12:21:58.218065148Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1604 +spec: + metadata: + connID: "516" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='1dd33e6c-1eda-484f-9ac0-25323324cd5e' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 1dd33e6c-1eda-484f-9ac0-25323324cd5e + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.218268615Z + restimestampmock: 2025-11-10T12:21:58.218625183Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1605 +spec: + metadata: + connID: "516" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 268 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('b9fe35b4-6ed9-48c0-bf77-49648e79f9c2','1dd33e6c-1eda-484f-9ac0-25323324cd5e','Sector 22',NULL,'Chandigarh','Chandigarh','160022','IN','+919814012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.218793921Z + restimestampmock: 2025-11-10T12:21:58.219084599Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1606 +spec: + metadata: + connID: "516" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='1dd33e6c-1eda-484f-9ac0-25323324cd5e' AND id<>'b9fe35b4-6ed9-48c0-bf77-49648e79f9c2' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.219254797Z + restimestampmock: 2025-11-10T12:21:58.219505035Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1607 +spec: + metadata: + connID: "516" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.219647284Z + restimestampmock: 2025-11-10T12:21:58.231383926Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1608 +spec: + metadata: + connID: "518" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [129, 204, 243, 208, 166, 96, 62, 244, 157, 24, 30, 64, 31, 172, 70, 221, 184, 77, 49, 181, 27, 100, 33, 94, 124, 12, 157, 214, 2, 26, 212, 155] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 420 + auth_plugin_data: [110, 43, 115, 61, 98, 33, 113, 111, 45, 93, 74, 62, 82, 111, 35, 97, 54, 120, 1, 2, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.927979171Z + restimestampmock: 2025-11-10T12:21:58.938953108Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1609 +spec: + metadata: + connID: "518" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.939291225Z + restimestampmock: 2025-11-10T12:21:58.939610923Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1610 +spec: + metadata: + connID: "518" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.939773691Z + restimestampmock: 2025-11-10T12:21:58.940020269Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1611 +spec: + metadata: + connID: "518" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.940159088Z + restimestampmock: 2025-11-10T12:21:58.940327316Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1612 +spec: + metadata: + connID: "518" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='1dd33e6c-1eda-484f-9ac0-25323324cd5e' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 1dd33e6c-1eda-484f-9ac0-25323324cd5e + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.940561004Z + restimestampmock: 2025-11-10T12:21:58.941002371Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1613 +spec: + metadata: + connID: "518" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='1dd33e6c-1eda-484f-9ac0-25323324cd5e' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.941245679Z + restimestampmock: 2025-11-10T12:21:58.941655986Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1614 +spec: + metadata: + connID: "518" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='1dd33e6c-1eda-484f-9ac0-25323324cd5e' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.941913103Z + restimestampmock: 2025-11-10T12:21:58.94221102Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1615 +spec: + metadata: + connID: "518" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777318 + reqtimestampmock: 2025-11-10T12:21:58.942324659Z + restimestampmock: 2025-11-10T12:21:58.961733417Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1616 +spec: + metadata: + connID: "520" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [85, 32, 202, 62, 83, 250, 69, 214, 60, 246, 13, 5, 89, 25, 125, 92, 183, 215, 238, 130, 81, 155, 238, 207, 222, 58, 250, 16, 31, 233, 139, 92] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 422 + auth_plugin_data: [91, 102, 104, 87, 1, 26, 32, 83, 105, 37, 15, 53, 95, 89, 59, 86, 116, 8, 116, 2, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777320 + reqtimestampmock: 2025-11-10T12:22:00.925606748Z + restimestampmock: 2025-11-10T12:22:00.933325894Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1617 +spec: + metadata: + connID: "520" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777320 + reqtimestampmock: 2025-11-10T12:22:00.933587991Z + restimestampmock: 2025-11-10T12:22:00.933865809Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1618 +spec: + metadata: + connID: "520" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777320 + reqtimestampmock: 2025-11-10T12:22:00.934011678Z + restimestampmock: 2025-11-10T12:22:00.934204236Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1619 +spec: + metadata: + connID: "520" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777320 + reqtimestampmock: 2025-11-10T12:22:00.934343835Z + restimestampmock: 2025-11-10T12:22:00.934550953Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1620 +spec: + metadata: + connID: "520" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('b8a7fc1d-a07c-4225-bf5b-8e486aecaae6', 'george_kochi', 'george_kochi@example.in', 'scrypt:32768:8:1$V7HhFJcRbEDWqUZp$4fd669ea0d8fde07f3faf1b5597498acad0fa0adfc8029572a1211fe4eecfb9796c153ea41f8cdce88b28965533b61c9727faf7100dbfc1655b2d942ed350be6', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777320 + reqtimestampmock: 2025-11-10T12:22:00.98748417Z + restimestampmock: 2025-11-10T12:22:00.988061985Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1621 +spec: + metadata: + connID: "520" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777320 + reqtimestampmock: 2025-11-10T12:22:00.988276873Z + restimestampmock: 2025-11-10T12:22:00.997553165Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1622 +spec: + metadata: + connID: "522" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [8, 77, 172, 175, 161, 6, 11, 25, 182, 148, 108, 141, 11, 66, 47, 69, 165, 229, 104, 241, 34, 127, 189, 179, 81, 20, 83, 186, 230, 154, 83, 44] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 423 + auth_plugin_data: [101, 72, 41, 81, 91, 73, 86, 81, 118, 54, 50, 107, 97, 15, 9, 65, 53, 102, 119, 122, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777321 + reqtimestampmock: 2025-11-10T12:22:01.841476937Z + restimestampmock: 2025-11-10T12:22:01.84845087Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1623 +spec: + metadata: + connID: "522" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777321 + reqtimestampmock: 2025-11-10T12:22:01.848698268Z + restimestampmock: 2025-11-10T12:22:01.848910427Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1624 +spec: + metadata: + connID: "522" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777321 + reqtimestampmock: 2025-11-10T12:22:01.849211053Z + restimestampmock: 2025-11-10T12:22:01.849464271Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1625 +spec: + metadata: + connID: "522" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777321 + reqtimestampmock: 2025-11-10T12:22:01.84962628Z + restimestampmock: 2025-11-10T12:22:01.849752129Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1626 +spec: + metadata: + connID: "522" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='george_kochi' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: b8a7fc1d-a07c-4225-bf5b-8e486aecaae6 + unsigned: false + - type: 253 + name: username + value: george_kochi + unsigned: false + - type: 253 + name: email + value: george_kochi@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$V7HhFJcRbEDWqUZp$4fd669ea0d8fde07f3faf1b5597498acad0fa0adfc8029572a1211fe4eecfb9796c153ea41f8cdce88b28965533b61c9727faf7100dbfc1655b2d942ed350be6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777321 + reqtimestampmock: 2025-11-10T12:22:01.850005927Z + restimestampmock: 2025-11-10T12:22:01.850511382Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1627 +spec: + metadata: + connID: "524" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [68, 172, 191, 126, 245, 64, 149, 6, 231, 102, 21, 179, 229, 76, 162, 16, 95, 9, 175, 174, 107, 97, 110, 232, 113, 193, 65, 159, 180, 110, 102, 183] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 424 + auth_plugin_data: [83, 11, 100, 5, 66, 94, 74, 27, 42, 100, 92, 58, 8, 65, 42, 105, 98, 113, 52, 41, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.584500685Z + restimestampmock: 2025-11-10T12:22:02.591288249Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1628 +spec: + metadata: + connID: "524" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.591441977Z + restimestampmock: 2025-11-10T12:22:02.591646756Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1629 +spec: + metadata: + connID: "524" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.591763814Z + restimestampmock: 2025-11-10T12:22:02.591918004Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1630 +spec: + metadata: + connID: "524" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.592031993Z + restimestampmock: 2025-11-10T12:22:02.592127411Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1631 +spec: + metadata: + connID: "524" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='b8a7fc1d-a07c-4225-bf5b-8e486aecaae6' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: b8a7fc1d-a07c-4225-bf5b-8e486aecaae6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.592312631Z + restimestampmock: 2025-11-10T12:22:02.592690897Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1632 +spec: + metadata: + connID: "524" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 262 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('30a320aa-287e-46c6-b1ba-255350d701bd','b8a7fc1d-a07c-4225-bf5b-8e486aecaae6','Marine Drive',NULL,'Kochi','Kerala','682011','IN','+919846012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.592853636Z + restimestampmock: 2025-11-10T12:22:02.593163853Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1633 +spec: + metadata: + connID: "524" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='b8a7fc1d-a07c-4225-bf5b-8e486aecaae6' AND id<>'30a320aa-287e-46c6-b1ba-255350d701bd' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.593303902Z + restimestampmock: 2025-11-10T12:22:02.593593399Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1634 +spec: + metadata: + connID: "524" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777322 + reqtimestampmock: 2025-11-10T12:22:02.593720928Z + restimestampmock: 2025-11-10T12:22:02.603451856Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1635 +spec: + metadata: + connID: "526" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [105, 232, 72, 38, 75, 118, 177, 114, 1, 155, 80, 104, 240, 202, 113, 85, 78, 186, 109, 31, 81, 54, 214, 100, 123, 47, 68, 38, 81, 253, 99, 93] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 425 + auth_plugin_data: [32, 23, 91, 38, 10, 99, 86, 47, 60, 42, 67, 111, 28, 17, 93, 9, 83, 5, 121, 118, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.414135037Z + restimestampmock: 2025-11-10T12:22:03.421113199Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1636 +spec: + metadata: + connID: "526" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.421323327Z + restimestampmock: 2025-11-10T12:22:03.421550196Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1637 +spec: + metadata: + connID: "526" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.421670055Z + restimestampmock: 2025-11-10T12:22:03.421938532Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1638 +spec: + metadata: + connID: "526" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.422031322Z + restimestampmock: 2025-11-10T12:22:03.4221617Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1639 +spec: + metadata: + connID: "526" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='b8a7fc1d-a07c-4225-bf5b-8e486aecaae6' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: b8a7fc1d-a07c-4225-bf5b-8e486aecaae6 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.422362398Z + restimestampmock: 2025-11-10T12:22:03.422816615Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1640 +spec: + metadata: + connID: "526" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='b8a7fc1d-a07c-4225-bf5b-8e486aecaae6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.422993343Z + restimestampmock: 2025-11-10T12:22:03.4234132Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1641 +spec: + metadata: + connID: "526" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='b8a7fc1d-a07c-4225-bf5b-8e486aecaae6' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.423600967Z + restimestampmock: 2025-11-10T12:22:03.423922375Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1642 +spec: + metadata: + connID: "526" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777323 + reqtimestampmock: 2025-11-10T12:22:03.424027804Z + restimestampmock: 2025-11-10T12:22:03.433478755Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1643 +spec: + metadata: + connID: "528" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [196, 17, 92, 95, 88, 241, 254, 51, 53, 2, 22, 63, 167, 65, 168, 79, 217, 160, 24, 195, 46, 170, 207, 141, 144, 182, 60, 153, 223, 248, 30, 165] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 427 + auth_plugin_data: [38, 35, 122, 122, 16, 59, 114, 4, 97, 82, 29, 96, 23, 74, 114, 124, 14, 84, 121, 53, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.055663676Z + restimestampmock: 2025-11-10T12:22:06.066320887Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1644 +spec: + metadata: + connID: "528" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.066547875Z + restimestampmock: 2025-11-10T12:22:06.066776703Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1645 +spec: + metadata: + connID: "528" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.066966002Z + restimestampmock: 2025-11-10T12:22:06.067108331Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1646 +spec: + metadata: + connID: "528" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.067276068Z + restimestampmock: 2025-11-10T12:22:06.067375139Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1647 +spec: + metadata: + connID: "528" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('4d375648-f4ab-4661-90e8-d4265b1afcc4', 'neha_indore', 'neha_indore@example.in', 'scrypt:32768:8:1$FWleo7020Rcq0TBx$af63d853213363e2d78aca92e4cbcf874d7801d84ea2e86515f4bee20e784219189d9e51bb9a3ff667e2b97aaa5d51453b4a825e5572b358746709a3ff5811c0', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.120779711Z + restimestampmock: 2025-11-10T12:22:06.121356207Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1648 +spec: + metadata: + connID: "528" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.121524755Z + restimestampmock: 2025-11-10T12:22:06.131451372Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1649 +spec: + metadata: + connID: "530" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [86, 137, 16, 167, 140, 116, 18, 82, 110, 169, 97, 16, 11, 107, 219, 46, 106, 111, 82, 244, 105, 232, 143, 54, 177, 43, 59, 190, 146, 10, 155, 102] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 428 + auth_plugin_data: [42, 5, 113, 85, 24, 56, 18, 30, 126, 102, 9, 13, 30, 101, 82, 103, 99, 66, 111, 30, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.808578832Z + restimestampmock: 2025-11-10T12:22:06.815412475Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1650 +spec: + metadata: + connID: "530" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.815637002Z + restimestampmock: 2025-11-10T12:22:06.81589277Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1651 +spec: + metadata: + connID: "530" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.81608551Z + restimestampmock: 2025-11-10T12:22:06.816305847Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1652 +spec: + metadata: + connID: "530" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.816458816Z + restimestampmock: 2025-11-10T12:22:06.816570415Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1653 +spec: + metadata: + connID: "530" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='neha_indore' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: 4d375648-f4ab-4661-90e8-d4265b1afcc4 + unsigned: false + - type: 253 + name: username + value: neha_indore + unsigned: false + - type: 253 + name: email + value: neha_indore@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$FWleo7020Rcq0TBx$af63d853213363e2d78aca92e4cbcf874d7801d84ea2e86515f4bee20e784219189d9e51bb9a3ff667e2b97aaa5d51453b4a825e5572b358746709a3ff5811c0 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777326 + reqtimestampmock: 2025-11-10T12:22:06.816782653Z + restimestampmock: 2025-11-10T12:22:06.817401338Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1654 +spec: + metadata: + connID: "532" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [140, 96, 246, 25, 27, 22, 177, 7, 121, 12, 116, 250, 46, 48, 92, 157, 230, 128, 68, 64, 7, 76, 147, 57, 239, 29, 52, 193, 18, 45, 103, 245] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 429 + auth_plugin_data: [32, 8, 1, 31, 21, 52, 47, 13, 106, 114, 53, 61, 82, 5, 95, 88, 16, 35, 98, 26, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.606350282Z + restimestampmock: 2025-11-10T12:22:07.616438057Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1655 +spec: + metadata: + connID: "532" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.616715365Z + restimestampmock: 2025-11-10T12:22:07.616908003Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1656 +spec: + metadata: + connID: "532" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.617053722Z + restimestampmock: 2025-11-10T12:22:07.617241281Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1657 +spec: + metadata: + connID: "532" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.617358779Z + restimestampmock: 2025-11-10T12:22:07.617478959Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1658 +spec: + metadata: + connID: "532" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='4d375648-f4ab-4661-90e8-d4265b1afcc4' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 4d375648-f4ab-4661-90e8-d4265b1afcc4 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.617664976Z + restimestampmock: 2025-11-10T12:22:07.618043063Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1659 +spec: + metadata: + connID: "532" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 267 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('46e38be7-5454-45a3-a5d1-c0ed3c09b145','4d375648-f4ab-4661-90e8-d4265b1afcc4','56 Dukan',NULL,'Indore','Madhya Pradesh','452001','IN','+919826012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.618296121Z + restimestampmock: 2025-11-10T12:22:07.618697388Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1660 +spec: + metadata: + connID: "532" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='4d375648-f4ab-4661-90e8-d4265b1afcc4' AND id<>'46e38be7-5454-45a3-a5d1-c0ed3c09b145' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.618834276Z + restimestampmock: 2025-11-10T12:22:07.619607251Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1661 +spec: + metadata: + connID: "532" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777327 + reqtimestampmock: 2025-11-10T12:22:07.619733269Z + restimestampmock: 2025-11-10T12:22:07.629478528Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1662 +spec: + metadata: + connID: "534" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [34, 14, 79, 110, 182, 182, 104, 130, 204, 137, 126, 13, 196, 22, 233, 66, 104, 212, 15, 64, 108, 100, 161, 187, 186, 239, 254, 156, 150, 198, 77, 144] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 430 + auth_plugin_data: [8, 28, 52, 7, 62, 100, 24, 97, 77, 91, 59, 124, 57, 57, 87, 75, 26, 55, 80, 29, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.368765187Z + restimestampmock: 2025-11-10T12:22:08.375772218Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1663 +spec: + metadata: + connID: "534" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.375967688Z + restimestampmock: 2025-11-10T12:22:08.376259485Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1664 +spec: + metadata: + connID: "534" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.376369623Z + restimestampmock: 2025-11-10T12:22:08.376566102Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1665 +spec: + metadata: + connID: "534" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.376655331Z + restimestampmock: 2025-11-10T12:22:08.3767805Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1666 +spec: + metadata: + connID: "534" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='4d375648-f4ab-4661-90e8-d4265b1afcc4' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 4d375648-f4ab-4661-90e8-d4265b1afcc4 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.376962669Z + restimestampmock: 2025-11-10T12:22:08.377390755Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1667 +spec: + metadata: + connID: "534" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='4d375648-f4ab-4661-90e8-d4265b1afcc4' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.377663853Z + restimestampmock: 2025-11-10T12:22:08.378028799Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1668 +spec: + metadata: + connID: "534" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='4d375648-f4ab-4661-90e8-d4265b1afcc4' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.378290058Z + restimestampmock: 2025-11-10T12:22:08.378843693Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1669 +spec: + metadata: + connID: "534" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777328 + reqtimestampmock: 2025-11-10T12:22:08.379005552Z + restimestampmock: 2025-11-10T12:22:08.389477775Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1670 +spec: + metadata: + connID: "536" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [175, 28, 76, 113, 195, 0, 55, 250, 6, 143, 222, 83, 195, 241, 250, 32, 221, 44, 193, 68, 141, 85, 144, 189, 34, 31, 111, 109, 248, 18, 35, 184] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 432 + auth_plugin_data: [63, 72, 30, 76, 28, 61, 47, 8, 27, 32, 68, 29, 8, 51, 63, 111, 58, 97, 96, 8, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777330 + reqtimestampmock: 2025-11-10T12:22:10.491899061Z + restimestampmock: 2025-11-10T12:22:10.500466949Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1671 +spec: + metadata: + connID: "536" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777330 + reqtimestampmock: 2025-11-10T12:22:10.500700198Z + restimestampmock: 2025-11-10T12:22:10.500949236Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1672 +spec: + metadata: + connID: "536" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777330 + reqtimestampmock: 2025-11-10T12:22:10.501077735Z + restimestampmock: 2025-11-10T12:22:10.501241782Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1673 +spec: + metadata: + connID: "536" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777330 + reqtimestampmock: 2025-11-10T12:22:10.501347802Z + restimestampmock: 2025-11-10T12:22:10.501447092Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1674 +spec: + metadata: + connID: "536" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('cd231165-d42c-4937-8415-50d80f3cfbf2', 'vivek_bhopal', 'vivek_bhopal@example.in', 'scrypt:32768:8:1$tPirPR2JCoasqRdO$9279de0255bec58e045a4a19acdd64c299ed1b3d0b8aba3294936b9ff904405508b738f106ed9847648aaaddbf2dee52b1a761467773d8674ef7a7ceb8d11a21', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777330 + reqtimestampmock: 2025-11-10T12:22:10.557263374Z + restimestampmock: 2025-11-10T12:22:10.557725501Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1675 +spec: + metadata: + connID: "536" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777330 + reqtimestampmock: 2025-11-10T12:22:10.557952779Z + restimestampmock: 2025-11-10T12:22:10.577467805Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1676 +spec: + metadata: + connID: "538" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [192, 148, 209, 7, 189, 73, 115, 111, 100, 235, 208, 194, 50, 137, 250, 86, 54, 99, 64, 58, 155, 136, 192, 112, 23, 76, 71, 126, 250, 38, 0, 242] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 433 + auth_plugin_data: [126, 57, 66, 65, 118, 89, 14, 123, 120, 122, 5, 60, 117, 51, 76, 42, 32, 4, 70, 28, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777331 + reqtimestampmock: 2025-11-10T12:22:11.284269818Z + restimestampmock: 2025-11-10T12:22:11.292732766Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1677 +spec: + metadata: + connID: "538" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777331 + reqtimestampmock: 2025-11-10T12:22:11.292961694Z + restimestampmock: 2025-11-10T12:22:11.293181432Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1678 +spec: + metadata: + connID: "538" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777331 + reqtimestampmock: 2025-11-10T12:22:11.293335622Z + restimestampmock: 2025-11-10T12:22:11.29349701Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1679 +spec: + metadata: + connID: "538" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777331 + reqtimestampmock: 2025-11-10T12:22:11.293639239Z + restimestampmock: 2025-11-10T12:22:11.293749348Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1680 +spec: + metadata: + connID: "538" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='vivek_bhopal' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: cd231165-d42c-4937-8415-50d80f3cfbf2 + unsigned: false + - type: 253 + name: username + value: vivek_bhopal + unsigned: false + - type: 253 + name: email + value: vivek_bhopal@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$tPirPR2JCoasqRdO$9279de0255bec58e045a4a19acdd64c299ed1b3d0b8aba3294936b9ff904405508b738f106ed9847648aaaddbf2dee52b1a761467773d8674ef7a7ceb8d11a21 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777331 + reqtimestampmock: 2025-11-10T12:22:11.294074824Z + restimestampmock: 2025-11-10T12:22:11.294714509Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1681 +spec: + metadata: + connID: "540" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [26, 201, 132, 141, 146, 147, 88, 173, 233, 128, 70, 84, 132, 81, 116, 116, 225, 136, 10, 110, 217, 189, 153, 171, 221, 104, 191, 216, 128, 153, 140, 42] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 434 + auth_plugin_data: [28, 69, 10, 51, 120, 23, 47, 55, 38, 99, 74, 71, 70, 90, 16, 6, 117, 58, 65, 72, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.03633405Z + restimestampmock: 2025-11-10T12:22:12.045489605Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1682 +spec: + metadata: + connID: "540" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.045812011Z + restimestampmock: 2025-11-10T12:22:12.04603462Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1683 +spec: + metadata: + connID: "540" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.046225418Z + restimestampmock: 2025-11-10T12:22:12.046411637Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1684 +spec: + metadata: + connID: "540" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.046530506Z + restimestampmock: 2025-11-10T12:22:12.046626335Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1685 +spec: + metadata: + connID: "540" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='cd231165-d42c-4937-8415-50d80f3cfbf2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: cd231165-d42c-4937-8415-50d80f3cfbf2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.046828343Z + restimestampmock: 2025-11-10T12:22:12.04723926Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1686 +spec: + metadata: + connID: "540" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 271 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('9e1de261-0fe2-4a26-abbb-6903869a2e78','cd231165-d42c-4937-8415-50d80f3cfbf2','Arera Colony',NULL,'Bhopal','Madhya Pradesh','462016','IN','+919425012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.047479847Z + restimestampmock: 2025-11-10T12:22:12.047830254Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1687 +spec: + metadata: + connID: "540" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='cd231165-d42c-4937-8415-50d80f3cfbf2' AND id<>'9e1de261-0fe2-4a26-abbb-6903869a2e78' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.048089012Z + restimestampmock: 2025-11-10T12:22:12.048496719Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1688 +spec: + metadata: + connID: "540" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.048643547Z + restimestampmock: 2025-11-10T12:22:12.057388815Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1689 +spec: + metadata: + connID: "542" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [242, 230, 52, 67, 49, 186, 45, 246, 133, 169, 46, 158, 85, 66, 101, 235, 1, 135, 174, 248, 110, 57, 89, 144, 216, 144, 63, 150, 162, 121, 214, 76] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 435 + auth_plugin_data: [72, 81, 106, 48, 96, 71, 47, 90, 88, 60, 93, 25, 93, 88, 49, 48, 120, 4, 13, 2, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.850222387Z + restimestampmock: 2025-11-10T12:22:12.860185843Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1690 +spec: + metadata: + connID: "542" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.860435871Z + restimestampmock: 2025-11-10T12:22:12.860657829Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1691 +spec: + metadata: + connID: "542" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.860800858Z + restimestampmock: 2025-11-10T12:22:12.860981687Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1692 +spec: + metadata: + connID: "542" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.861138406Z + restimestampmock: 2025-11-10T12:22:12.861267304Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1693 +spec: + metadata: + connID: "542" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='cd231165-d42c-4937-8415-50d80f3cfbf2' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: cd231165-d42c-4937-8415-50d80f3cfbf2 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.861505342Z + restimestampmock: 2025-11-10T12:22:12.861947798Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1694 +spec: + metadata: + connID: "542" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='cd231165-d42c-4937-8415-50d80f3cfbf2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.862193516Z + restimestampmock: 2025-11-10T12:22:12.862791911Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1695 +spec: + metadata: + connID: "542" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='cd231165-d42c-4937-8415-50d80f3cfbf2' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.863075219Z + restimestampmock: 2025-11-10T12:22:12.863462356Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1696 +spec: + metadata: + connID: "542" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777332 + reqtimestampmock: 2025-11-10T12:22:12.863617294Z + restimestampmock: 2025-11-10T12:22:12.873464912Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1697 +spec: + metadata: + connID: "544" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [168, 179, 127, 86, 4, 69, 209, 236, 53, 180, 77, 84, 14, 172, 18, 218, 94, 101, 94, 175, 216, 59, 24, 18, 222, 32, 150, 48, 83, 112, 88, 164] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 436 + auth_plugin_data: [61, 23, 115, 26, 95, 122, 106, 42, 122, 68, 84, 51, 9, 3, 112, 53, 24, 122, 88, 76, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777334 + reqtimestampmock: 2025-11-10T12:22:14.656866063Z + restimestampmock: 2025-11-10T12:22:14.663461837Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1698 +spec: + metadata: + connID: "544" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777334 + reqtimestampmock: 2025-11-10T12:22:14.663635386Z + restimestampmock: 2025-11-10T12:22:14.663881834Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1699 +spec: + metadata: + connID: "544" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777334 + reqtimestampmock: 2025-11-10T12:22:14.664025003Z + restimestampmock: 2025-11-10T12:22:14.66426089Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1700 +spec: + metadata: + connID: "544" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777334 + reqtimestampmock: 2025-11-10T12:22:14.66439624Z + restimestampmock: 2025-11-10T12:22:14.664495728Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1701 +spec: + metadata: + connID: "544" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('9c9e241f-ff14-4eac-8296-5622d8fe401b', 'pooja_nagpur', 'pooja_nagpur@example.in', 'scrypt:32768:8:1$Qcpmub6wrIG1xjED$3d5eb31561030934fa4ef69914c7844fdcdd93e00ec3155162f57cc425df185cfc1e7962c7e11d434b64383ed03c1ab9277a69d9e67592c26ceccd5266c201ac', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777334 + reqtimestampmock: 2025-11-10T12:22:14.719520748Z + restimestampmock: 2025-11-10T12:22:14.720014904Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1702 +spec: + metadata: + connID: "544" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777334 + reqtimestampmock: 2025-11-10T12:22:14.720231412Z + restimestampmock: 2025-11-10T12:22:14.734429253Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1703 +spec: + metadata: + connID: "546" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [254, 222, 24, 130, 154, 102, 9, 75, 216, 20, 196, 123, 59, 175, 45, 202, 232, 149, 235, 165, 64, 34, 153, 91, 42, 87, 239, 87, 122, 21, 178, 154] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 438 + auth_plugin_data: [94, 39, 124, 122, 122, 90, 47, 91, 95, 27, 46, 112, 122, 99, 59, 54, 106, 9, 79, 119, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777335 + reqtimestampmock: 2025-11-10T12:22:15.485193028Z + restimestampmock: 2025-11-10T12:22:15.491771903Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1704 +spec: + metadata: + connID: "546" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777335 + reqtimestampmock: 2025-11-10T12:22:15.491934372Z + restimestampmock: 2025-11-10T12:22:15.492184129Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1705 +spec: + metadata: + connID: "546" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777335 + reqtimestampmock: 2025-11-10T12:22:15.492316339Z + restimestampmock: 2025-11-10T12:22:15.492481748Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1706 +spec: + metadata: + connID: "546" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777335 + reqtimestampmock: 2025-11-10T12:22:15.492608907Z + restimestampmock: 2025-11-10T12:22:15.492699275Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1707 +spec: + metadata: + connID: "546" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='pooja_nagpur' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9c9e241f-ff14-4eac-8296-5622d8fe401b + unsigned: false + - type: 253 + name: username + value: pooja_nagpur + unsigned: false + - type: 253 + name: email + value: pooja_nagpur@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Qcpmub6wrIG1xjED$3d5eb31561030934fa4ef69914c7844fdcdd93e00ec3155162f57cc425df185cfc1e7962c7e11d434b64383ed03c1ab9277a69d9e67592c26ceccd5266c201ac + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777335 + reqtimestampmock: 2025-11-10T12:22:15.492859604Z + restimestampmock: 2025-11-10T12:22:15.49328991Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1708 +spec: + metadata: + connID: "548" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [7, 188, 246, 132, 26, 179, 11, 156, 17, 152, 146, 147, 67, 171, 165, 213, 136, 165, 38, 153, 214, 79, 202, 131, 73, 124, 109, 194, 73, 63, 249, 215] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 439 + auth_plugin_data: [95, 94, 32, 60, 85, 25, 107, 125, 116, 43, 32, 124, 72, 30, 11, 34, 68, 84, 107, 11, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.229971983Z + restimestampmock: 2025-11-10T12:22:16.237663638Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1709 +spec: + metadata: + connID: "548" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.237854588Z + restimestampmock: 2025-11-10T12:22:16.238037965Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1710 +spec: + metadata: + connID: "548" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.238171994Z + restimestampmock: 2025-11-10T12:22:16.238405712Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1711 +spec: + metadata: + connID: "548" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.238623302Z + restimestampmock: 2025-11-10T12:22:16.23875284Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1712 +spec: + metadata: + connID: "548" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9c9e241f-ff14-4eac-8296-5622d8fe401b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9c9e241f-ff14-4eac-8296-5622d8fe401b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.238975658Z + restimestampmock: 2025-11-10T12:22:16.239466734Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1713 +spec: + metadata: + connID: "548" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 265 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('df81c806-72b6-4a92-9f14-5fbeaa0c00ce','9c9e241f-ff14-4eac-8296-5622d8fe401b','Sitabuldi',NULL,'Nagpur','Maharashtra','440012','IN','+919823012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.239623913Z + restimestampmock: 2025-11-10T12:22:16.24000471Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1714 +spec: + metadata: + connID: "548" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='9c9e241f-ff14-4eac-8296-5622d8fe401b' AND id<>'df81c806-72b6-4a92-9f14-5fbeaa0c00ce' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.240173377Z + restimestampmock: 2025-11-10T12:22:16.240594414Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1715 +spec: + metadata: + connID: "548" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777336 + reqtimestampmock: 2025-11-10T12:22:16.241256829Z + restimestampmock: 2025-11-10T12:22:16.250412712Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1716 +spec: + metadata: + connID: "550" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [159, 127, 196, 14, 174, 147, 153, 33, 202, 2, 177, 162, 126, 168, 147, 177, 175, 134, 5, 2, 92, 129, 56, 172, 222, 119, 106, 241, 194, 140, 238, 196] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 440 + auth_plugin_data: [49, 106, 77, 95, 86, 124, 71, 121, 25, 123, 55, 30, 124, 44, 76, 124, 126, 83, 55, 93, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.040960995Z + restimestampmock: 2025-11-10T12:22:17.048369873Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1717 +spec: + metadata: + connID: "550" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.04864558Z + restimestampmock: 2025-11-10T12:22:17.048852988Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1718 +spec: + metadata: + connID: "550" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.049040627Z + restimestampmock: 2025-11-10T12:22:17.049302815Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1719 +spec: + metadata: + connID: "550" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.049466463Z + restimestampmock: 2025-11-10T12:22:17.049606492Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1720 +spec: + metadata: + connID: "550" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9c9e241f-ff14-4eac-8296-5622d8fe401b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9c9e241f-ff14-4eac-8296-5622d8fe401b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.04984828Z + restimestampmock: 2025-11-10T12:22:17.050249287Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1721 +spec: + metadata: + connID: "550" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='9c9e241f-ff14-4eac-8296-5622d8fe401b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.050483684Z + restimestampmock: 2025-11-10T12:22:17.050904742Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1722 +spec: + metadata: + connID: "550" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='9c9e241f-ff14-4eac-8296-5622d8fe401b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.05106973Z + restimestampmock: 2025-11-10T12:22:17.051407437Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1723 +spec: + metadata: + connID: "550" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777337 + reqtimestampmock: 2025-11-10T12:22:17.051532916Z + restimestampmock: 2025-11-10T12:22:17.060391552Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1724 +spec: + metadata: + connID: "552" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [51, 44, 101, 161, 88, 46, 163, 134, 112, 35, 176, 189, 137, 140, 69, 56, 9, 77, 87, 92, 40, 15, 32, 151, 32, 127, 13, 143, 135, 201, 158, 121] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 441 + auth_plugin_data: [42, 68, 61, 97, 44, 108, 89, 57, 125, 35, 61, 79, 117, 16, 67, 20, 27, 67, 23, 47, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.23362354Z + restimestampmock: 2025-11-10T12:22:19.242146008Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1725 +spec: + metadata: + connID: "552" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.242416627Z + restimestampmock: 2025-11-10T12:22:19.242624204Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1726 +spec: + metadata: + connID: "552" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.242756213Z + restimestampmock: 2025-11-10T12:22:19.242932982Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1727 +spec: + metadata: + connID: "552" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.243067751Z + restimestampmock: 2025-11-10T12:22:19.243256129Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1728 +spec: + metadata: + connID: "552" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('9901edf5-b076-4850-9ada-b9c75949d59c', 'suresh_vizag', 'suresh_vizag@example.in', 'scrypt:32768:8:1$hWu3jNPzsKTqvyFS$f1c298721b78ec2cf15f0a1aaffb7193aa22e0cc90d390cb47be9ac3661c7a6b7acd0bb6cb73c6b62551d78be5228a4152fc8d5b655dc5618b533132c3896a24', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.299009172Z + restimestampmock: 2025-11-10T12:22:19.299663937Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1729 +spec: + metadata: + connID: "552" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.299825066Z + restimestampmock: 2025-11-10T12:22:19.314440683Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1730 +spec: + metadata: + connID: "554" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [220, 196, 18, 223, 168, 45, 92, 79, 22, 175, 25, 81, 245, 76, 152, 247, 222, 165, 100, 129, 74, 13, 173, 125, 84, 212, 146, 84, 108, 87, 152, 207] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 443 + auth_plugin_data: [21, 93, 14, 102, 5, 75, 116, 37, 54, 126, 126, 6, 87, 75, 32, 53, 80, 32, 105, 85, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.989398274Z + restimestampmock: 2025-11-10T12:22:19.99826487Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1731 +spec: + metadata: + connID: "554" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.998483498Z + restimestampmock: 2025-11-10T12:22:19.998681036Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1732 +spec: + metadata: + connID: "554" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.998801815Z + restimestampmock: 2025-11-10T12:22:19.998923574Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1733 +spec: + metadata: + connID: "554" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.999042223Z + restimestampmock: 2025-11-10T12:22:19.999178482Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1734 +spec: + metadata: + connID: "554" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='suresh_vizag' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9901edf5-b076-4850-9ada-b9c75949d59c + unsigned: false + - type: 253 + name: username + value: suresh_vizag + unsigned: false + - type: 253 + name: email + value: suresh_vizag@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$hWu3jNPzsKTqvyFS$f1c298721b78ec2cf15f0a1aaffb7193aa22e0cc90d390cb47be9ac3661c7a6b7acd0bb6cb73c6b62551d78be5228a4152fc8d5b655dc5618b533132c3896a24 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777339 + reqtimestampmock: 2025-11-10T12:22:19.9994145Z + restimestampmock: 2025-11-10T12:22:19.999972456Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1735 +spec: + metadata: + connID: "556" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [147, 187, 149, 101, 24, 108, 9, 251, 110, 29, 36, 147, 107, 212, 177, 236, 203, 96, 93, 168, 47, 18, 3, 168, 90, 174, 84, 10, 104, 151, 137, 237] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 444 + auth_plugin_data: [45, 35, 120, 105, 34, 116, 83, 37, 92, 117, 30, 39, 30, 49, 105, 37, 10, 75, 39, 54, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.737173105Z + restimestampmock: 2025-11-10T12:22:20.744535244Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1736 +spec: + metadata: + connID: "556" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.744736471Z + restimestampmock: 2025-11-10T12:22:20.744915861Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1737 +spec: + metadata: + connID: "556" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.74503654Z + restimestampmock: 2025-11-10T12:22:20.745181648Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1738 +spec: + metadata: + connID: "556" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.745294458Z + restimestampmock: 2025-11-10T12:22:20.745386826Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1739 +spec: + metadata: + connID: "556" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9901edf5-b076-4850-9ada-b9c75949d59c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9901edf5-b076-4850-9ada-b9c75949d59c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.745796913Z + restimestampmock: 2025-11-10T12:22:20.746201189Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1740 +spec: + metadata: + connID: "556" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 279 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('04a4c42e-2bc4-4614-af7f-b84c7e7b598c','9901edf5-b076-4850-9ada-b9c75949d59c','RK Beach Road',NULL,'Visakhapatnam','Andhra Pradesh','530003','IN','+919849012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.746393138Z + restimestampmock: 2025-11-10T12:22:20.746707835Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1741 +spec: + metadata: + connID: "556" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='9901edf5-b076-4850-9ada-b9c75949d59c' AND id<>'04a4c42e-2bc4-4614-af7f-b84c7e7b598c' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.746833994Z + restimestampmock: 2025-11-10T12:22:20.747091702Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1742 +spec: + metadata: + connID: "556" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777340 + reqtimestampmock: 2025-11-10T12:22:20.747300321Z + restimestampmock: 2025-11-10T12:22:20.759352609Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1743 +spec: + metadata: + connID: "558" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [38, 89, 84, 19, 140, 202, 77, 54, 10, 33, 130, 73, 134, 58, 46, 56, 55, 246, 32, 30, 203, 46, 209, 110, 27, 173, 125, 83, 165, 109, 119, 126] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 445 + auth_plugin_data: [58, 115, 120, 86, 40, 71, 43, 34, 44, 49, 11, 23, 63, 23, 94, 55, 73, 110, 20, 84, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.463660474Z + restimestampmock: 2025-11-10T12:22:21.470993472Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1744 +spec: + metadata: + connID: "558" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.471317821Z + restimestampmock: 2025-11-10T12:22:21.471654267Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1745 +spec: + metadata: + connID: "558" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.471791737Z + restimestampmock: 2025-11-10T12:22:21.472040764Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1746 +spec: + metadata: + connID: "558" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.472190313Z + restimestampmock: 2025-11-10T12:22:21.472321722Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1747 +spec: + metadata: + connID: "558" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9901edf5-b076-4850-9ada-b9c75949d59c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9901edf5-b076-4850-9ada-b9c75949d59c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.47253777Z + restimestampmock: 2025-11-10T12:22:21.472965687Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1748 +spec: + metadata: + connID: "558" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='9901edf5-b076-4850-9ada-b9c75949d59c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.473194715Z + restimestampmock: 2025-11-10T12:22:21.476895874Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1749 +spec: + metadata: + connID: "558" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='9901edf5-b076-4850-9ada-b9c75949d59c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.477048052Z + restimestampmock: 2025-11-10T12:22:21.47737438Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1750 +spec: + metadata: + connID: "558" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777341 + reqtimestampmock: 2025-11-10T12:22:21.477477409Z + restimestampmock: 2025-11-10T12:22:21.487323247Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1751 +spec: + metadata: + connID: "560" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [18, 231, 117, 158, 92, 10, 164, 44, 169, 233, 227, 147, 23, 45, 207, 86, 72, 255, 96, 189, 3, 138, 95, 249, 199, 159, 197, 47, 213, 131, 229, 57] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 446 + auth_plugin_data: [32, 33, 82, 30, 77, 123, 76, 80, 110, 13, 95, 22, 37, 85, 48, 120, 34, 111, 67, 38, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777343 + reqtimestampmock: 2025-11-10T12:22:23.898749774Z + restimestampmock: 2025-11-10T12:22:23.905270949Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1752 +spec: + metadata: + connID: "560" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777343 + reqtimestampmock: 2025-11-10T12:22:23.905522347Z + restimestampmock: 2025-11-10T12:22:23.905763666Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1753 +spec: + metadata: + connID: "560" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777343 + reqtimestampmock: 2025-11-10T12:22:23.905906504Z + restimestampmock: 2025-11-10T12:22:23.906059443Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1754 +spec: + metadata: + connID: "560" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777343 + reqtimestampmock: 2025-11-10T12:22:23.906200762Z + restimestampmock: 2025-11-10T12:22:23.90642192Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1755 +spec: + metadata: + connID: "560" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('86d9e8a4-6a00-46c9-9077-6362c89a686f', 'manoj_patna', 'manoj_patna@example.in', 'scrypt:32768:8:1$rQbNsBvJZUgQnbNf$ce561f843f8bab0b6f8f0da97db89b0094c0f4dd3d9714ec2ce2f012918701787ab85c149ce9bffd66682afc4b91de34d985d939c5efcaca70b7ed8ec85f838f', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777343 + reqtimestampmock: 2025-11-10T12:22:23.958023489Z + restimestampmock: 2025-11-10T12:22:23.958530494Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1756 +spec: + metadata: + connID: "560" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777343 + reqtimestampmock: 2025-11-10T12:22:23.958673892Z + restimestampmock: 2025-11-10T12:22:23.971346676Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1757 +spec: + metadata: + connID: "562" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [181, 9, 161, 6, 18, 69, 241, 46, 171, 112, 108, 179, 46, 40, 3, 64, 3, 135, 228, 108, 247, 63, 139, 79, 215, 33, 24, 23, 53, 237, 181, 171] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 447 + auth_plugin_data: [22, 77, 111, 2, 104, 10, 22, 27, 79, 122, 113, 100, 49, 112, 15, 72, 19, 7, 85, 84, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777344 + reqtimestampmock: 2025-11-10T12:22:24.650001528Z + restimestampmock: 2025-11-10T12:22:24.657962261Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1758 +spec: + metadata: + connID: "562" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777344 + reqtimestampmock: 2025-11-10T12:22:24.658175839Z + restimestampmock: 2025-11-10T12:22:24.658422417Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1759 +spec: + metadata: + connID: "562" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777344 + reqtimestampmock: 2025-11-10T12:22:24.658528906Z + restimestampmock: 2025-11-10T12:22:24.658702354Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1760 +spec: + metadata: + connID: "562" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777344 + reqtimestampmock: 2025-11-10T12:22:24.658806084Z + restimestampmock: 2025-11-10T12:22:24.658926893Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1761 +spec: + metadata: + connID: "562" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='manoj_patna' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: 86d9e8a4-6a00-46c9-9077-6362c89a686f + unsigned: false + - type: 253 + name: username + value: manoj_patna + unsigned: false + - type: 253 + name: email + value: manoj_patna@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$rQbNsBvJZUgQnbNf$ce561f843f8bab0b6f8f0da97db89b0094c0f4dd3d9714ec2ce2f012918701787ab85c149ce9bffd66682afc4b91de34d985d939c5efcaca70b7ed8ec85f838f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777344 + reqtimestampmock: 2025-11-10T12:22:24.659082502Z + restimestampmock: 2025-11-10T12:22:24.659602098Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1762 +spec: + metadata: + connID: "564" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [244, 112, 126, 200, 152, 2, 83, 194, 69, 81, 238, 39, 83, 245, 204, 79, 229, 215, 6, 175, 134, 35, 40, 31, 160, 5, 67, 216, 152, 38, 242, 14] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 449 + auth_plugin_data: [60, 110, 67, 102, 22, 127, 96, 102, 25, 56, 12, 34, 64, 116, 19, 70, 124, 119, 23, 118, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.455049929Z + restimestampmock: 2025-11-10T12:22:25.463446179Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1763 +spec: + metadata: + connID: "564" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.463659648Z + restimestampmock: 2025-11-10T12:22:25.463860096Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1764 +spec: + metadata: + connID: "564" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.464033114Z + restimestampmock: 2025-11-10T12:22:25.464222123Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1765 +spec: + metadata: + connID: "564" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.464355002Z + restimestampmock: 2025-11-10T12:22:25.46447469Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1766 +spec: + metadata: + connID: "564" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='86d9e8a4-6a00-46c9-9077-6362c89a686f' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 86d9e8a4-6a00-46c9-9077-6362c89a686f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.464697759Z + restimestampmock: 2025-11-10T12:22:25.465137365Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1767 +spec: + metadata: + connID: "564" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 260 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('06437b9d-d8b1-4db6-b86c-f2430b82c704','86d9e8a4-6a00-46c9-9077-6362c89a686f','Boring Road',NULL,'Patna','Bihar','800001','IN','+919431012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.465355914Z + restimestampmock: 2025-11-10T12:22:25.465795439Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1768 +spec: + metadata: + connID: "564" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='86d9e8a4-6a00-46c9-9077-6362c89a686f' AND id<>'06437b9d-d8b1-4db6-b86c-f2430b82c704' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.466006238Z + restimestampmock: 2025-11-10T12:22:25.466345795Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1769 +spec: + metadata: + connID: "564" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777345 + reqtimestampmock: 2025-11-10T12:22:25.466551912Z + restimestampmock: 2025-11-10T12:22:25.477333013Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1770 +spec: + metadata: + connID: "566" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [0, 34, 132, 45, 95, 176, 231, 230, 233, 92, 211, 27, 62, 34, 1, 220, 177, 203, 245, 124, 18, 5, 87, 70, 129, 33, 234, 51, 205, 188, 191, 206] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 450 + auth_plugin_data: [33, 1, 12, 52, 67, 42, 124, 52, 50, 102, 60, 56, 24, 106, 35, 101, 125, 42, 89, 58, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.191218368Z + restimestampmock: 2025-11-10T12:22:26.20066323Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1771 +spec: + metadata: + connID: "566" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.200908988Z + restimestampmock: 2025-11-10T12:22:26.201122286Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1772 +spec: + metadata: + connID: "566" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.201269325Z + restimestampmock: 2025-11-10T12:22:26.201425444Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1773 +spec: + metadata: + connID: "566" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.201542363Z + restimestampmock: 2025-11-10T12:22:26.201648321Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1774 +spec: + metadata: + connID: "566" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='86d9e8a4-6a00-46c9-9077-6362c89a686f' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 86d9e8a4-6a00-46c9-9077-6362c89a686f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.2018294Z + restimestampmock: 2025-11-10T12:22:26.202228467Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1775 +spec: + metadata: + connID: "566" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='86d9e8a4-6a00-46c9-9077-6362c89a686f' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.202390786Z + restimestampmock: 2025-11-10T12:22:26.202773812Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1776 +spec: + metadata: + connID: "566" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='86d9e8a4-6a00-46c9-9077-6362c89a686f' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.202916991Z + restimestampmock: 2025-11-10T12:22:26.203249218Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1777 +spec: + metadata: + connID: "566" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777346 + reqtimestampmock: 2025-11-10T12:22:26.203342158Z + restimestampmock: 2025-11-10T12:22:26.219134566Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1778 +spec: + metadata: + connID: "568" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [246, 91, 17, 175, 96, 171, 245, 117, 45, 47, 192, 73, 250, 227, 190, 95, 137, 89, 158, 156, 232, 154, 192, 107, 159, 62, 189, 143, 147, 26, 92, 83] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 451 + auth_plugin_data: [21, 23, 57, 29, 101, 34, 79, 126, 85, 82, 67, 84, 63, 37, 52, 65, 24, 75, 91, 75, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777348 + reqtimestampmock: 2025-11-10T12:22:28.684251567Z + restimestampmock: 2025-11-10T12:22:28.691738684Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1779 +spec: + metadata: + connID: "568" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777348 + reqtimestampmock: 2025-11-10T12:22:28.691952432Z + restimestampmock: 2025-11-10T12:22:28.692170061Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1780 +spec: + metadata: + connID: "568" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777348 + reqtimestampmock: 2025-11-10T12:22:28.692331029Z + restimestampmock: 2025-11-10T12:22:28.692484828Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1781 +spec: + metadata: + connID: "568" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777348 + reqtimestampmock: 2025-11-10T12:22:28.692624567Z + restimestampmock: 2025-11-10T12:22:28.692732946Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1782 +spec: + metadata: + connID: "568" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('9c22935f-1a65-4d1a-9064-c702ca10afc9', 'harpreet_ldh', 'harpreet_ldh@example.in', 'scrypt:32768:8:1$YE5HfZtjgApGT4iW$77dc414d897e35fe765b12203a651cc190517d202054ed05a0aaa3b26790c90eeccfeeb0e4a36adee7afe70b7e79d6fbf8cae241ffccff027ca42a70ab92ee06', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777348 + reqtimestampmock: 2025-11-10T12:22:28.749127684Z + restimestampmock: 2025-11-10T12:22:28.749702639Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1783 +spec: + metadata: + connID: "568" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777348 + reqtimestampmock: 2025-11-10T12:22:28.749918077Z + restimestampmock: 2025-11-10T12:22:28.761292272Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1784 +spec: + metadata: + connID: "570" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [148, 108, 35, 51, 168, 74, 66, 103, 117, 185, 213, 80, 137, 141, 253, 77, 114, 56, 188, 209, 101, 116, 45, 144, 153, 62, 160, 255, 85, 181, 198, 193] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 452 + auth_plugin_data: [47, 95, 114, 88, 30, 50, 9, 69, 48, 82, 31, 59, 43, 81, 101, 38, 28, 11, 92, 95, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777349 + reqtimestampmock: 2025-11-10T12:22:29.454466132Z + restimestampmock: 2025-11-10T12:22:29.462006929Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1785 +spec: + metadata: + connID: "570" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777349 + reqtimestampmock: 2025-11-10T12:22:29.462384435Z + restimestampmock: 2025-11-10T12:22:29.462601814Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1786 +spec: + metadata: + connID: "570" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777349 + reqtimestampmock: 2025-11-10T12:22:29.462762792Z + restimestampmock: 2025-11-10T12:22:29.46293459Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1787 +spec: + metadata: + connID: "570" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777349 + reqtimestampmock: 2025-11-10T12:22:29.463057799Z + restimestampmock: 2025-11-10T12:22:29.463231048Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1788 +spec: + metadata: + connID: "570" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='harpreet_ldh' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 9c22935f-1a65-4d1a-9064-c702ca10afc9 + unsigned: false + - type: 253 + name: username + value: harpreet_ldh + unsigned: false + - type: 253 + name: email + value: harpreet_ldh@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$YE5HfZtjgApGT4iW$77dc414d897e35fe765b12203a651cc190517d202054ed05a0aaa3b26790c90eeccfeeb0e4a36adee7afe70b7e79d6fbf8cae241ffccff027ca42a70ab92ee06 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777349 + reqtimestampmock: 2025-11-10T12:22:29.463454737Z + restimestampmock: 2025-11-10T12:22:29.463887303Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1789 +spec: + metadata: + connID: "572" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [130, 243, 161, 66, 146, 145, 230, 209, 143, 248, 121, 96, 61, 208, 220, 81, 17, 201, 173, 14, 150, 230, 45, 231, 7, 117, 145, 109, 161, 187, 64, 68] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 454 + auth_plugin_data: [21, 61, 37, 46, 27, 113, 19, 65, 38, 61, 126, 103, 37, 103, 106, 88, 26, 92, 64, 80, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.280901586Z + restimestampmock: 2025-11-10T12:22:30.288741111Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1790 +spec: + metadata: + connID: "572" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.288987558Z + restimestampmock: 2025-11-10T12:22:30.289209497Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1791 +spec: + metadata: + connID: "572" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.289411675Z + restimestampmock: 2025-11-10T12:22:30.289574104Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1792 +spec: + metadata: + connID: "572" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.289706733Z + restimestampmock: 2025-11-10T12:22:30.289833842Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1793 +spec: + metadata: + connID: "572" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9c22935f-1a65-4d1a-9064-c702ca10afc9' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9c22935f-1a65-4d1a-9064-c702ca10afc9 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.2901069Z + restimestampmock: 2025-11-10T12:22:30.290556195Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1794 +spec: + metadata: + connID: "572" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 266 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('751a63b7-51ee-4790-b9e3-e93190ce458f','9c22935f-1a65-4d1a-9064-c702ca10afc9','Sarabha Nagar',NULL,'Ludhiana','Punjab','141001','IN','+919815012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.290770823Z + restimestampmock: 2025-11-10T12:22:30.29116722Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1795 +spec: + metadata: + connID: "572" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='9c22935f-1a65-4d1a-9064-c702ca10afc9' AND id<>'751a63b7-51ee-4790-b9e3-e93190ce458f' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.291350189Z + restimestampmock: 2025-11-10T12:22:30.291787574Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1796 +spec: + metadata: + connID: "572" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777350 + reqtimestampmock: 2025-11-10T12:22:30.291908133Z + restimestampmock: 2025-11-10T12:22:30.305470251Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1797 +spec: + metadata: + connID: "574" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [17, 130, 110, 101, 173, 199, 173, 62, 9, 51, 216, 220, 25, 189, 67, 239, 15, 112, 17, 106, 102, 182, 126, 238, 132, 37, 100, 190, 69, 72, 178, 229] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 455 + auth_plugin_data: [40, 55, 9, 62, 3, 106, 105, 124, 103, 86, 1, 110, 38, 7, 96, 48, 41, 27, 2, 97, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.015918757Z + restimestampmock: 2025-11-10T12:22:31.024820672Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1798 +spec: + metadata: + connID: "574" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.025116929Z + restimestampmock: 2025-11-10T12:22:31.025382517Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1799 +spec: + metadata: + connID: "574" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.025521996Z + restimestampmock: 2025-11-10T12:22:31.025728654Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1800 +spec: + metadata: + connID: "574" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.025866384Z + restimestampmock: 2025-11-10T12:22:31.026009972Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1801 +spec: + metadata: + connID: "574" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='9c22935f-1a65-4d1a-9064-c702ca10afc9' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 9c22935f-1a65-4d1a-9064-c702ca10afc9 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.02624952Z + restimestampmock: 2025-11-10T12:22:31.026716345Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1802 +spec: + metadata: + connID: "574" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='9c22935f-1a65-4d1a-9064-c702ca10afc9' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.026952924Z + restimestampmock: 2025-11-10T12:22:31.027437629Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1803 +spec: + metadata: + connID: "574" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='9c22935f-1a65-4d1a-9064-c702ca10afc9' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.027676399Z + restimestampmock: 2025-11-10T12:22:31.028192104Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1804 +spec: + metadata: + connID: "574" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777351 + reqtimestampmock: 2025-11-10T12:22:31.028338642Z + restimestampmock: 2025-11-10T12:22:31.042295705Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1805 +spec: + metadata: + connID: "576" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [105, 92, 135, 35, 228, 12, 8, 168, 83, 133, 213, 119, 225, 94, 150, 144, 93, 188, 165, 134, 246, 67, 103, 63, 114, 154, 37, 14, 109, 16, 38, 14] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 456 + auth_plugin_data: [119, 13, 105, 82, 22, 21, 33, 112, 41, 59, 95, 30, 47, 48, 37, 32, 58, 20, 77, 15, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777352 + reqtimestampmock: 2025-11-10T12:22:32.986664708Z + restimestampmock: 2025-11-10T12:22:32.996824473Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1806 +spec: + metadata: + connID: "576" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777352 + reqtimestampmock: 2025-11-10T12:22:32.997086391Z + restimestampmock: 2025-11-10T12:22:32.997358878Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1807 +spec: + metadata: + connID: "576" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777352 + reqtimestampmock: 2025-11-10T12:22:32.997504497Z + restimestampmock: 2025-11-10T12:22:32.997685575Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1808 +spec: + metadata: + connID: "576" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777352 + reqtimestampmock: 2025-11-10T12:22:32.997816974Z + restimestampmock: 2025-11-10T12:22:32.998005772Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1809 +spec: + metadata: + connID: "576" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 323 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a', 'aisha_agra', 'aisha_agra@example.in', 'scrypt:32768:8:1$Ah1ScQWcEVoEoykx$0eca4ea8dcdb5d0cfe698973f914ea04eb23061df8f1a862a65e915589f37a7d738ab1c49793f4eeafd9112efad673eb1bbeed0009ef73b8c806e103742bbe46', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777353 + reqtimestampmock: 2025-11-10T12:22:33.057378316Z + restimestampmock: 2025-11-10T12:22:33.057914942Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1810 +spec: + metadata: + connID: "576" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777353 + reqtimestampmock: 2025-11-10T12:22:33.058091381Z + restimestampmock: 2025-11-10T12:22:33.069286767Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1811 +spec: + metadata: + connID: "578" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [177, 158, 197, 192, 182, 0, 4, 183, 52, 89, 64, 178, 109, 104, 84, 22, 152, 214, 129, 250, 144, 95, 125, 86, 157, 197, 255, 86, 92, 14, 1, 225] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 457 + auth_plugin_data: [57, 5, 124, 69, 84, 67, 76, 68, 127, 109, 56, 104, 6, 116, 3, 43, 109, 50, 126, 40, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777353 + reqtimestampmock: 2025-11-10T12:22:33.829715564Z + restimestampmock: 2025-11-10T12:22:33.838446691Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1812 +spec: + metadata: + connID: "578" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777353 + reqtimestampmock: 2025-11-10T12:22:33.83868472Z + restimestampmock: 2025-11-10T12:22:33.838864918Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1813 +spec: + metadata: + connID: "578" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777353 + reqtimestampmock: 2025-11-10T12:22:33.838976466Z + restimestampmock: 2025-11-10T12:22:33.839117375Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1814 +spec: + metadata: + connID: "578" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777353 + reqtimestampmock: 2025-11-10T12:22:33.839273814Z + restimestampmock: 2025-11-10T12:22:33.839371023Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1815 +spec: + metadata: + connID: "578" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 83 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='aisha_agra' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 233 + sequence_id: 6 + values: + - type: 253 + name: id + value: 5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a + unsigned: false + - type: 253 + name: username + value: aisha_agra + unsigned: false + - type: 253 + name: email + value: aisha_agra@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Ah1ScQWcEVoEoykx$0eca4ea8dcdb5d0cfe698973f914ea04eb23061df8f1a862a65e915589f37a7d738ab1c49793f4eeafd9112efad673eb1bbeed0009ef73b8c806e103742bbe46 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777353 + reqtimestampmock: 2025-11-10T12:22:33.839542102Z + restimestampmock: 2025-11-10T12:22:33.839904779Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1816 +spec: + metadata: + connID: "580" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [208, 127, 21, 202, 82, 0, 118, 244, 74, 200, 168, 226, 156, 171, 17, 93, 142, 92, 1, 46, 245, 105, 126, 46, 224, 134, 169, 237, 162, 80, 30, 85] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 458 + auth_plugin_data: [86, 53, 40, 64, 58, 114, 78, 48, 61, 62, 112, 102, 55, 24, 120, 124, 72, 99, 98, 114, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.625814493Z + restimestampmock: 2025-11-10T12:22:34.632425209Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1817 +spec: + metadata: + connID: "580" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.632632636Z + restimestampmock: 2025-11-10T12:22:34.632797785Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1818 +spec: + metadata: + connID: "580" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.632888114Z + restimestampmock: 2025-11-10T12:22:34.633143772Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1819 +spec: + metadata: + connID: "580" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.633243752Z + restimestampmock: 2025-11-10T12:22:34.633348561Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1820 +spec: + metadata: + connID: "580" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.633785926Z + restimestampmock: 2025-11-10T12:22:34.633917836Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1821 +spec: + metadata: + connID: "580" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 264 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('ea294c9b-cec5-4bb4-aca0-c963574e5179','5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a','Taj Ganj',NULL,'Agra','Uttar Pradesh','282001','IN','+919837012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.634090884Z + restimestampmock: 2025-11-10T12:22:34.634401701Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1822 +spec: + metadata: + connID: "580" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a' AND id<>'ea294c9b-cec5-4bb4-aca0-c963574e5179' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.6345297Z + restimestampmock: 2025-11-10T12:22:34.634814138Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1823 +spec: + metadata: + connID: "580" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777354 + reqtimestampmock: 2025-11-10T12:22:34.634930247Z + restimestampmock: 2025-11-10T12:22:34.644181439Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1824 +spec: + metadata: + connID: "582" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [145, 139, 31, 131, 105, 26, 144, 244, 105, 121, 152, 138, 142, 109, 66, 39, 11, 208, 128, 239, 243, 91, 77, 105, 207, 158, 68, 97, 152, 14, 186, 251] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 460 + auth_plugin_data: [40, 99, 107, 75, 77, 33, 65, 84, 38, 46, 124, 127, 123, 24, 118, 87, 82, 83, 63, 92, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.421368758Z + restimestampmock: 2025-11-10T12:22:35.431482623Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1825 +spec: + metadata: + connID: "582" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.431788781Z + restimestampmock: 2025-11-10T12:22:35.431972309Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1826 +spec: + metadata: + connID: "582" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.432206107Z + restimestampmock: 2025-11-10T12:22:35.432370256Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1827 +spec: + metadata: + connID: "582" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.432501085Z + restimestampmock: 2025-11-10T12:22:35.432620424Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1828 +spec: + metadata: + connID: "582" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.432974621Z + restimestampmock: 2025-11-10T12:22:35.433443447Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1829 +spec: + metadata: + connID: "582" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.433715105Z + restimestampmock: 2025-11-10T12:22:35.43426147Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1830 +spec: + metadata: + connID: "582" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.434457409Z + restimestampmock: 2025-11-10T12:22:35.434850575Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1831 +spec: + metadata: + connID: "582" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777355 + reqtimestampmock: 2025-11-10T12:22:35.435077874Z + restimestampmock: 2025-11-10T12:22:35.448237593Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1832 +spec: + metadata: + connID: "584" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [175, 44, 102, 198, 36, 100, 62, 161, 121, 171, 3, 244, 136, 48, 142, 168, 201, 36, 243, 252, 238, 149, 106, 46, 18, 226, 114, 194, 252, 166, 16, 241] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 461 + auth_plugin_data: [10, 55, 88, 126, 71, 123, 105, 117, 91, 43, 50, 75, 63, 59, 17, 113, 73, 12, 118, 1, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777357 + reqtimestampmock: 2025-11-10T12:22:37.197491678Z + restimestampmock: 2025-11-10T12:22:37.204921097Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1833 +spec: + metadata: + connID: "584" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777357 + reqtimestampmock: 2025-11-10T12:22:37.205240394Z + restimestampmock: 2025-11-10T12:22:37.205465652Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1834 +spec: + metadata: + connID: "584" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777357 + reqtimestampmock: 2025-11-10T12:22:37.205625301Z + restimestampmock: 2025-11-10T12:22:37.206497304Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1835 +spec: + metadata: + connID: "584" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777357 + reqtimestampmock: 2025-11-10T12:22:37.206646642Z + restimestampmock: 2025-11-10T12:22:37.206807211Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1836 +spec: + metadata: + connID: "584" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('cde545bf-bacd-4efb-891d-b197fc7e0e6c', 'parth_vadodara', 'parth_vadodara@example.in', 'scrypt:32768:8:1$HwF56AUmG6g1kg7K$2a0a2b32314a8a62fd061e5430606b67d7595b4e4f1540e0cadcd91787a8ae892347bb5c56454bacea616a6a176716a72335c71cf9e905648ac7386af5fcf46f', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777357 + reqtimestampmock: 2025-11-10T12:22:37.265306042Z + restimestampmock: 2025-11-10T12:22:37.265866057Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1837 +spec: + metadata: + connID: "584" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777357 + reqtimestampmock: 2025-11-10T12:22:37.266126405Z + restimestampmock: 2025-11-10T12:22:37.280201107Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1838 +spec: + metadata: + connID: "586" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [17, 111, 195, 146, 164, 46, 110, 209, 138, 158, 149, 28, 72, 131, 22, 95, 94, 77, 205, 225, 219, 35, 170, 140, 87, 213, 36, 79, 59, 110, 84, 150] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 462 + auth_plugin_data: [16, 22, 126, 62, 42, 86, 6, 54, 49, 28, 39, 103, 1, 18, 92, 75, 70, 85, 90, 6, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.018159334Z + restimestampmock: 2025-11-10T12:22:38.025182046Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1839 +spec: + metadata: + connID: "586" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.025381504Z + restimestampmock: 2025-11-10T12:22:38.025635862Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1840 +spec: + metadata: + connID: "586" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.025801061Z + restimestampmock: 2025-11-10T12:22:38.026003608Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1841 +spec: + metadata: + connID: "586" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.026118887Z + restimestampmock: 2025-11-10T12:22:38.026269817Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1842 +spec: + metadata: + connID: "586" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='parth_vadodara' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: cde545bf-bacd-4efb-891d-b197fc7e0e6c + unsigned: false + - type: 253 + name: username + value: parth_vadodara + unsigned: false + - type: 253 + name: email + value: parth_vadodara@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$HwF56AUmG6g1kg7K$2a0a2b32314a8a62fd061e5430606b67d7595b4e4f1540e0cadcd91787a8ae892347bb5c56454bacea616a6a176716a72335c71cf9e905648ac7386af5fcf46f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.026434665Z + restimestampmock: 2025-11-10T12:22:38.026929441Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1843 +spec: + metadata: + connID: "588" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [136, 141, 54, 41, 239, 147, 112, 49, 167, 247, 8, 4, 191, 243, 205, 172, 189, 223, 53, 44, 199, 53, 192, 115, 63, 52, 155, 231, 70, 209, 123, 96] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 463 + auth_plugin_data: [92, 41, 34, 85, 75, 6, 31, 105, 37, 23, 9, 74, 57, 81, 35, 86, 29, 92, 91, 116, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.765551753Z + restimestampmock: 2025-11-10T12:22:38.773550966Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1844 +spec: + metadata: + connID: "588" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.773774193Z + restimestampmock: 2025-11-10T12:22:38.773973501Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1845 +spec: + metadata: + connID: "588" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.77410318Z + restimestampmock: 2025-11-10T12:22:38.774268529Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1846 +spec: + metadata: + connID: "588" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.774379468Z + restimestampmock: 2025-11-10T12:22:38.774450987Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1847 +spec: + metadata: + connID: "588" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='cde545bf-bacd-4efb-891d-b197fc7e0e6c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: cde545bf-bacd-4efb-891d-b197fc7e0e6c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.774618676Z + restimestampmock: 2025-11-10T12:22:38.775011442Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1848 +spec: + metadata: + connID: "588" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 262 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('5e2876ef-bc0a-4d94-b867-bad0945c4275','cde545bf-bacd-4efb-891d-b197fc7e0e6c','Alkapuri',NULL,'Vadodara','Gujarat','390007','IN','+919824012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.775262511Z + restimestampmock: 2025-11-10T12:22:38.775612957Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1849 +spec: + metadata: + connID: "588" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='cde545bf-bacd-4efb-891d-b197fc7e0e6c' AND id<>'5e2876ef-bc0a-4d94-b867-bad0945c4275' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.775776827Z + restimestampmock: 2025-11-10T12:22:38.776088105Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1850 +spec: + metadata: + connID: "588" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777358 + reqtimestampmock: 2025-11-10T12:22:38.776224032Z + restimestampmock: 2025-11-10T12:22:38.786135869Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1851 +spec: + metadata: + connID: "590" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [137, 216, 137, 73, 114, 149, 131, 47, 231, 177, 15, 52, 42, 145, 113, 235, 29, 15, 91, 2, 195, 148, 136, 48, 182, 65, 113, 157, 9, 163, 168, 115] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 464 + auth_plugin_data: [81, 1, 59, 63, 115, 29, 80, 74, 1, 46, 51, 57, 35, 79, 12, 16, 30, 4, 65, 123, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.592934752Z + restimestampmock: 2025-11-10T12:22:39.602823419Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1852 +spec: + metadata: + connID: "590" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.603049846Z + restimestampmock: 2025-11-10T12:22:39.603291055Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1853 +spec: + metadata: + connID: "590" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.603442664Z + restimestampmock: 2025-11-10T12:22:39.603595962Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1854 +spec: + metadata: + connID: "590" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.603717151Z + restimestampmock: 2025-11-10T12:22:39.603834101Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1855 +spec: + metadata: + connID: "590" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='cde545bf-bacd-4efb-891d-b197fc7e0e6c' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: cde545bf-bacd-4efb-891d-b197fc7e0e6c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.604030448Z + restimestampmock: 2025-11-10T12:22:39.604511484Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1856 +spec: + metadata: + connID: "590" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='cde545bf-bacd-4efb-891d-b197fc7e0e6c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.604642913Z + restimestampmock: 2025-11-10T12:22:39.605122069Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1857 +spec: + metadata: + connID: "590" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='cde545bf-bacd-4efb-891d-b197fc7e0e6c' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.605452717Z + restimestampmock: 2025-11-10T12:22:39.605908132Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1858 +spec: + metadata: + connID: "590" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777359 + reqtimestampmock: 2025-11-10T12:22:39.606157621Z + restimestampmock: 2025-11-10T12:22:39.616160016Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1859 +spec: + metadata: + connID: "592" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [182, 157, 128, 210, 18, 109, 38, 209, 204, 50, 118, 6, 146, 86, 213, 240, 214, 115, 99, 180, 13, 92, 35, 249, 48, 191, 92, 139, 71, 99, 210, 46] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 466 + auth_plugin_data: [101, 37, 68, 49, 100, 18, 24, 95, 78, 110, 46, 100, 24, 63, 8, 32, 114, 78, 39, 43, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777361 + reqtimestampmock: 2025-11-10T12:22:41.427909563Z + restimestampmock: 2025-11-10T12:22:41.435624038Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1860 +spec: + metadata: + connID: "592" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777361 + reqtimestampmock: 2025-11-10T12:22:41.435848436Z + restimestampmock: 2025-11-10T12:22:41.436040984Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1861 +spec: + metadata: + connID: "592" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777361 + reqtimestampmock: 2025-11-10T12:22:41.436180063Z + restimestampmock: 2025-11-10T12:22:41.436387021Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1862 +spec: + metadata: + connID: "592" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777361 + reqtimestampmock: 2025-11-10T12:22:41.4365261Z + restimestampmock: 2025-11-10T12:22:41.43665221Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1863 +spec: + metadata: + connID: "592" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a22e67bf-eae3-4636-8ef7-0a9772a483d9', 'bipul_guwahati', 'bipul_guwahati@example.in', 'scrypt:32768:8:1$sFD1Q5Mofpzd6xWQ$a210482e3e631d2ff5d30de5c403f399f2affdac186a42dc1b0848483a855063af8386e7131ca3e45d57fc0bf3549ad2a94ed2b83d34e14a85e57a4fa78f8212', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777361 + reqtimestampmock: 2025-11-10T12:22:41.492988788Z + restimestampmock: 2025-11-10T12:22:41.493557813Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1864 +spec: + metadata: + connID: "592" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777361 + reqtimestampmock: 2025-11-10T12:22:41.493688242Z + restimestampmock: 2025-11-10T12:22:41.507112869Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1865 +spec: + metadata: + connID: "594" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [48, 196, 120, 37, 237, 155, 139, 184, 197, 35, 62, 106, 212, 210, 5, 17, 153, 82, 163, 225, 185, 133, 205, 172, 22, 6, 134, 67, 110, 187, 53, 207] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 467 + auth_plugin_data: [72, 18, 120, 100, 106, 5, 75, 62, 50, 16, 119, 65, 30, 26, 123, 7, 88, 119, 39, 110, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.20533353Z + restimestampmock: 2025-11-10T12:22:42.212305611Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1866 +spec: + metadata: + connID: "594" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.212471361Z + restimestampmock: 2025-11-10T12:22:42.212650959Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1867 +spec: + metadata: + connID: "594" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.212778807Z + restimestampmock: 2025-11-10T12:22:42.213007686Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1868 +spec: + metadata: + connID: "594" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.213224034Z + restimestampmock: 2025-11-10T12:22:42.213384783Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1869 +spec: + metadata: + connID: "594" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='bipul_guwahati' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: a22e67bf-eae3-4636-8ef7-0a9772a483d9 + unsigned: false + - type: 253 + name: username + value: bipul_guwahati + unsigned: false + - type: 253 + name: email + value: bipul_guwahati@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$sFD1Q5Mofpzd6xWQ$a210482e3e631d2ff5d30de5c403f399f2affdac186a42dc1b0848483a855063af8386e7131ca3e45d57fc0bf3549ad2a94ed2b83d34e14a85e57a4fa78f8212 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.213656131Z + restimestampmock: 2025-11-10T12:22:42.214061107Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1870 +spec: + metadata: + connID: "596" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [76, 213, 40, 223, 186, 204, 107, 37, 245, 138, 232, 149, 200, 148, 185, 198, 204, 28, 78, 166, 225, 8, 221, 20, 135, 5, 179, 166, 94, 177, 211, 223] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 468 + auth_plugin_data: [106, 51, 67, 80, 37, 73, 69, 34, 121, 9, 21, 72, 64, 62, 117, 14, 1, 95, 14, 2, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.962308199Z + restimestampmock: 2025-11-10T12:22:42.96925022Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1871 +spec: + metadata: + connID: "596" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.969569358Z + restimestampmock: 2025-11-10T12:22:42.969798206Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1872 +spec: + metadata: + connID: "596" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.969975825Z + restimestampmock: 2025-11-10T12:22:42.970169453Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1873 +spec: + metadata: + connID: "596" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.970273212Z + restimestampmock: 2025-11-10T12:22:42.970377892Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1874 +spec: + metadata: + connID: "596" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a22e67bf-eae3-4636-8ef7-0a9772a483d9' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a22e67bf-eae3-4636-8ef7-0a9772a483d9 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.970565Z + restimestampmock: 2025-11-10T12:22:42.970951516Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1875 +spec: + metadata: + connID: "596" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 259 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('aa45d8d6-302e-4967-b351-256da7a22a64','a22e67bf-eae3-4636-8ef7-0a9772a483d9','GS Road',NULL,'Guwahati','Assam','781005','IN','+919864012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.971161535Z + restimestampmock: 2025-11-10T12:22:42.971509613Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1876 +spec: + metadata: + connID: "596" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='a22e67bf-eae3-4636-8ef7-0a9772a483d9' AND id<>'aa45d8d6-302e-4967-b351-256da7a22a64' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.97166291Z + restimestampmock: 2025-11-10T12:22:42.972001618Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1877 +spec: + metadata: + connID: "596" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777362 + reqtimestampmock: 2025-11-10T12:22:42.972136507Z + restimestampmock: 2025-11-10T12:22:42.982096493Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1878 +spec: + metadata: + connID: "598" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [156, 245, 32, 201, 99, 20, 58, 75, 75, 198, 41, 159, 66, 15, 105, 229, 154, 172, 146, 94, 169, 116, 243, 31, 212, 14, 99, 197, 66, 143, 174, 161] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 469 + auth_plugin_data: [41, 112, 54, 73, 16, 2, 127, 43, 92, 55, 97, 4, 84, 41, 52, 92, 26, 79, 89, 114, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.785778211Z + restimestampmock: 2025-11-10T12:22:43.794351859Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1879 +spec: + metadata: + connID: "598" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.794576778Z + restimestampmock: 2025-11-10T12:22:43.794788116Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1880 +spec: + metadata: + connID: "598" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.794985685Z + restimestampmock: 2025-11-10T12:22:43.795231442Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1881 +spec: + metadata: + connID: "598" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.795353691Z + restimestampmock: 2025-11-10T12:22:43.795463851Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1882 +spec: + metadata: + connID: "598" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a22e67bf-eae3-4636-8ef7-0a9772a483d9' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a22e67bf-eae3-4636-8ef7-0a9772a483d9 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.795648979Z + restimestampmock: 2025-11-10T12:22:43.796103925Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1883 +spec: + metadata: + connID: "598" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a22e67bf-eae3-4636-8ef7-0a9772a483d9' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.796293714Z + restimestampmock: 2025-11-10T12:22:43.79665669Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1884 +spec: + metadata: + connID: "598" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a22e67bf-eae3-4636-8ef7-0a9772a483d9' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.796874878Z + restimestampmock: 2025-11-10T12:22:43.797277395Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1885 +spec: + metadata: + connID: "598" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777363 + reqtimestampmock: 2025-11-10T12:22:43.797405024Z + restimestampmock: 2025-11-10T12:22:43.810104908Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1886 +spec: + metadata: + connID: "600" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [136, 97, 109, 60, 41, 13, 114, 208, 214, 11, 228, 79, 161, 212, 222, 125, 3, 129, 151, 204, 224, 242, 169, 172, 194, 216, 39, 255, 130, 100, 96, 78] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 471 + auth_plugin_data: [74, 126, 103, 16, 90, 9, 80, 112, 47, 99, 98, 77, 7, 69, 73, 109, 96, 60, 20, 103, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777365 + reqtimestampmock: 2025-11-10T12:22:45.717670124Z + restimestampmock: 2025-11-10T12:22:45.727202554Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1887 +spec: + metadata: + connID: "600" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777365 + reqtimestampmock: 2025-11-10T12:22:45.727400733Z + restimestampmock: 2025-11-10T12:22:45.727612011Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1888 +spec: + metadata: + connID: "600" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777365 + reqtimestampmock: 2025-11-10T12:22:45.727847259Z + restimestampmock: 2025-11-10T12:22:45.728008038Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1889 +spec: + metadata: + connID: "600" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777365 + reqtimestampmock: 2025-11-10T12:22:45.728113907Z + restimestampmock: 2025-11-10T12:22:45.728306665Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1890 +spec: + metadata: + connID: "600" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 323 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('151f3c3f-ac17-4f3d-afe9-22f899357d9d', 'smita_bbsr', 'smita_bbsr@example.in', 'scrypt:32768:8:1$jypSV0zSFdWqovlR$8aba32f40ee9323bba0f4b0984c7f80adac657b1694acd87ed27960785796bf378825c0cb29f2121c0119d3a48fe7a1cdb1c55d8f7e0aa77c58958a41a485c41', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777365 + reqtimestampmock: 2025-11-10T12:22:45.783241426Z + restimestampmock: 2025-11-10T12:22:45.783816871Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1891 +spec: + metadata: + connID: "600" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777365 + reqtimestampmock: 2025-11-10T12:22:45.784047489Z + restimestampmock: 2025-11-10T12:22:45.799133433Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1892 +spec: + metadata: + connID: "602" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [90, 238, 181, 152, 245, 176, 215, 161, 110, 177, 101, 114, 42, 178, 61, 187, 252, 41, 51, 21, 31, 247, 235, 173, 191, 251, 215, 156, 152, 250, 125, 206] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 472 + auth_plugin_data: [116, 28, 65, 106, 37, 58, 45, 116, 54, 107, 48, 30, 10, 21, 57, 26, 7, 38, 49, 85, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777366 + reqtimestampmock: 2025-11-10T12:22:46.624362091Z + restimestampmock: 2025-11-10T12:22:46.635876864Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1893 +spec: + metadata: + connID: "602" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777366 + reqtimestampmock: 2025-11-10T12:22:46.636165692Z + restimestampmock: 2025-11-10T12:22:46.63638064Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1894 +spec: + metadata: + connID: "602" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777366 + reqtimestampmock: 2025-11-10T12:22:46.636557519Z + restimestampmock: 2025-11-10T12:22:46.636777227Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1895 +spec: + metadata: + connID: "602" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777366 + reqtimestampmock: 2025-11-10T12:22:46.636930706Z + restimestampmock: 2025-11-10T12:22:46.637030795Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1896 +spec: + metadata: + connID: "602" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 83 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='smita_bbsr' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 233 + sequence_id: 6 + values: + - type: 253 + name: id + value: 151f3c3f-ac17-4f3d-afe9-22f899357d9d + unsigned: false + - type: 253 + name: username + value: smita_bbsr + unsigned: false + - type: 253 + name: email + value: smita_bbsr@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$jypSV0zSFdWqovlR$8aba32f40ee9323bba0f4b0984c7f80adac657b1694acd87ed27960785796bf378825c0cb29f2121c0119d3a48fe7a1cdb1c55d8f7e0aa77c58958a41a485c41 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777366 + reqtimestampmock: 2025-11-10T12:22:46.637314602Z + restimestampmock: 2025-11-10T12:22:46.637914468Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1897 +spec: + metadata: + connID: "604" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [78, 175, 176, 200, 210, 150, 215, 223, 69, 153, 140, 109, 131, 9, 224, 180, 140, 221, 57, 96, 110, 42, 169, 125, 51, 9, 22, 35, 24, 20, 129, 0] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 473 + auth_plugin_data: [75, 95, 7, 42, 71, 118, 68, 86, 90, 42, 84, 62, 8, 110, 64, 25, 46, 27, 95, 70, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.453903772Z + restimestampmock: 2025-11-10T12:22:47.462111784Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1898 +spec: + metadata: + connID: "604" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.462362723Z + restimestampmock: 2025-11-10T12:22:47.462604831Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1899 +spec: + metadata: + connID: "604" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.462813698Z + restimestampmock: 2025-11-10T12:22:47.462978728Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1900 +spec: + metadata: + connID: "604" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.463112466Z + restimestampmock: 2025-11-10T12:22:47.463233836Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1901 +spec: + metadata: + connID: "604" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='151f3c3f-ac17-4f3d-afe9-22f899357d9d' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 151f3c3f-ac17-4f3d-afe9-22f899357d9d + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.463497804Z + restimestampmock: 2025-11-10T12:22:47.464025498Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1902 +spec: + metadata: + connID: "604" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 268 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('3c7d34c2-64ed-4579-9bb4-72a576ab2e47','151f3c3f-ac17-4f3d-afe9-22f899357d9d','Saheed Nagar',NULL,'Bhubaneswar','Odisha','751007','IN','+919437012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.464287516Z + restimestampmock: 2025-11-10T12:22:47.464635374Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1903 +spec: + metadata: + connID: "604" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='151f3c3f-ac17-4f3d-afe9-22f899357d9d' AND id<>'3c7d34c2-64ed-4579-9bb4-72a576ab2e47' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.464784452Z + restimestampmock: 2025-11-10T12:22:47.465107639Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1904 +spec: + metadata: + connID: "604" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777367 + reqtimestampmock: 2025-11-10T12:22:47.465275099Z + restimestampmock: 2025-11-10T12:22:47.4770365Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1905 +spec: + metadata: + connID: "606" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [246, 46, 12, 186, 166, 225, 33, 79, 86, 31, 174, 29, 6, 155, 133, 179, 49, 90, 58, 46, 28, 156, 151, 145, 44, 225, 73, 138, 89, 194, 91, 162] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 474 + auth_plugin_data: [100, 25, 60, 61, 51, 54, 25, 21, 112, 83, 127, 60, 126, 126, 124, 115, 31, 9, 109, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.202609813Z + restimestampmock: 2025-11-10T12:22:48.209943451Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1906 +spec: + metadata: + connID: "606" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.210235358Z + restimestampmock: 2025-11-10T12:22:48.210438486Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1907 +spec: + metadata: + connID: "606" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.210621345Z + restimestampmock: 2025-11-10T12:22:48.210799544Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1908 +spec: + metadata: + connID: "606" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.211005761Z + restimestampmock: 2025-11-10T12:22:48.211182301Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1909 +spec: + metadata: + connID: "606" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='151f3c3f-ac17-4f3d-afe9-22f899357d9d' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 151f3c3f-ac17-4f3d-afe9-22f899357d9d + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.211749395Z + restimestampmock: 2025-11-10T12:22:48.212162982Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1910 +spec: + metadata: + connID: "606" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='151f3c3f-ac17-4f3d-afe9-22f899357d9d' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.21238039Z + restimestampmock: 2025-11-10T12:22:48.212710728Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1911 +spec: + metadata: + connID: "606" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='151f3c3f-ac17-4f3d-afe9-22f899357d9d' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.212882865Z + restimestampmock: 2025-11-10T12:22:48.213190233Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1912 +spec: + metadata: + connID: "606" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777368 + reqtimestampmock: 2025-11-10T12:22:48.213298742Z + restimestampmock: 2025-11-10T12:22:48.229209549Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1913 +spec: + metadata: + connID: "608" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [22, 236, 231, 96, 160, 26, 220, 228, 143, 45, 82, 184, 112, 132, 46, 126, 185, 149, 26, 161, 35, 174, 49, 109, 90, 113, 18, 236, 117, 176, 17, 183] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 476 + auth_plugin_data: [75, 77, 4, 99, 30, 71, 38, 113, 60, 91, 24, 116, 43, 12, 72, 118, 81, 98, 64, 65, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777370 + reqtimestampmock: 2025-11-10T12:22:50.233371069Z + restimestampmock: 2025-11-10T12:22:50.240266702Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1914 +spec: + metadata: + connID: "608" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777370 + reqtimestampmock: 2025-11-10T12:22:50.240491829Z + restimestampmock: 2025-11-10T12:22:50.240706787Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1915 +spec: + metadata: + connID: "608" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777370 + reqtimestampmock: 2025-11-10T12:22:50.240866836Z + restimestampmock: 2025-11-10T12:22:50.241040685Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1916 +spec: + metadata: + connID: "608" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777370 + reqtimestampmock: 2025-11-10T12:22:50.241194334Z + restimestampmock: 2025-11-10T12:22:50.241307683Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1917 +spec: + metadata: + connID: "608" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('7c9c0bb4-569d-483f-9ed8-86cb9add8591', 'deepak_ranchi', 'deepak_ranchi@example.in', 'scrypt:32768:8:1$TDCVtMQphGja6YY4$ed6155048bae53771500c836d1472724521de363eda2053056d0c12c05fe73068d54c1506a42a71dbe98228340a3714b487517ec947345298e52f29890d1358b', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777370 + reqtimestampmock: 2025-11-10T12:22:50.298736182Z + restimestampmock: 2025-11-10T12:22:50.299458766Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1918 +spec: + metadata: + connID: "608" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777370 + reqtimestampmock: 2025-11-10T12:22:50.299634534Z + restimestampmock: 2025-11-10T12:22:50.310173457Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1919 +spec: + metadata: + connID: "610" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [140, 107, 165, 145, 214, 254, 44, 184, 130, 162, 194, 139, 103, 132, 52, 4, 145, 4, 210, 26, 238, 247, 183, 199, 224, 81, 248, 20, 86, 217, 172, 33] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 477 + auth_plugin_data: [6, 80, 14, 33, 102, 43, 74, 23, 80, 44, 40, 4, 51, 19, 118, 64, 92, 23, 65, 85, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.131727837Z + restimestampmock: 2025-11-10T12:22:51.145471802Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1920 +spec: + metadata: + connID: "610" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.145761629Z + restimestampmock: 2025-11-10T12:22:51.146000857Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1921 +spec: + metadata: + connID: "610" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.146161276Z + restimestampmock: 2025-11-10T12:22:51.146358445Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1922 +spec: + metadata: + connID: "610" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.146494003Z + restimestampmock: 2025-11-10T12:22:51.146697651Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1923 +spec: + metadata: + connID: "610" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='deepak_ranchi' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: 7c9c0bb4-569d-483f-9ed8-86cb9add8591 + unsigned: false + - type: 253 + name: username + value: deepak_ranchi + unsigned: false + - type: 253 + name: email + value: deepak_ranchi@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$TDCVtMQphGja6YY4$ed6155048bae53771500c836d1472724521de363eda2053056d0c12c05fe73068d54c1506a42a71dbe98228340a3714b487517ec947345298e52f29890d1358b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.146951409Z + restimestampmock: 2025-11-10T12:22:51.147446405Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1924 +spec: + metadata: + connID: "612" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [113, 197, 25, 207, 49, 154, 173, 240, 238, 120, 62, 214, 106, 52, 131, 195, 160, 172, 192, 159, 63, 4, 137, 177, 51, 211, 197, 32, 94, 134, 231, 85] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 478 + auth_plugin_data: [78, 6, 2, 43, 102, 108, 21, 28, 114, 6, 7, 92, 119, 19, 39, 124, 86, 53, 56, 49, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.888295041Z + restimestampmock: 2025-11-10T12:22:51.895344691Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1925 +spec: + metadata: + connID: "612" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.895766138Z + restimestampmock: 2025-11-10T12:22:51.895831357Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1926 +spec: + metadata: + connID: "612" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.895971656Z + restimestampmock: 2025-11-10T12:22:51.896141155Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1927 +spec: + metadata: + connID: "612" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.896270634Z + restimestampmock: 2025-11-10T12:22:51.896384542Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1928 +spec: + metadata: + connID: "612" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='7c9c0bb4-569d-483f-9ed8-86cb9add8591' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 7c9c0bb4-569d-483f-9ed8-86cb9add8591 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.896603121Z + restimestampmock: 2025-11-10T12:22:51.897061507Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1929 +spec: + metadata: + connID: "612" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 264 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('6733d6ab-8f6c-44c2-93fc-3f7cb8211ad7','7c9c0bb4-569d-483f-9ed8-86cb9add8591','Kanke Road',NULL,'Ranchi','Jharkhand','834008','IN','+919431112345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.897284406Z + restimestampmock: 2025-11-10T12:22:51.897649942Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1930 +spec: + metadata: + connID: "612" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='7c9c0bb4-569d-483f-9ed8-86cb9add8591' AND id<>'6733d6ab-8f6c-44c2-93fc-3f7cb8211ad7' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.897796971Z + restimestampmock: 2025-11-10T12:22:51.898078589Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1931 +spec: + metadata: + connID: "612" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777371 + reqtimestampmock: 2025-11-10T12:22:51.898213548Z + restimestampmock: 2025-11-10T12:22:51.907998746Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1932 +spec: + metadata: + connID: "614" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [69, 74, 68, 74, 183, 176, 174, 234, 190, 221, 66, 232, 244, 42, 137, 150, 117, 62, 208, 199, 125, 160, 101, 19, 194, 189, 58, 186, 53, 61, 216, 112] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 479 + auth_plugin_data: [19, 33, 18, 96, 33, 119, 26, 1, 49, 109, 74, 46, 91, 27, 52, 1, 66, 11, 84, 120, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.691991641Z + restimestampmock: 2025-11-10T12:22:52.70040203Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1933 +spec: + metadata: + connID: "614" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.700698238Z + restimestampmock: 2025-11-10T12:22:52.700999624Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1934 +spec: + metadata: + connID: "614" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.701166284Z + restimestampmock: 2025-11-10T12:22:52.701375403Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1935 +spec: + metadata: + connID: "614" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.701523361Z + restimestampmock: 2025-11-10T12:22:52.701741819Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1936 +spec: + metadata: + connID: "614" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='7c9c0bb4-569d-483f-9ed8-86cb9add8591' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 7c9c0bb4-569d-483f-9ed8-86cb9add8591 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.702067346Z + restimestampmock: 2025-11-10T12:22:52.702529441Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1937 +spec: + metadata: + connID: "614" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='7c9c0bb4-569d-483f-9ed8-86cb9add8591' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.70279127Z + restimestampmock: 2025-11-10T12:22:52.703281765Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1938 +spec: + metadata: + connID: "614" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='7c9c0bb4-569d-483f-9ed8-86cb9add8591' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.703575653Z + restimestampmock: 2025-11-10T12:22:52.70401681Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1939 +spec: + metadata: + connID: "614" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777372 + reqtimestampmock: 2025-11-10T12:22:52.704217988Z + restimestampmock: 2025-11-10T12:22:52.724004062Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1940 +spec: + metadata: + connID: "616" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [193, 162, 123, 98, 235, 123, 207, 234, 155, 109, 230, 9, 47, 199, 30, 62, 166, 134, 133, 66, 170, 155, 200, 158, 10, 80, 245, 236, 91, 116, 59, 58] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 480 + auth_plugin_data: [29, 93, 64, 63, 33, 100, 78, 6, 39, 94, 56, 80, 124, 17, 62, 107, 54, 29, 18, 114, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777374 + reqtimestampmock: 2025-11-10T12:22:54.611219402Z + restimestampmock: 2025-11-10T12:22:54.620372116Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1941 +spec: + metadata: + connID: "616" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777374 + reqtimestampmock: 2025-11-10T12:22:54.620664994Z + restimestampmock: 2025-11-10T12:22:54.620919701Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1942 +spec: + metadata: + connID: "616" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777374 + reqtimestampmock: 2025-11-10T12:22:54.621133899Z + restimestampmock: 2025-11-10T12:22:54.621325538Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1943 +spec: + metadata: + connID: "616" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777374 + reqtimestampmock: 2025-11-10T12:22:54.621479906Z + restimestampmock: 2025-11-10T12:22:54.621675554Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1944 +spec: + metadata: + connID: "616" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 323 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a95e1d27-6e25-4d2e-afdf-c6756e7a6b26', 'gaurav_ddn', 'gaurav_ddn@example.in', 'scrypt:32768:8:1$1rpN04H7vWYdPvJ8$ba776fb232cce9d9cb609dc71d664ab27f8ffaa413945402cac8097089273b54105931aa8f80f1b9bb5572c1dd5aed5a046919165e5ef3550532a3017b328fd5', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777374 + reqtimestampmock: 2025-11-10T12:22:54.68086618Z + restimestampmock: 2025-11-10T12:22:54.681578984Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1945 +spec: + metadata: + connID: "616" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777374 + reqtimestampmock: 2025-11-10T12:22:54.681832851Z + restimestampmock: 2025-11-10T12:22:54.694086539Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1946 +spec: + metadata: + connID: "618" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [240, 44, 222, 101, 7, 237, 120, 108, 183, 172, 160, 251, 5, 214, 183, 181, 200, 223, 2, 138, 115, 227, 58, 107, 93, 77, 191, 111, 176, 12, 234, 147] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 482 + auth_plugin_data: [52, 86, 6, 15, 45, 105, 54, 46, 7, 66, 88, 108, 14, 61, 11, 127, 110, 125, 5, 70, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777375 + reqtimestampmock: 2025-11-10T12:22:55.444183707Z + restimestampmock: 2025-11-10T12:22:55.451978603Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1947 +spec: + metadata: + connID: "618" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777375 + reqtimestampmock: 2025-11-10T12:22:55.45226901Z + restimestampmock: 2025-11-10T12:22:55.452482178Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1948 +spec: + metadata: + connID: "618" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777375 + reqtimestampmock: 2025-11-10T12:22:55.452634558Z + restimestampmock: 2025-11-10T12:22:55.452798385Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1949 +spec: + metadata: + connID: "618" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777375 + reqtimestampmock: 2025-11-10T12:22:55.452950884Z + restimestampmock: 2025-11-10T12:22:55.453057283Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1950 +spec: + metadata: + connID: "618" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 83 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='gaurav_ddn' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 233 + sequence_id: 6 + values: + - type: 253 + name: id + value: a95e1d27-6e25-4d2e-afdf-c6756e7a6b26 + unsigned: false + - type: 253 + name: username + value: gaurav_ddn + unsigned: false + - type: 253 + name: email + value: gaurav_ddn@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$1rpN04H7vWYdPvJ8$ba776fb232cce9d9cb609dc71d664ab27f8ffaa413945402cac8097089273b54105931aa8f80f1b9bb5572c1dd5aed5a046919165e5ef3550532a3017b328fd5 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777375 + reqtimestampmock: 2025-11-10T12:22:55.453282442Z + restimestampmock: 2025-11-10T12:22:55.453746898Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1951 +spec: + metadata: + connID: "620" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [52, 83, 7, 157, 242, 52, 221, 34, 53, 233, 116, 36, 78, 27, 186, 49, 52, 81, 58, 246, 83, 160, 238, 10, 179, 123, 69, 238, 43, 196, 179, 178] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 483 + auth_plugin_data: [10, 24, 31, 18, 115, 63, 80, 1, 84, 40, 108, 12, 1, 92, 7, 32, 58, 9, 97, 46, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.356073523Z + restimestampmock: 2025-11-10T12:22:56.363573141Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1952 +spec: + metadata: + connID: "620" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.363780059Z + restimestampmock: 2025-11-10T12:22:56.363971058Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1953 +spec: + metadata: + connID: "620" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.364092326Z + restimestampmock: 2025-11-10T12:22:56.364256015Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1954 +spec: + metadata: + connID: "620" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.364358734Z + restimestampmock: 2025-11-10T12:22:56.364454023Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1955 +spec: + metadata: + connID: "620" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a95e1d27-6e25-4d2e-afdf-c6756e7a6b26' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a95e1d27-6e25-4d2e-afdf-c6756e7a6b26 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.364614072Z + restimestampmock: 2025-11-10T12:22:56.365181437Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1956 +spec: + metadata: + connID: "620" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 269 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('8bd5d485-3e66-43e1-9d78-35736f37b0c4','a95e1d27-6e25-4d2e-afdf-c6756e7a6b26','Rajpur Road',NULL,'Dehradun','Uttarakhand','248001','IN','+919412012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.365525115Z + restimestampmock: 2025-11-10T12:22:56.36603281Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1957 +spec: + metadata: + connID: "620" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='a95e1d27-6e25-4d2e-afdf-c6756e7a6b26' AND id<>'8bd5d485-3e66-43e1-9d78-35736f37b0c4' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.366197528Z + restimestampmock: 2025-11-10T12:22:56.366621945Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1958 +spec: + metadata: + connID: "620" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777376 + reqtimestampmock: 2025-11-10T12:22:56.366765334Z + restimestampmock: 2025-11-10T12:22:56.37784431Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1959 +spec: + metadata: + connID: "622" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [64, 204, 2, 61, 2, 43, 11, 144, 120, 72, 127, 159, 215, 167, 94, 61, 188, 85, 85, 75, 160, 230, 1, 77, 140, 13, 180, 76, 67, 196, 251, 116] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 484 + auth_plugin_data: [10, 3, 7, 41, 102, 39, 20, 102, 92, 43, 5, 20, 1, 28, 20, 118, 113, 68, 48, 5, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.116705263Z + restimestampmock: 2025-11-10T12:22:57.129257278Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1960 +spec: + metadata: + connID: "622" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.129541616Z + restimestampmock: 2025-11-10T12:22:57.129752384Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1961 +spec: + metadata: + connID: "622" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.129910022Z + restimestampmock: 2025-11-10T12:22:57.13021014Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1962 +spec: + metadata: + connID: "622" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.130420068Z + restimestampmock: 2025-11-10T12:22:57.130515347Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1963 +spec: + metadata: + connID: "622" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a95e1d27-6e25-4d2e-afdf-c6756e7a6b26' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a95e1d27-6e25-4d2e-afdf-c6756e7a6b26 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.130760185Z + restimestampmock: 2025-11-10T12:22:57.131207372Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1964 +spec: + metadata: + connID: "622" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a95e1d27-6e25-4d2e-afdf-c6756e7a6b26' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.13141568Z + restimestampmock: 2025-11-10T12:22:57.131850207Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1965 +spec: + metadata: + connID: "622" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a95e1d27-6e25-4d2e-afdf-c6756e7a6b26' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.131999785Z + restimestampmock: 2025-11-10T12:22:57.132356362Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1966 +spec: + metadata: + connID: "622" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777377 + reqtimestampmock: 2025-11-10T12:22:57.132444172Z + restimestampmock: 2025-11-10T12:22:57.145209165Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1967 +spec: + metadata: + connID: "624" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [91, 192, 77, 102, 33, 81, 130, 42, 89, 158, 215, 97, 106, 176, 161, 113, 60, 127, 41, 65, 182, 202, 69, 90, 161, 213, 21, 237, 67, 142, 72, 120] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 485 + auth_plugin_data: [92, 8, 93, 100, 10, 70, 126, 39, 1, 47, 112, 16, 66, 82, 64, 70, 28, 9, 39, 119, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.032486427Z + restimestampmock: 2025-11-10T12:22:59.039634367Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1968 +spec: + metadata: + connID: "624" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.039869984Z + restimestampmock: 2025-11-10T12:22:59.040091143Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1969 +spec: + metadata: + connID: "624" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.040271071Z + restimestampmock: 2025-11-10T12:22:59.04042716Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1970 +spec: + metadata: + connID: "624" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.040550489Z + restimestampmock: 2025-11-10T12:22:59.040670638Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1971 +spec: + metadata: + connID: "624" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 331 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('0b152bc2-443c-424f-a1eb-5e872f244af0', 'chaitra_mysuru', 'chaitra_mysuru@example.in', 'scrypt:32768:8:1$srU8EmOVOi44ohtZ$c639032438f779feac2eb79b6a32e1dd85de04245d7b219d0589da3c47c46eac5706fbe0f57d7e4b06c599663f0f2de056bf2129f302ba3b6048263b860836ad', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.098119387Z + restimestampmock: 2025-11-10T12:22:59.098715713Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1972 +spec: + metadata: + connID: "624" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.098908751Z + restimestampmock: 2025-11-10T12:22:59.108950567Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1973 +spec: + metadata: + connID: "626" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [106, 175, 7, 247, 113, 144, 179, 146, 172, 243, 61, 125, 123, 74, 24, 9, 119, 249, 148, 97, 85, 233, 52, 253, 121, 255, 214, 220, 238, 150, 200, 138] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 486 + auth_plugin_data: [37, 97, 26, 34, 64, 59, 40, 18, 54, 58, 77, 9, 108, 73, 119, 98, 91, 64, 49, 46, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.808011533Z + restimestampmock: 2025-11-10T12:22:59.814504009Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1974 +spec: + metadata: + connID: "626" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.814704176Z + restimestampmock: 2025-11-10T12:22:59.814902185Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1975 +spec: + metadata: + connID: "626" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.815031435Z + restimestampmock: 2025-11-10T12:22:59.815231812Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1976 +spec: + metadata: + connID: "626" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.815367762Z + restimestampmock: 2025-11-10T12:22:59.81550694Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1977 +spec: + metadata: + connID: "626" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 87 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='chaitra_mysuru' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 241 + sequence_id: 6 + values: + - type: 253 + name: id + value: 0b152bc2-443c-424f-a1eb-5e872f244af0 + unsigned: false + - type: 253 + name: username + value: chaitra_mysuru + unsigned: false + - type: 253 + name: email + value: chaitra_mysuru@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$srU8EmOVOi44ohtZ$c639032438f779feac2eb79b6a32e1dd85de04245d7b219d0589da3c47c46eac5706fbe0f57d7e4b06c599663f0f2de056bf2129f302ba3b6048263b860836ad + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777379 + reqtimestampmock: 2025-11-10T12:22:59.81567888Z + restimestampmock: 2025-11-10T12:22:59.816193255Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1978 +spec: + metadata: + connID: "628" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [179, 79, 144, 25, 221, 78, 185, 113, 51, 65, 20, 229, 184, 68, 192, 217, 232, 171, 3, 163, 34, 213, 102, 47, 36, 157, 203, 180, 90, 108, 159, 171] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 488 + auth_plugin_data: [97, 76, 106, 6, 114, 93, 15, 124, 111, 47, 85, 9, 51, 57, 112, 120, 75, 122, 1, 117, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.569883574Z + restimestampmock: 2025-11-10T12:23:00.577577799Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1979 +spec: + metadata: + connID: "628" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.577900236Z + restimestampmock: 2025-11-10T12:23:00.578090525Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1980 +spec: + metadata: + connID: "628" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.578261054Z + restimestampmock: 2025-11-10T12:23:00.578419042Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1981 +spec: + metadata: + connID: "628" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.578545111Z + restimestampmock: 2025-11-10T12:23:00.578851569Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1982 +spec: + metadata: + connID: "628" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='0b152bc2-443c-424f-a1eb-5e872f244af0' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 0b152bc2-443c-424f-a1eb-5e872f244af0 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.579100197Z + restimestampmock: 2025-11-10T12:23:00.579487434Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1983 +spec: + metadata: + connID: "628" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 266 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('f8737d26-8010-4838-9d0d-faee0c60c74f','0b152bc2-443c-424f-a1eb-5e872f244af0','Kuvempunagar',NULL,'Mysuru','Karnataka','570023','IN','+919845012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.57995088Z + restimestampmock: 2025-11-10T12:23:00.580307616Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1984 +spec: + metadata: + connID: "628" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='0b152bc2-443c-424f-a1eb-5e872f244af0' AND id<>'f8737d26-8010-4838-9d0d-faee0c60c74f' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.580555694Z + restimestampmock: 2025-11-10T12:23:00.580876883Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1985 +spec: + metadata: + connID: "628" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777380 + reqtimestampmock: 2025-11-10T12:23:00.580979021Z + restimestampmock: 2025-11-10T12:23:00.5929524Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1986 +spec: + metadata: + connID: "630" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [192, 85, 215, 188, 169, 49, 99, 253, 197, 130, 229, 181, 223, 73, 53, 121, 23, 238, 30, 254, 3, 59, 32, 104, 110, 32, 245, 92, 127, 250, 225, 199] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 489 + auth_plugin_data: [100, 26, 29, 79, 112, 127, 1, 48, 61, 56, 69, 4, 33, 51, 54, 80, 51, 45, 56, 70, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.307946314Z + restimestampmock: 2025-11-10T12:23:01.316478933Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1987 +spec: + metadata: + connID: "630" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.316671611Z + restimestampmock: 2025-11-10T12:23:01.316902938Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1988 +spec: + metadata: + connID: "630" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.317021708Z + restimestampmock: 2025-11-10T12:23:01.317206576Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1989 +spec: + metadata: + connID: "630" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.317367476Z + restimestampmock: 2025-11-10T12:23:01.317471654Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1990 +spec: + metadata: + connID: "630" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='0b152bc2-443c-424f-a1eb-5e872f244af0' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 0b152bc2-443c-424f-a1eb-5e872f244af0 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.317691153Z + restimestampmock: 2025-11-10T12:23:01.31804608Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1991 +spec: + metadata: + connID: "630" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='0b152bc2-443c-424f-a1eb-5e872f244af0' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.318309847Z + restimestampmock: 2025-11-10T12:23:01.318690884Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1992 +spec: + metadata: + connID: "630" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='0b152bc2-443c-424f-a1eb-5e872f244af0' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.318901993Z + restimestampmock: 2025-11-10T12:23:01.31921354Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1993 +spec: + metadata: + connID: "630" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777381 + reqtimestampmock: 2025-11-10T12:23:01.319337219Z + restimestampmock: 2025-11-10T12:23:01.33596933Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1994 +spec: + metadata: + connID: "632" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [61, 87, 255, 96, 161, 5, 30, 252, 51, 95, 203, 45, 52, 203, 219, 225, 114, 79, 236, 53, 248, 3, 163, 160, 159, 175, 18, 40, 168, 64, 65, 129] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 490 + auth_plugin_data: [58, 49, 25, 42, 29, 8, 83, 21, 100, 127, 9, 21, 65, 106, 69, 86, 95, 118, 12, 18, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777383 + reqtimestampmock: 2025-11-10T12:23:03.30253682Z + restimestampmock: 2025-11-10T12:23:03.3158026Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1995 +spec: + metadata: + connID: "632" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777383 + reqtimestampmock: 2025-11-10T12:23:03.316041858Z + restimestampmock: 2025-11-10T12:23:03.316255966Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1996 +spec: + metadata: + connID: "632" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777383 + reqtimestampmock: 2025-11-10T12:23:03.316444194Z + restimestampmock: 2025-11-10T12:23:03.316620242Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1997 +spec: + metadata: + connID: "632" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777383 + reqtimestampmock: 2025-11-10T12:23:03.316761721Z + restimestampmock: 2025-11-10T12:23:03.316895011Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1998 +spec: + metadata: + connID: "632" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 333 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('86dd9463-20ce-4da2-b106-2cf1077bda0b', 'farooq_srinagar', 'farooq_srinagar@example.in', 'scrypt:32768:8:1$RbsGuMuCVv85xDXS$e6f4a714cceec789c9eb2af999d5be615429d53391a6e93c52d7529367ce62f09996732ff857cb95c25701da5692a8d032cf5778faff4af4820b978f50a67e5f', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777383 + reqtimestampmock: 2025-11-10T12:23:03.370229525Z + restimestampmock: 2025-11-10T12:23:03.37078974Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-1999 +spec: + metadata: + connID: "632" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777383 + reqtimestampmock: 2025-11-10T12:23:03.370959628Z + restimestampmock: 2025-11-10T12:23:03.38399949Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2000 +spec: + metadata: + connID: "634" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [137, 17, 37, 197, 176, 163, 65, 75, 35, 153, 18, 206, 116, 90, 64, 163, 58, 96, 200, 136, 110, 250, 46, 154, 2, 165, 111, 20, 209, 58, 121, 14] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 491 + auth_plugin_data: [68, 87, 67, 11, 66, 55, 92, 85, 86, 10, 7, 83, 94, 54, 103, 31, 82, 11, 42, 43, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777384 + reqtimestampmock: 2025-11-10T12:23:04.263342039Z + restimestampmock: 2025-11-10T12:23:04.271827288Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2001 +spec: + metadata: + connID: "634" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777384 + reqtimestampmock: 2025-11-10T12:23:04.272074936Z + restimestampmock: 2025-11-10T12:23:04.272296615Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2002 +spec: + metadata: + connID: "634" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777384 + reqtimestampmock: 2025-11-10T12:23:04.272502903Z + restimestampmock: 2025-11-10T12:23:04.272683141Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2003 +spec: + metadata: + connID: "634" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777384 + reqtimestampmock: 2025-11-10T12:23:04.27281878Z + restimestampmock: 2025-11-10T12:23:04.272938438Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2004 +spec: + metadata: + connID: "634" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 88 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='farooq_srinagar' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 243 + sequence_id: 6 + values: + - type: 253 + name: id + value: 86dd9463-20ce-4da2-b106-2cf1077bda0b + unsigned: false + - type: 253 + name: username + value: farooq_srinagar + unsigned: false + - type: 253 + name: email + value: farooq_srinagar@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$RbsGuMuCVv85xDXS$e6f4a714cceec789c9eb2af999d5be615429d53391a6e93c52d7529367ce62f09996732ff857cb95c25701da5692a8d032cf5778faff4af4820b978f50a67e5f + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777384 + reqtimestampmock: 2025-11-10T12:23:04.273281986Z + restimestampmock: 2025-11-10T12:23:04.273839841Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2005 +spec: + metadata: + connID: "636" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [231, 49, 131, 75, 212, 25, 178, 104, 160, 209, 114, 180, 75, 91, 148, 155, 242, 179, 49, 156, 39, 109, 197, 255, 84, 201, 161, 97, 20, 42, 53, 129] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 492 + auth_plugin_data: [93, 29, 89, 10, 124, 60, 69, 32, 84, 20, 35, 2, 69, 98, 8, 41, 11, 127, 99, 29, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.016335974Z + restimestampmock: 2025-11-10T12:23:05.0252073Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2006 +spec: + metadata: + connID: "636" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.025422239Z + restimestampmock: 2025-11-10T12:23:05.025608437Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2007 +spec: + metadata: + connID: "636" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.025747886Z + restimestampmock: 2025-11-10T12:23:05.025897575Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2008 +spec: + metadata: + connID: "636" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.026015194Z + restimestampmock: 2025-11-10T12:23:05.026105283Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2009 +spec: + metadata: + connID: "636" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='86dd9463-20ce-4da2-b106-2cf1077bda0b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 86dd9463-20ce-4da2-b106-2cf1077bda0b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.026296572Z + restimestampmock: 2025-11-10T12:23:05.026679619Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2010 +spec: + metadata: + connID: "636" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 273 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('8ca3d49c-0888-4b28-9987-d25e74f145e6','86dd9463-20ce-4da2-b106-2cf1077bda0b','Lal Chowk',NULL,'Srinagar','Jammu and Kashmir','190001','IN','+919419012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.026922667Z + restimestampmock: 2025-11-10T12:23:05.027236883Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2011 +spec: + metadata: + connID: "636" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='86dd9463-20ce-4da2-b106-2cf1077bda0b' AND id<>'8ca3d49c-0888-4b28-9987-d25e74f145e6' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.027476301Z + restimestampmock: 2025-11-10T12:23:05.027767059Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2012 +spec: + metadata: + connID: "636" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.027888258Z + restimestampmock: 2025-11-10T12:23:05.04077716Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2013 +spec: + metadata: + connID: "638" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [2, 217, 78, 127, 103, 116, 155, 171, 16, 87, 214, 145, 184, 153, 164, 131, 244, 18, 237, 253, 0, 226, 93, 183, 86, 4, 244, 189, 0, 21, 63, 106] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 494 + auth_plugin_data: [42, 72, 55, 74, 93, 27, 76, 9, 27, 72, 24, 115, 37, 5, 46, 31, 81, 52, 27, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.816543896Z + restimestampmock: 2025-11-10T12:23:05.823439909Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2014 +spec: + metadata: + connID: "638" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.823660737Z + restimestampmock: 2025-11-10T12:23:05.823895395Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2015 +spec: + metadata: + connID: "638" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.824094653Z + restimestampmock: 2025-11-10T12:23:05.824268082Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2016 +spec: + metadata: + connID: "638" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.824450291Z + restimestampmock: 2025-11-10T12:23:05.824566429Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2017 +spec: + metadata: + connID: "638" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='86dd9463-20ce-4da2-b106-2cf1077bda0b' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 86dd9463-20ce-4da2-b106-2cf1077bda0b + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.824803957Z + restimestampmock: 2025-11-10T12:23:05.825227793Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2018 +spec: + metadata: + connID: "638" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='86dd9463-20ce-4da2-b106-2cf1077bda0b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.825382002Z + restimestampmock: 2025-11-10T12:23:05.825726379Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2019 +spec: + metadata: + connID: "638" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='86dd9463-20ce-4da2-b106-2cf1077bda0b' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.825939198Z + restimestampmock: 2025-11-10T12:23:05.826211836Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2020 +spec: + metadata: + connID: "638" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777385 + reqtimestampmock: 2025-11-10T12:23:05.826289775Z + restimestampmock: 2025-11-10T12:23:05.839069668Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2021 +spec: + metadata: + connID: "640" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [27, 175, 34, 120, 193, 123, 208, 42, 175, 69, 199, 25, 242, 195, 246, 166, 27, 233, 189, 184, 102, 99, 9, 48, 108, 97, 234, 83, 243, 237, 18, 221] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 495 + auth_plugin_data: [69, 48, 54, 90, 69, 8, 58, 1, 75, 101, 41, 19, 124, 88, 97, 14, 9, 67, 51, 63, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777387 + reqtimestampmock: 2025-11-10T12:23:07.774633631Z + restimestampmock: 2025-11-10T12:23:07.782263016Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2022 +spec: + metadata: + connID: "640" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777387 + reqtimestampmock: 2025-11-10T12:23:07.782473005Z + restimestampmock: 2025-11-10T12:23:07.782715852Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2023 +spec: + metadata: + connID: "640" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777387 + reqtimestampmock: 2025-11-10T12:23:07.782830802Z + restimestampmock: 2025-11-10T12:23:07.78299163Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2024 +spec: + metadata: + connID: "640" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777387 + reqtimestampmock: 2025-11-10T12:23:07.783099309Z + restimestampmock: 2025-11-10T12:23:07.783193839Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2025 +spec: + metadata: + connID: "640" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 327 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('2d5b0ab1-6b3a-4b31-a0c1-78d853542c98', 'ankit_shimla', 'ankit_shimla@example.in', 'scrypt:32768:8:1$hq3RS4sq4EyArcdu$722faa2907224897e3fb22cdd8a675b18a749bbd762bd60d6ddddad84fad04c617b599d8768111c13f697b777a17ac12e557236b578d71b06189ace37998b93a', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777387 + reqtimestampmock: 2025-11-10T12:23:07.839872045Z + restimestampmock: 2025-11-10T12:23:07.840386751Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2026 +spec: + metadata: + connID: "640" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777387 + reqtimestampmock: 2025-11-10T12:23:07.840533529Z + restimestampmock: 2025-11-10T12:23:07.852806106Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2027 +spec: + metadata: + connID: "642" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [157, 76, 0, 141, 9, 252, 172, 228, 188, 98, 164, 118, 216, 114, 110, 140, 248, 251, 188, 66, 105, 205, 200, 137, 127, 54, 225, 170, 152, 125, 7, 4] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 496 + auth_plugin_data: [12, 100, 13, 89, 17, 5, 120, 42, 116, 86, 125, 25, 121, 80, 72, 125, 98, 62, 46, 68, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777388 + reqtimestampmock: 2025-11-10T12:23:08.643459729Z + restimestampmock: 2025-11-10T12:23:08.65159474Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2028 +spec: + metadata: + connID: "642" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777388 + reqtimestampmock: 2025-11-10T12:23:08.651847048Z + restimestampmock: 2025-11-10T12:23:08.652071807Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2029 +spec: + metadata: + connID: "642" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777388 + reqtimestampmock: 2025-11-10T12:23:08.652228925Z + restimestampmock: 2025-11-10T12:23:08.652368654Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2030 +spec: + metadata: + connID: "642" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777388 + reqtimestampmock: 2025-11-10T12:23:08.652574622Z + restimestampmock: 2025-11-10T12:23:08.652670141Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2031 +spec: + metadata: + connID: "642" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 85 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='ankit_shimla' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 237 + sequence_id: 6 + values: + - type: 253 + name: id + value: 2d5b0ab1-6b3a-4b31-a0c1-78d853542c98 + unsigned: false + - type: 253 + name: username + value: ankit_shimla + unsigned: false + - type: 253 + name: email + value: ankit_shimla@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$hq3RS4sq4EyArcdu$722faa2907224897e3fb22cdd8a675b18a749bbd762bd60d6ddddad84fad04c617b599d8768111c13f697b777a17ac12e557236b578d71b06189ace37998b93a + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777388 + reqtimestampmock: 2025-11-10T12:23:08.652991578Z + restimestampmock: 2025-11-10T12:23:08.653573294Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2032 +spec: + metadata: + connID: "644" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [148, 0, 254, 93, 105, 201, 105, 42, 203, 6, 60, 99, 240, 72, 155, 98, 187, 103, 101, 100, 111, 101, 113, 160, 151, 42, 230, 162, 107, 87, 138, 223] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 497 + auth_plugin_data: [94, 2, 88, 58, 83, 60, 19, 107, 74, 1, 125, 22, 80, 83, 93, 69, 18, 53, 4, 54, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.470604035Z + restimestampmock: 2025-11-10T12:23:09.47722602Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2033 +spec: + metadata: + connID: "644" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.477413778Z + restimestampmock: 2025-11-10T12:23:09.477595606Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2034 +spec: + metadata: + connID: "644" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.477777484Z + restimestampmock: 2025-11-10T12:23:09.477991254Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2035 +spec: + metadata: + connID: "644" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.478216792Z + restimestampmock: 2025-11-10T12:23:09.478275961Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2036 +spec: + metadata: + connID: "644" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='2d5b0ab1-6b3a-4b31-a0c1-78d853542c98' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 2d5b0ab1-6b3a-4b31-a0c1-78d853542c98 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.47849058Z + restimestampmock: 2025-11-10T12:23:09.478859016Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2037 +spec: + metadata: + connID: "644" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 274 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('60846d3f-1c66-44e2-bd08-d0cc0b390e18','2d5b0ab1-6b3a-4b31-a0c1-78d853542c98','The Mall Road',NULL,'Shimla','Himachal Pradesh','171001','IN','+919418012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.479084934Z + restimestampmock: 2025-11-10T12:23:09.479436401Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2038 +spec: + metadata: + connID: "644" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='2d5b0ab1-6b3a-4b31-a0c1-78d853542c98' AND id<>'60846d3f-1c66-44e2-bd08-d0cc0b390e18' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.47960958Z + restimestampmock: 2025-11-10T12:23:09.479911318Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2039 +spec: + metadata: + connID: "644" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777389 + reqtimestampmock: 2025-11-10T12:23:09.480029066Z + restimestampmock: 2025-11-10T12:23:09.491799148Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2040 +spec: + metadata: + connID: "646" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [46, 174, 105, 101, 91, 67, 98, 249, 81, 43, 157, 147, 85, 227, 231, 8, 167, 253, 19, 21, 2, 242, 23, 41, 148, 81, 76, 19, 46, 254, 178, 45] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 498 + auth_plugin_data: [67, 44, 127, 63, 15, 3, 120, 29, 67, 62, 1, 55, 44, 18, 22, 31, 31, 45, 59, 18, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.236957589Z + restimestampmock: 2025-11-10T12:23:10.246584579Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2041 +spec: + metadata: + connID: "646" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.246844387Z + restimestampmock: 2025-11-10T12:23:10.247035556Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2042 +spec: + metadata: + connID: "646" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.247173525Z + restimestampmock: 2025-11-10T12:23:10.247300474Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2043 +spec: + metadata: + connID: "646" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.247410123Z + restimestampmock: 2025-11-10T12:23:10.247502122Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2044 +spec: + metadata: + connID: "646" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='2d5b0ab1-6b3a-4b31-a0c1-78d853542c98' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 2d5b0ab1-6b3a-4b31-a0c1-78d853542c98 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.247691241Z + restimestampmock: 2025-11-10T12:23:10.248057417Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2045 +spec: + metadata: + connID: "646" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='2d5b0ab1-6b3a-4b31-a0c1-78d853542c98' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.248163606Z + restimestampmock: 2025-11-10T12:23:10.248619132Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2046 +spec: + metadata: + connID: "646" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='2d5b0ab1-6b3a-4b31-a0c1-78d853542c98' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.249090139Z + restimestampmock: 2025-11-10T12:23:10.249178658Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2047 +spec: + metadata: + connID: "646" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777390 + reqtimestampmock: 2025-11-10T12:23:10.249443966Z + restimestampmock: 2025-11-10T12:23:10.265877218Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2048 +spec: + metadata: + connID: "648" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [235, 180, 87, 142, 116, 239, 142, 12, 149, 175, 116, 36, 5, 214, 227, 36, 63, 122, 138, 130, 4, 133, 3, 215, 60, 29, 130, 20, 173, 98, 127, 121] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 500 + auth_plugin_data: [11, 7, 30, 14, 48, 127, 117, 53, 24, 34, 64, 26, 89, 115, 77, 116, 73, 43, 84, 113, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.141581361Z + restimestampmock: 2025-11-10T12:23:12.149434606Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2049 +spec: + metadata: + connID: "648" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.149621734Z + restimestampmock: 2025-11-10T12:23:12.149814573Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2050 +spec: + metadata: + connID: "648" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.149920641Z + restimestampmock: 2025-11-10T12:23:12.15006216Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2051 +spec: + metadata: + connID: "648" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.15018218Z + restimestampmock: 2025-11-10T12:23:12.150299828Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2052 +spec: + metadata: + connID: "648" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('c6513285-696c-4f39-ac7a-116bfb97a272', 'shreya_raipur', 'shreya_raipur@example.in', 'scrypt:32768:8:1$jvpbiVZ3Wy8ptMLu$8ae1aa4fda0cddd64136982b5c8b6fd12790ac446dbe0915eb470ca2495a97f4ce02687d9e7021b190d09553c9938789427479ff540e26c3d5d10541848501e4', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.206122931Z + restimestampmock: 2025-11-10T12:23:12.206619328Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2053 +spec: + metadata: + connID: "648" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.206841456Z + restimestampmock: 2025-11-10T12:23:12.215723422Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2054 +spec: + metadata: + connID: "650" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [83, 74, 106, 68, 4, 217, 98, 121, 15, 217, 100, 167, 36, 3, 26, 7, 32, 251, 134, 140, 117, 223, 153, 155, 54, 123, 29, 242, 248, 127, 51, 49] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 501 + auth_plugin_data: [25, 21, 95, 117, 46, 103, 34, 50, 118, 50, 70, 26, 48, 56, 44, 78, 51, 118, 121, 26, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.903114007Z + restimestampmock: 2025-11-10T12:23:12.910793544Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2055 +spec: + metadata: + connID: "650" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.910970271Z + restimestampmock: 2025-11-10T12:23:12.911231599Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2056 +spec: + metadata: + connID: "650" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.911344928Z + restimestampmock: 2025-11-10T12:23:12.911516207Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2057 +spec: + metadata: + connID: "650" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.911611426Z + restimestampmock: 2025-11-10T12:23:12.911722135Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2058 +spec: + metadata: + connID: "650" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='shreya_raipur' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: c6513285-696c-4f39-ac7a-116bfb97a272 + unsigned: false + - type: 253 + name: username + value: shreya_raipur + unsigned: false + - type: 253 + name: email + value: shreya_raipur@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$jvpbiVZ3Wy8ptMLu$8ae1aa4fda0cddd64136982b5c8b6fd12790ac446dbe0915eb470ca2495a97f4ce02687d9e7021b190d09553c9938789427479ff540e26c3d5d10541848501e4 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777392 + reqtimestampmock: 2025-11-10T12:23:12.911889334Z + restimestampmock: 2025-11-10T12:23:12.912518609Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2059 +spec: + metadata: + connID: "652" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [33, 61, 10, 4, 219, 252, 180, 201, 53, 69, 186, 11, 160, 210, 150, 222, 240, 4, 71, 143, 3, 224, 237, 199, 57, 246, 197, 210, 18, 48, 163, 82] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 502 + auth_plugin_data: [57, 31, 50, 51, 28, 115, 126, 63, 111, 3, 123, 105, 23, 13, 46, 124, 61, 74, 44, 1, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.669644441Z + restimestampmock: 2025-11-10T12:23:13.676590713Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2060 +spec: + metadata: + connID: "652" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.676799071Z + restimestampmock: 2025-11-10T12:23:13.67696591Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2061 +spec: + metadata: + connID: "652" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.677468225Z + restimestampmock: 2025-11-10T12:23:13.677664034Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2062 +spec: + metadata: + connID: "652" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.677785912Z + restimestampmock: 2025-11-10T12:23:13.677878461Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2063 +spec: + metadata: + connID: "652" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c6513285-696c-4f39-ac7a-116bfb97a272' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c6513285-696c-4f39-ac7a-116bfb97a272 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.67802482Z + restimestampmock: 2025-11-10T12:23:13.678461888Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2064 +spec: + metadata: + connID: "652" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 268 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('8fe9dd7c-b34d-4b02-a06a-7d566401dec7','c6513285-696c-4f39-ac7a-116bfb97a272','Civil Lines',NULL,'Raipur','Chhattisgarh','492001','IN','+919425212345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.678604616Z + restimestampmock: 2025-11-10T12:23:13.678879333Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2065 +spec: + metadata: + connID: "652" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='c6513285-696c-4f39-ac7a-116bfb97a272' AND id<>'8fe9dd7c-b34d-4b02-a06a-7d566401dec7' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.678978143Z + restimestampmock: 2025-11-10T12:23:13.67926922Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2066 +spec: + metadata: + connID: "652" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777393 + reqtimestampmock: 2025-11-10T12:23:13.67935777Z + restimestampmock: 2025-11-10T12:23:13.68769059Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2067 +spec: + metadata: + connID: "654" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [149, 212, 175, 137, 157, 228, 174, 92, 101, 237, 99, 229, 195, 74, 47, 152, 233, 16, 249, 160, 157, 8, 183, 213, 35, 150, 84, 58, 71, 57, 6, 255] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 503 + auth_plugin_data: [24, 65, 39, 122, 56, 10, 123, 114, 6, 66, 75, 25, 62, 60, 97, 59, 118, 41, 98, 10, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.441841828Z + restimestampmock: 2025-11-10T12:23:14.450860403Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2068 +spec: + metadata: + connID: "654" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.451096061Z + restimestampmock: 2025-11-10T12:23:14.451345429Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2069 +spec: + metadata: + connID: "654" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.451533916Z + restimestampmock: 2025-11-10T12:23:14.451718485Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2070 +spec: + metadata: + connID: "654" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.451872764Z + restimestampmock: 2025-11-10T12:23:14.451990134Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2071 +spec: + metadata: + connID: "654" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c6513285-696c-4f39-ac7a-116bfb97a272' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c6513285-696c-4f39-ac7a-116bfb97a272 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.452234791Z + restimestampmock: 2025-11-10T12:23:14.452819456Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2072 +spec: + metadata: + connID: "654" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='c6513285-696c-4f39-ac7a-116bfb97a272' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.452989045Z + restimestampmock: 2025-11-10T12:23:14.453410181Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2073 +spec: + metadata: + connID: "654" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='c6513285-696c-4f39-ac7a-116bfb97a272' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.45358333Z + restimestampmock: 2025-11-10T12:23:14.453921688Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2074 +spec: + metadata: + connID: "654" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777394 + reqtimestampmock: 2025-11-10T12:23:14.454028447Z + restimestampmock: 2025-11-10T12:23:14.470859686Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2075 +spec: + metadata: + connID: "656" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [90, 28, 139, 172, 209, 31, 92, 70, 160, 43, 231, 157, 194, 47, 103, 94, 48, 241, 45, 108, 177, 124, 180, 34, 234, 5, 107, 50, 211, 168, 104, 11] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 505 + auth_plugin_data: [64, 11, 115, 126, 64, 80, 113, 87, 121, 26, 44, 116, 95, 25, 72, 92, 115, 11, 100, 73, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777396 + reqtimestampmock: 2025-11-10T12:23:16.86007994Z + restimestampmock: 2025-11-10T12:23:16.866834612Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2076 +spec: + metadata: + connID: "656" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777396 + reqtimestampmock: 2025-11-10T12:23:16.86709649Z + restimestampmock: 2025-11-10T12:23:16.867331648Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2077 +spec: + metadata: + connID: "656" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777396 + reqtimestampmock: 2025-11-10T12:23:16.867504327Z + restimestampmock: 2025-11-10T12:23:16.867726365Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2078 +spec: + metadata: + connID: "656" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777396 + reqtimestampmock: 2025-11-10T12:23:16.867896515Z + restimestampmock: 2025-11-10T12:23:16.868006223Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2079 +spec: + metadata: + connID: "656" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 325 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('c451d32e-5cdf-4ca8-aeeb-0442518719a7', 'karthik_cbe', 'karthik_cbe@example.in', 'scrypt:32768:8:1$Rp0BSwAMCteY2d34$bbf3cda42f1076b5e139ce61fbecc204b5c8824534879de3fe00b19d1307a217b31c16714f60c482d37b49b73f249e5aac36920d8176af8311fc19d17b6e9349', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777396 + reqtimestampmock: 2025-11-10T12:23:16.925478824Z + restimestampmock: 2025-11-10T12:23:16.926048328Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2080 +spec: + metadata: + connID: "656" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777396 + reqtimestampmock: 2025-11-10T12:23:16.926250267Z + restimestampmock: 2025-11-10T12:23:16.938796092Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2081 +spec: + metadata: + connID: "658" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [247, 11, 10, 113, 49, 144, 189, 212, 110, 140, 69, 170, 221, 109, 245, 52, 7, 173, 156, 93, 74, 55, 37, 67, 177, 49, 60, 116, 37, 26, 216, 136] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 506 + auth_plugin_data: [16, 34, 102, 53, 97, 43, 78, 127, 55, 65, 47, 77, 114, 26, 21, 35, 47, 115, 44, 51, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777397 + reqtimestampmock: 2025-11-10T12:23:17.666605181Z + restimestampmock: 2025-11-10T12:23:17.673552152Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2082 +spec: + metadata: + connID: "658" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777397 + reqtimestampmock: 2025-11-10T12:23:17.673836301Z + restimestampmock: 2025-11-10T12:23:17.674189367Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2083 +spec: + metadata: + connID: "658" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777397 + reqtimestampmock: 2025-11-10T12:23:17.674362706Z + restimestampmock: 2025-11-10T12:23:17.674582094Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2084 +spec: + metadata: + connID: "658" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777397 + reqtimestampmock: 2025-11-10T12:23:17.675278509Z + restimestampmock: 2025-11-10T12:23:17.675377388Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2085 +spec: + metadata: + connID: "658" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 84 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='karthik_cbe' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 235 + sequence_id: 6 + values: + - type: 253 + name: id + value: c451d32e-5cdf-4ca8-aeeb-0442518719a7 + unsigned: false + - type: 253 + name: username + value: karthik_cbe + unsigned: false + - type: 253 + name: email + value: karthik_cbe@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$Rp0BSwAMCteY2d34$bbf3cda42f1076b5e139ce61fbecc204b5c8824534879de3fe00b19d1307a217b31c16714f60c482d37b49b73f249e5aac36920d8176af8311fc19d17b6e9349 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777397 + reqtimestampmock: 2025-11-10T12:23:17.675628526Z + restimestampmock: 2025-11-10T12:23:17.67619539Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2086 +spec: + metadata: + connID: "660" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [232, 224, 124, 95, 203, 4, 6, 242, 241, 53, 122, 121, 248, 34, 213, 54, 234, 179, 27, 202, 112, 131, 139, 111, 252, 21, 231, 90, 194, 176, 238, 255] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 507 + auth_plugin_data: [65, 7, 39, 16, 117, 14, 6, 103, 19, 71, 44, 48, 69, 21, 71, 95, 94, 50, 82, 27, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.416361686Z + restimestampmock: 2025-11-10T12:23:18.425360821Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2087 +spec: + metadata: + connID: "660" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.425658328Z + restimestampmock: 2025-11-10T12:23:18.425914625Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2088 +spec: + metadata: + connID: "660" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.426086584Z + restimestampmock: 2025-11-10T12:23:18.426332592Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2089 +spec: + metadata: + connID: "660" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.426470551Z + restimestampmock: 2025-11-10T12:23:18.42661457Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2090 +spec: + metadata: + connID: "660" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c451d32e-5cdf-4ca8-aeeb-0442518719a7' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c451d32e-5cdf-4ca8-aeeb-0442518719a7 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.426846998Z + restimestampmock: 2025-11-10T12:23:18.427289235Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2091 +spec: + metadata: + connID: "660" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 267 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('4f16c0dc-ad54-493d-9caa-7f07512f702c','c451d32e-5cdf-4ca8-aeeb-0442518719a7','RS Puram',NULL,'Coimbatore','Tamil Nadu','641002','IN','+919843012345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.427654992Z + restimestampmock: 2025-11-10T12:23:18.428050069Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2092 +spec: + metadata: + connID: "660" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='c451d32e-5cdf-4ca8-aeeb-0442518719a7' AND id<>'4f16c0dc-ad54-493d-9caa-7f07512f702c' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.428235786Z + restimestampmock: 2025-11-10T12:23:18.428584133Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2093 +spec: + metadata: + connID: "660" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777398 + reqtimestampmock: 2025-11-10T12:23:18.428768382Z + restimestampmock: 2025-11-10T12:23:18.436810334Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2094 +spec: + metadata: + connID: "662" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [7, 44, 81, 123, 231, 173, 23, 29, 142, 203, 50, 7, 25, 105, 178, 218, 210, 16, 164, 192, 148, 152, 195, 75, 204, 79, 133, 204, 181, 43, 171, 43] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 508 + auth_plugin_data: [94, 81, 33, 16, 57, 12, 29, 27, 40, 126, 114, 109, 52, 9, 81, 28, 11, 37, 18, 15, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.159545026Z + restimestampmock: 2025-11-10T12:23:19.166892665Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2095 +spec: + metadata: + connID: "662" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.167118872Z + restimestampmock: 2025-11-10T12:23:19.167346961Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2096 +spec: + metadata: + connID: "662" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.16749042Z + restimestampmock: 2025-11-10T12:23:19.167638518Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2097 +spec: + metadata: + connID: "662" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.167805597Z + restimestampmock: 2025-11-10T12:23:19.167911106Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2098 +spec: + metadata: + connID: "662" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='c451d32e-5cdf-4ca8-aeeb-0442518719a7' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: c451d32e-5cdf-4ca8-aeeb-0442518719a7 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.168188034Z + restimestampmock: 2025-11-10T12:23:19.168610491Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2099 +spec: + metadata: + connID: "662" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='c451d32e-5cdf-4ca8-aeeb-0442518719a7' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.168778378Z + restimestampmock: 2025-11-10T12:23:19.169205156Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2100 +spec: + metadata: + connID: "662" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='c451d32e-5cdf-4ca8-aeeb-0442518719a7' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.169452133Z + restimestampmock: 2025-11-10T12:23:19.169751282Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2101 +spec: + metadata: + connID: "662" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777399 + reqtimestampmock: 2025-11-10T12:23:19.16988981Z + restimestampmock: 2025-11-10T12:23:19.178742436Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2102 +spec: + metadata: + connID: "664" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [33, 135, 184, 230, 191, 40, 131, 86, 40, 240, 33, 54, 36, 237, 166, 153, 156, 142, 169, 46, 86, 33, 53, 35, 94, 140, 26, 196, 85, 139, 40, 88] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 510 + auth_plugin_data: [91, 116, 32, 91, 39, 123, 113, 124, 37, 108, 91, 28, 20, 7, 88, 91, 71, 54, 121, 125, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777401 + reqtimestampmock: 2025-11-10T12:23:21.706585725Z + restimestampmock: 2025-11-10T12:23:21.716319315Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2103 +spec: + metadata: + connID: "664" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777401 + reqtimestampmock: 2025-11-10T12:23:21.716618192Z + restimestampmock: 2025-11-10T12:23:21.716905739Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2104 +spec: + metadata: + connID: "664" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777401 + reqtimestampmock: 2025-11-10T12:23:21.717070959Z + restimestampmock: 2025-11-10T12:23:21.717306336Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2105 +spec: + metadata: + connID: "664" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777401 + reqtimestampmock: 2025-11-10T12:23:21.717453725Z + restimestampmock: 2025-11-10T12:23:21.717584124Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2106 +spec: + metadata: + connID: "664" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('7589f9d1-ff0f-4de5-8826-94e379e80c71', 'meena_madurai', 'meena_madurai@example.in', 'scrypt:32768:8:1$TRgGg5FBZwzkxcAx$05186131e0b5bacfcc5620fc1bf5a53ad414d1d2bafd5859db8c09d2c9840a3079194c3bdcfcf93cbbd29b206af1fe3e0e480714dcfda931c211bb5236fcf44c', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777401 + reqtimestampmock: 2025-11-10T12:23:21.788023335Z + restimestampmock: 2025-11-10T12:23:21.78861547Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2107 +spec: + metadata: + connID: "664" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777401 + reqtimestampmock: 2025-11-10T12:23:21.788824259Z + restimestampmock: 2025-11-10T12:23:21.798786545Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2108 +spec: + metadata: + connID: "666" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [168, 145, 232, 192, 74, 74, 176, 7, 50, 42, 113, 201, 82, 122, 65, 183, 248, 6, 75, 248, 50, 87, 166, 138, 86, 191, 117, 48, 126, 95, 213, 170] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 511 + auth_plugin_data: [121, 127, 108, 59, 117, 81, 73, 102, 2, 84, 64, 126, 94, 118, 22, 47, 30, 28, 121, 49, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777402 + reqtimestampmock: 2025-11-10T12:23:22.577225721Z + restimestampmock: 2025-11-10T12:23:22.589939625Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2109 +spec: + metadata: + connID: "666" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777402 + reqtimestampmock: 2025-11-10T12:23:22.590171583Z + restimestampmock: 2025-11-10T12:23:22.590451641Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2110 +spec: + metadata: + connID: "666" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777402 + reqtimestampmock: 2025-11-10T12:23:22.590600839Z + restimestampmock: 2025-11-10T12:23:22.590830118Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2111 +spec: + metadata: + connID: "666" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777402 + reqtimestampmock: 2025-11-10T12:23:22.591016675Z + restimestampmock: 2025-11-10T12:23:22.591182904Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2112 +spec: + metadata: + connID: "666" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='meena_madurai' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: 7589f9d1-ff0f-4de5-8826-94e379e80c71 + unsigned: false + - type: 253 + name: username + value: meena_madurai + unsigned: false + - type: 253 + name: email + value: meena_madurai@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$TRgGg5FBZwzkxcAx$05186131e0b5bacfcc5620fc1bf5a53ad414d1d2bafd5859db8c09d2c9840a3079194c3bdcfcf93cbbd29b206af1fe3e0e480714dcfda931c211bb5236fcf44c + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777402 + reqtimestampmock: 2025-11-10T12:23:22.591399253Z + restimestampmock: 2025-11-10T12:23:22.591855589Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2113 +spec: + metadata: + connID: "668" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [16, 118, 23, 34, 124, 244, 197, 110, 198, 244, 111, 175, 169, 103, 50, 65, 131, 134, 193, 77, 183, 5, 165, 105, 1, 20, 78, 36, 74, 115, 131, 183] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 512 + auth_plugin_data: [98, 37, 72, 1, 89, 47, 102, 89, 75, 106, 55, 87, 70, 92, 81, 108, 7, 41, 17, 66, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.323626715Z + restimestampmock: 2025-11-10T12:23:23.333123345Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2114 +spec: + metadata: + connID: "668" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.333414423Z + restimestampmock: 2025-11-10T12:23:23.333618351Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2115 +spec: + metadata: + connID: "668" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.33373294Z + restimestampmock: 2025-11-10T12:23:23.333884939Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2116 +spec: + metadata: + connID: "668" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.333983878Z + restimestampmock: 2025-11-10T12:23:23.334084388Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2117 +spec: + metadata: + connID: "668" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='7589f9d1-ff0f-4de5-8826-94e379e80c71' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 7589f9d1-ff0f-4de5-8826-94e379e80c71 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.334322286Z + restimestampmock: 2025-11-10T12:23:23.334687073Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2118 +spec: + metadata: + connID: "668" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 266 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('ce31628e-b33b-4dff-8662-bc96f9929894','7589f9d1-ff0f-4de5-8826-94e379e80c71','Anna Nagar',NULL,'Madurai','Tamil Nadu','625020','IN','+919842112345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.334882761Z + restimestampmock: 2025-11-10T12:23:23.335221188Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2119 +spec: + metadata: + connID: "668" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='7589f9d1-ff0f-4de5-8826-94e379e80c71' AND id<>'ce31628e-b33b-4dff-8662-bc96f9929894' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.335389026Z + restimestampmock: 2025-11-10T12:23:23.335722114Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2120 +spec: + metadata: + connID: "668" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777403 + reqtimestampmock: 2025-11-10T12:23:23.335849613Z + restimestampmock: 2025-11-10T12:23:23.344847278Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2121 +spec: + metadata: + connID: "670" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [134, 144, 105, 120, 98, 16, 136, 145, 114, 185, 191, 105, 17, 57, 206, 39, 244, 161, 10, 27, 74, 86, 114, 116, 73, 125, 84, 155, 236, 60, 155, 41] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 513 + auth_plugin_data: [33, 97, 112, 10, 101, 111, 58, 80, 65, 11, 51, 20, 49, 125, 11, 18, 8, 1, 19, 5, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.152205962Z + restimestampmock: 2025-11-10T12:23:24.159783238Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2122 +spec: + metadata: + connID: "670" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.159998007Z + restimestampmock: 2025-11-10T12:23:24.160213226Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2123 +spec: + metadata: + connID: "670" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.160354684Z + restimestampmock: 2025-11-10T12:23:24.160515883Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2124 +spec: + metadata: + connID: "670" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.160642252Z + restimestampmock: 2025-11-10T12:23:24.160757331Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2125 +spec: + metadata: + connID: "670" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='7589f9d1-ff0f-4de5-8826-94e379e80c71' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 7589f9d1-ff0f-4de5-8826-94e379e80c71 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.160943149Z + restimestampmock: 2025-11-10T12:23:24.161393246Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2126 +spec: + metadata: + connID: "670" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='7589f9d1-ff0f-4de5-8826-94e379e80c71' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.161577814Z + restimestampmock: 2025-11-10T12:23:24.16196722Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2127 +spec: + metadata: + connID: "670" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='7589f9d1-ff0f-4de5-8826-94e379e80c71' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.162117069Z + restimestampmock: 2025-11-10T12:23:24.162433727Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2128 +spec: + metadata: + connID: "670" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777404 + reqtimestampmock: 2025-11-10T12:23:24.162534996Z + restimestampmock: 2025-11-10T12:23:24.172700481Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2129 +spec: + metadata: + connID: "672" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [80, 40, 246, 91, 209, 235, 113, 60, 3, 25, 85, 216, 67, 174, 175, 159, 233, 154, 246, 87, 198, 198, 234, 122, 190, 42, 134, 227, 145, 242, 251, 173] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 515 + auth_plugin_data: [3, 30, 83, 21, 15, 116, 111, 123, 114, 94, 103, 44, 2, 71, 109, 7, 1, 55, 111, 52, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777406 + reqtimestampmock: 2025-11-10T12:23:26.591422016Z + restimestampmock: 2025-11-10T12:23:26.602318995Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2130 +spec: + metadata: + connID: "672" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777406 + reqtimestampmock: 2025-11-10T12:23:26.602659962Z + restimestampmock: 2025-11-10T12:23:26.60288946Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2131 +spec: + metadata: + connID: "672" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777406 + reqtimestampmock: 2025-11-10T12:23:26.603072749Z + restimestampmock: 2025-11-10T12:23:26.603291817Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2132 +spec: + metadata: + connID: "672" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777406 + reqtimestampmock: 2025-11-10T12:23:26.603430096Z + restimestampmock: 2025-11-10T12:23:26.603595255Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2133 +spec: + metadata: + connID: "672" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 329 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('a1276f9a-46d4-471e-8067-75cb6ea37800', 'sunil_jodhpur', 'sunil_jodhpur@example.in', 'scrypt:32768:8:1$t4Z9r11GEsE4OEqB$38f72321119cbce5f7af7b41732e1e1e2b40c02e70a4d125365e1d84472ed09915a80da2b35792a2f1443473aab6cc552693338a5282fbeaf9523541f0dceed0', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777406 + reqtimestampmock: 2025-11-10T12:23:26.66274475Z + restimestampmock: 2025-11-10T12:23:26.663386035Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2134 +spec: + metadata: + connID: "672" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777406 + reqtimestampmock: 2025-11-10T12:23:26.663528843Z + restimestampmock: 2025-11-10T12:23:26.673848787Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2135 +spec: + metadata: + connID: "674" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [244, 220, 203, 134, 78, 2, 47, 253, 162, 232, 155, 112, 246, 217, 73, 238, 73, 254, 53, 58, 182, 48, 66, 36, 86, 239, 124, 215, 115, 55, 88, 78] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 516 + auth_plugin_data: [37, 39, 2, 58, 4, 110, 35, 75, 123, 99, 127, 112, 38, 26, 88, 18, 32, 9, 124, 13, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777407 + reqtimestampmock: 2025-11-10T12:23:27.52705411Z + restimestampmock: 2025-11-10T12:23:27.540801346Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2136 +spec: + metadata: + connID: "674" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777407 + reqtimestampmock: 2025-11-10T12:23:27.541200761Z + restimestampmock: 2025-11-10T12:23:27.541495879Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2137 +spec: + metadata: + connID: "674" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777407 + reqtimestampmock: 2025-11-10T12:23:27.541683808Z + restimestampmock: 2025-11-10T12:23:27.541920966Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2138 +spec: + metadata: + connID: "674" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777407 + reqtimestampmock: 2025-11-10T12:23:27.542106474Z + restimestampmock: 2025-11-10T12:23:27.542293323Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2139 +spec: + metadata: + connID: "674" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 86 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='sunil_jodhpur' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 239 + sequence_id: 6 + values: + - type: 253 + name: id + value: a1276f9a-46d4-471e-8067-75cb6ea37800 + unsigned: false + - type: 253 + name: username + value: sunil_jodhpur + unsigned: false + - type: 253 + name: email + value: sunil_jodhpur@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$t4Z9r11GEsE4OEqB$38f72321119cbce5f7af7b41732e1e1e2b40c02e70a4d125365e1d84472ed09915a80da2b35792a2f1443473aab6cc552693338a5282fbeaf9523541f0dceed0 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777407 + reqtimestampmock: 2025-11-10T12:23:27.54256982Z + restimestampmock: 2025-11-10T12:23:27.543132465Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2140 +spec: + metadata: + connID: "676" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [189, 144, 21, 114, 154, 71, 29, 216, 195, 68, 184, 61, 221, 155, 229, 168, 119, 197, 197, 108, 58, 128, 91, 24, 96, 2, 197, 232, 206, 160, 196, 105] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 517 + auth_plugin_data: [115, 44, 81, 55, 6, 100, 94, 3, 100, 114, 127, 10, 115, 85, 88, 51, 48, 16, 72, 75, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.35533791Z + restimestampmock: 2025-11-10T12:23:28.365797163Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2141 +spec: + metadata: + connID: "676" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.366132081Z + restimestampmock: 2025-11-10T12:23:28.366459657Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2142 +spec: + metadata: + connID: "676" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.366631456Z + restimestampmock: 2025-11-10T12:23:28.366892654Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2143 +spec: + metadata: + connID: "676" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.367041862Z + restimestampmock: 2025-11-10T12:23:28.367201511Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2144 +spec: + metadata: + connID: "676" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a1276f9a-46d4-471e-8067-75cb6ea37800' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a1276f9a-46d4-471e-8067-75cb6ea37800 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.367454889Z + restimestampmock: 2025-11-10T12:23:28.367959895Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2145 +spec: + metadata: + connID: "676" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 265 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('57e896c2-18ea-4aa2-9703-f064429a1b72','a1276f9a-46d4-471e-8067-75cb6ea37800','Sardarpura',NULL,'Jodhpur','Rajasthan','342003','IN','+919829112345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.368217863Z + restimestampmock: 2025-11-10T12:23:28.36866326Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2146 +spec: + metadata: + connID: "676" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='a1276f9a-46d4-471e-8067-75cb6ea37800' AND id<>'57e896c2-18ea-4aa2-9703-f064429a1b72' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.368988836Z + restimestampmock: 2025-11-10T12:23:28.369399843Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2147 +spec: + metadata: + connID: "676" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777408 + reqtimestampmock: 2025-11-10T12:23:28.369571792Z + restimestampmock: 2025-11-10T12:23:28.386862347Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2148 +spec: + metadata: + connID: "678" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [150, 134, 34, 182, 34, 4, 240, 17, 206, 133, 3, 48, 74, 158, 72, 197, 7, 210, 130, 195, 143, 77, 123, 60, 98, 58, 95, 123, 191, 109, 225, 231] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 518 + auth_plugin_data: [126, 63, 80, 10, 115, 75, 110, 5, 53, 83, 29, 120, 32, 19, 53, 111, 59, 78, 127, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.130682644Z + restimestampmock: 2025-11-10T12:23:29.138015142Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2149 +spec: + metadata: + connID: "678" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.138346469Z + restimestampmock: 2025-11-10T12:23:29.138583527Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2150 +spec: + metadata: + connID: "678" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.138698726Z + restimestampmock: 2025-11-10T12:23:29.138896055Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2151 +spec: + metadata: + connID: "678" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.139024494Z + restimestampmock: 2025-11-10T12:23:29.139374141Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2152 +spec: + metadata: + connID: "678" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='a1276f9a-46d4-471e-8067-75cb6ea37800' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: a1276f9a-46d4-471e-8067-75cb6ea37800 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.13955681Z + restimestampmock: 2025-11-10T12:23:29.139972536Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2153 +spec: + metadata: + connID: "678" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='a1276f9a-46d4-471e-8067-75cb6ea37800' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.140247984Z + restimestampmock: 2025-11-10T12:23:29.140576062Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2154 +spec: + metadata: + connID: "678" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='a1276f9a-46d4-471e-8067-75cb6ea37800' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.140768559Z + restimestampmock: 2025-11-10T12:23:29.141227755Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2155 +spec: + metadata: + connID: "678" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777409 + reqtimestampmock: 2025-11-10T12:23:29.141386834Z + restimestampmock: 2025-11-10T12:23:29.151759407Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2156 +spec: + metadata: + connID: "680" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [118, 175, 242, 49, 100, 67, 124, 55, 255, 33, 30, 106, 14, 109, 89, 119, 233, 160, 52, 214, 11, 101, 7, 161, 128, 247, 218, 245, 64, 54, 42, 71] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 520 + auth_plugin_data: [84, 113, 112, 28, 34, 19, 44, 15, 42, 96, 123, 21, 99, 77, 34, 117, 86, 93, 25, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777411 + reqtimestampmock: 2025-11-10T12:23:31.273098127Z + restimestampmock: 2025-11-10T12:23:31.283662999Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2157 +spec: + metadata: + connID: "680" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777411 + reqtimestampmock: 2025-11-10T12:23:31.283963246Z + restimestampmock: 2025-11-10T12:23:31.284240074Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2158 +spec: + metadata: + connID: "680" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777411 + reqtimestampmock: 2025-11-10T12:23:31.284380183Z + restimestampmock: 2025-11-10T12:23:31.284650091Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2159 +spec: + metadata: + connID: "680" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777411 + reqtimestampmock: 2025-11-10T12:23:31.28479519Z + restimestampmock: 2025-11-10T12:23:31.284935539Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2160 +spec: + metadata: + connID: "680" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 319 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('96b38460-486f-42f1-8251-da28d33c8749', 'vani_vja', 'vani_vja@example.in', 'scrypt:32768:8:1$iOiHb9d9qO9bsXCo$e34f375562674f95891233fb375bae82502a803ab8daf0638e2405bb445c81dfae437b2ce0aef1daf36b07b71a47a3a13ea6a96c887faafb2a7a19c80bf5801e', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777411 + reqtimestampmock: 2025-11-10T12:23:31.355092892Z + restimestampmock: 2025-11-10T12:23:31.355770787Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2161 +spec: + metadata: + connID: "680" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777411 + reqtimestampmock: 2025-11-10T12:23:31.355972555Z + restimestampmock: 2025-11-10T12:23:31.368792878Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2162 +spec: + metadata: + connID: "682" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [115, 40, 226, 210, 34, 7, 70, 128, 155, 168, 129, 98, 112, 195, 155, 43, 3, 252, 50, 31, 120, 116, 208, 217, 78, 146, 183, 182, 167, 136, 130, 206] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 521 + auth_plugin_data: [94, 30, 125, 64, 37, 119, 13, 122, 46, 91, 14, 102, 54, 15, 46, 8, 74, 46, 103, 74, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.133790906Z + restimestampmock: 2025-11-10T12:23:32.14059598Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2163 +spec: + metadata: + connID: "682" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.140866079Z + restimestampmock: 2025-11-10T12:23:32.141143145Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2164 +spec: + metadata: + connID: "682" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.141269304Z + restimestampmock: 2025-11-10T12:23:32.141459603Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2165 +spec: + metadata: + connID: "682" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.141589672Z + restimestampmock: 2025-11-10T12:23:32.14177002Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2166 +spec: + metadata: + connID: "682" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 81 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='vani_vja' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 229 + sequence_id: 6 + values: + - type: 253 + name: id + value: 96b38460-486f-42f1-8251-da28d33c8749 + unsigned: false + - type: 253 + name: username + value: vani_vja + unsigned: false + - type: 253 + name: email + value: vani_vja@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$iOiHb9d9qO9bsXCo$e34f375562674f95891233fb375bae82502a803ab8daf0638e2405bb445c81dfae437b2ce0aef1daf36b07b71a47a3a13ea6a96c887faafb2a7a19c80bf5801e + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.142012098Z + restimestampmock: 2025-11-10T12:23:32.142603713Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2167 +spec: + metadata: + connID: "684" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [168, 110, 169, 111, 207, 10, 216, 0, 79, 26, 26, 207, 157, 74, 96, 160, 209, 64, 26, 21, 92, 203, 142, 179, 30, 252, 133, 15, 143, 212, 176, 177] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 522 + auth_plugin_data: [59, 33, 56, 111, 8, 88, 85, 126, 7, 20, 21, 4, 8, 107, 19, 19, 58, 37, 35, 10, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.90323198Z + restimestampmock: 2025-11-10T12:23:32.916563749Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2168 +spec: + metadata: + connID: "684" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.916848926Z + restimestampmock: 2025-11-10T12:23:32.917115623Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2169 +spec: + metadata: + connID: "684" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.917354222Z + restimestampmock: 2025-11-10T12:23:32.91756149Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2170 +spec: + metadata: + connID: "684" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.917696919Z + restimestampmock: 2025-11-10T12:23:32.917817648Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2171 +spec: + metadata: + connID: "684" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='96b38460-486f-42f1-8251-da28d33c8749' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 96b38460-486f-42f1-8251-da28d33c8749 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.918057336Z + restimestampmock: 2025-11-10T12:23:32.918428952Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2172 +spec: + metadata: + connID: "684" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 274 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('22677a17-3088-4ec3-ad4c-cb8dec1d6cf0','96b38460-486f-42f1-8251-da28d33c8749','Benz Circle',NULL,'Vijayawada','Andhra Pradesh','520010','IN','+919848112345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.91872452Z + restimestampmock: 2025-11-10T12:23:32.919140596Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2173 +spec: + metadata: + connID: "684" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='96b38460-486f-42f1-8251-da28d33c8749' AND id<>'22677a17-3088-4ec3-ad4c-cb8dec1d6cf0' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.919383395Z + restimestampmock: 2025-11-10T12:23:32.919748002Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2174 +spec: + metadata: + connID: "684" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777412 + reqtimestampmock: 2025-11-10T12:23:32.919890101Z + restimestampmock: 2025-11-10T12:23:32.92944363Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2175 +spec: + metadata: + connID: "686" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [207, 151, 27, 121, 88, 111, 65, 79, 229, 179, 230, 178, 38, 138, 107, 84, 47, 17, 201, 1, 181, 91, 246, 98, 11, 66, 187, 44, 29, 194, 219, 120] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 523 + auth_plugin_data: [70, 108, 96, 89, 22, 114, 23, 54, 117, 74, 100, 103, 48, 127, 125, 28, 13, 101, 11, 51, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.81913482Z + restimestampmock: 2025-11-10T12:23:33.827036903Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2176 +spec: + metadata: + connID: "686" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.827298331Z + restimestampmock: 2025-11-10T12:23:33.82750682Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2177 +spec: + metadata: + connID: "686" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.827672858Z + restimestampmock: 2025-11-10T12:23:33.827854956Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2178 +spec: + metadata: + connID: "686" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.827993765Z + restimestampmock: 2025-11-10T12:23:33.828096185Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2179 +spec: + metadata: + connID: "686" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='96b38460-486f-42f1-8251-da28d33c8749' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 96b38460-486f-42f1-8251-da28d33c8749 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.828318712Z + restimestampmock: 2025-11-10T12:23:33.828749659Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2180 +spec: + metadata: + connID: "686" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='96b38460-486f-42f1-8251-da28d33c8749' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.828928617Z + restimestampmock: 2025-11-10T12:23:33.829309714Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2181 +spec: + metadata: + connID: "686" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='96b38460-486f-42f1-8251-da28d33c8749' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.829435193Z + restimestampmock: 2025-11-10T12:23:33.829719691Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2182 +spec: + metadata: + connID: "686" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777413 + reqtimestampmock: 2025-11-10T12:23:33.82985144Z + restimestampmock: 2025-11-10T12:23:33.843760043Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2183 +spec: + metadata: + connID: "688" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [183, 41, 79, 85, 93, 24, 44, 15, 66, 13, 75, 4, 99, 53, 33, 164, 31, 61, 246, 116, 53, 38, 118, 69, 229, 65, 177, 87, 248, 101, 71, 87] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 525 + auth_plugin_data: [85, 13, 53, 80, 15, 100, 92, 33, 94, 86, 121, 51, 88, 23, 109, 88, 107, 121, 45, 111, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777415 + reqtimestampmock: 2025-11-10T12:23:35.796250795Z + restimestampmock: 2025-11-10T12:23:35.810581756Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2184 +spec: + metadata: + connID: "688" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777415 + reqtimestampmock: 2025-11-10T12:23:35.810935083Z + restimestampmock: 2025-11-10T12:23:35.81125735Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2185 +spec: + metadata: + connID: "688" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777415 + reqtimestampmock: 2025-11-10T12:23:35.811476798Z + restimestampmock: 2025-11-10T12:23:35.811708236Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2186 +spec: + metadata: + connID: "688" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777415 + reqtimestampmock: 2025-11-10T12:23:35.811880515Z + restimestampmock: 2025-11-10T12:23:35.812029175Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2187 +spec: + metadata: + connID: "688" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 333 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO users (id, username, email, password_hash, phone) VALUES ('7a640bce-243a-429e-907b-feb7b10dc1fb', 'nair_trivandrum', 'nair_trivandrum@example.in', 'scrypt:32768:8:1$UQdto6JWLaP5j8zI$a4ecd12db0536309f390a744677c2d1c69876e38c09618e425565cb952b6b61758fb73b850fcbe16eb1e3d9b3072705956a4827242ac0cdf39353a45c03e71e5', NULL) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777415 + reqtimestampmock: 2025-11-10T12:23:35.870263228Z + restimestampmock: 2025-11-10T12:23:35.870895483Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2188 +spec: + metadata: + connID: "688" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777415 + reqtimestampmock: 2025-11-10T12:23:35.871105081Z + restimestampmock: 2025-11-10T12:23:35.884701078Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2189 +spec: + metadata: + connID: "690" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [70, 1, 252, 42, 101, 84, 36, 18, 44, 166, 45, 235, 95, 68, 122, 35, 167, 108, 0, 140, 47, 238, 55, 40, 125, 181, 239, 129, 147, 21, 242, 29] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 526 + auth_plugin_data: [32, 49, 87, 121, 11, 1, 101, 64, 123, 1, 59, 9, 105, 92, 61, 28, 81, 68, 3, 23, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777416 + reqtimestampmock: 2025-11-10T12:23:36.751189171Z + restimestampmock: 2025-11-10T12:23:36.761482195Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2190 +spec: + metadata: + connID: "690" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777416 + reqtimestampmock: 2025-11-10T12:23:36.761779021Z + restimestampmock: 2025-11-10T12:23:36.762022369Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2191 +spec: + metadata: + connID: "690" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777416 + reqtimestampmock: 2025-11-10T12:23:36.762208128Z + restimestampmock: 2025-11-10T12:23:36.762417496Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2192 +spec: + metadata: + connID: "690" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777416 + reqtimestampmock: 2025-11-10T12:23:36.762572825Z + restimestampmock: 2025-11-10T12:23:36.762694124Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2193 +spec: + metadata: + connID: "690" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 88 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id, username, email, password_hash FROM users WHERE username='nair_trivandrum' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 4 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 55 + sequence_id: 3 + catalog: def + schema: user_db + table: users + org_table: users + name: username + org_name: username + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 49 + sequence_id: 4 + catalog: def + schema: user_db + table: users + org_table: users + name: email + org_name: email + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 20485 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + - header: + payload_length: 65 + sequence_id: 5 + catalog: def + schema: user_db + table: users + org_table: users + name: password_hash + org_name: password_hash + fixed_length: 12 + character_set: 255 + column_length: 1020 + type: 253 + flags: 4097 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 243 + sequence_id: 6 + values: + - type: 253 + name: id + value: 7a640bce-243a-429e-907b-feb7b10dc1fb + unsigned: false + - type: 253 + name: username + value: nair_trivandrum + unsigned: false + - type: 253 + name: email + value: nair_trivandrum@example.in + unsigned: false + - type: 253 + name: password_hash + value: scrypt:32768:8:1$UQdto6JWLaP5j8zI$a4ecd12db0536309f390a744677c2d1c69876e38c09618e425565cb952b6b61758fb73b850fcbe16eb1e3d9b3072705956a4827242ac0cdf39353a45c03e71e5 + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 7 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777416 + reqtimestampmock: 2025-11-10T12:23:36.763031941Z + restimestampmock: 2025-11-10T12:23:36.763686645Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2194 +spec: + metadata: + connID: "692" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [133, 199, 191, 186, 216, 21, 234, 161, 146, 109, 135, 107, 58, 190, 222, 56, 116, 172, 241, 250, 84, 77, 239, 163, 89, 10, 158, 46, 126, 188, 19, 197] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 527 + auth_plugin_data: [57, 13, 88, 52, 52, 86, 92, 105, 53, 116, 4, 110, 58, 60, 87, 55, 13, 108, 113, 37, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.532940242Z + restimestampmock: 2025-11-10T12:23:37.539856883Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2195 +spec: + metadata: + connID: "692" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.540089942Z + restimestampmock: 2025-11-10T12:23:37.5403213Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2196 +spec: + metadata: + connID: "692" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.540476018Z + restimestampmock: 2025-11-10T12:23:37.540643077Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2197 +spec: + metadata: + connID: "692" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.540780666Z + restimestampmock: 2025-11-10T12:23:37.540886955Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2198 +spec: + metadata: + connID: "692" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='7a640bce-243a-429e-907b-feb7b10dc1fb' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 7a640bce-243a-429e-907b-feb7b10dc1fb + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.541116573Z + restimestampmock: 2025-11-10T12:23:37.5414936Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2199 +spec: + metadata: + connID: "692" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 269 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: INSERT INTO addresses (id, user_id, line1, line2, city, state, postal_code, country, phone, is_default) VALUES ('d95b3363-0f2f-4d70-98ca-02d2b6576427','7a640bce-243a-429e-907b-feb7b10dc1fb','Pattom',NULL,'Thiruvananthapuram','Kerala','695004','IN','+919847112345',1) + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.541758067Z + restimestampmock: 2025-11-10T12:23:37.542491471Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2200 +spec: + metadata: + connID: "692" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 136 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: UPDATE addresses SET is_default=0 WHERE user_id='7a640bce-243a-429e-907b-feb7b10dc1fb' AND id<>'d95b3363-0f2f-4d70-98ca-02d2b6576427' + responses: + - header: + header: + payload_length: 48 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: '(Rows matched: 0 Changed: 0 Warnings: 0' + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.542786939Z + restimestampmock: 2025-11-10T12:23:37.543234525Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2201 +spec: + metadata: + connID: "692" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777417 + reqtimestampmock: 2025-11-10T12:23:37.543396384Z + restimestampmock: 2025-11-10T12:23:37.553726618Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2202 +spec: + metadata: + connID: "694" + requestOperation: HandshakeV10 + responseOperation: OK + type: config + requests: + - header: + header: + payload_length: 32 + sequence_id: 1 + packet_type: SSLRequest + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + - header: + header: + payload_length: 299 + sequence_id: 2 + packet_type: HandshakeResponse41 + message: + capability_flags: 431991437 + max_packet_size: 1073741824 + character_set: 255 + filler: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + username: user + auth_response: [233, 160, 213, 204, 15, 249, 211, 102, 115, 91, 140, 188, 254, 216, 101, 214, 204, 224, 247, 247, 254, 65, 230, 153, 18, 50, 104, 197, 117, 26, 99, 243] + database: user_db + auth_plugin_name: caching_sha2_password + connection_attributes: + _client_name: libmysql + _client_version: 9.0.0 + _connector_license: GPL-2.0 + _connector_name: mysql-connector-python + _connector_version: 9.0.0 + _os: Linux + _pid: "1060" + _platform: x86_64 + _source_host: d5823dc59ac7 + zstdcompressionlevel: 0 + responses: + - header: + header: + payload_length: 74 + sequence_id: 0 + packet_type: HandshakeV10 + message: + protocol_version: 10 + server_version: 8.0.43 + connection_id: 528 + auth_plugin_data: [109, 13, 112, 92, 114, 25, 33, 85, 98, 30, 105, 33, 56, 65, 47, 75, 54, 97, 35, 126, 0] + filler: 0 + capability_flags: 3758096383 + character_set: 255 + status_flags: 2 + auth_plugin_name: caching_sha2_password + - header: + header: + payload_length: 2 + sequence_id: 3 + packet_type: AuthMoreData + message: + status_tag: 1 + data: FastAuthSuccess + - header: + header: + payload_length: 19 + sequence_id: 4 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0\n\x01\b\auser_db" + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.321258408Z + restimestampmock: 2025-11-10T12:23:38.330629029Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2203 +spec: + metadata: + connID: "694" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 51 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SET NAMES 'utf8mb4' COLLATE 'utf8mb4_0900_ai_ci' + responses: + - header: + header: + payload_length: 107 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16386 + warnings: 0 + info: "\0b\0\x1D\x14character_set_client\autf8mb4\0!\x18character_set_connection\autf8mb4\0\x1E\x15character_set_results\autf8mb4" + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.330855997Z + restimestampmock: 2025-11-10T12:23:38.331092785Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2204 +spec: + metadata: + connID: "694" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 19 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: set autocommit=0 + responses: + - header: + header: + payload_length: 26 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 16384 + warnings: 0 + info: "\0\x11\0\x0F\nautocommit\x03OFF" + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.331263954Z + restimestampmock: 2025-11-10T12:23:38.331439343Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2205 +spec: + metadata: + connID: "694" + requestOperation: COM_PING + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 1 + sequence_id: 0 + packet_type: COM_PING + message: + command: 14 + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.331563642Z + restimestampmock: 2025-11-10T12:23:38.33173263Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2206 +spec: + metadata: + connID: "694" + requestOperation: COM_QUERY + responseOperation: TextResultSet + type: mocks + requests: + - header: + header: + payload_length: 71 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: SELECT id FROM users WHERE id='7a640bce-243a-429e-907b-feb7b10dc1fb' + responses: + - header: + header: + payload_length: 1 + sequence_id: 1 + packet_type: TextResultSet + message: + columnCount: 1 + columns: + - header: + payload_length: 43 + sequence_id: 2 + catalog: def + schema: user_db + table: users + org_table: users + name: id + org_name: id + fixed_length: 12 + character_set: 255 + column_length: 144 + type: 253 + flags: 20483 + decimals: 0 + filler: + - 0 + - 0 + defaultValue: "" + eofAfterColumns: [] + rows: + - header: + payload_length: 37 + sequence_id: 3 + values: + - type: 253 + name: id + value: 7a640bce-243a-429e-907b-feb7b10dc1fb + unsigned: false + FinalResponse: + data: + - 7 + - 0 + - 0 + - 4 + - 254 + - 0 + - 0 + - 1 + - 0 + - 0 + - 0 + type: EOF + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.331916069Z + restimestampmock: 2025-11-10T12:23:38.332688742Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2207 +spec: + metadata: + connID: "694" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 77 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM addresses WHERE user_id='7a640bce-243a-429e-907b-feb7b10dc1fb' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.33289171Z + restimestampmock: 2025-11-10T12:23:38.333273758Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2208 +spec: + metadata: + connID: "694" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 68 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: DELETE FROM users WHERE id='7a640bce-243a-429e-907b-feb7b10dc1fb' + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 1 + last_insert_id: 0 + status_flags: 1 + warnings: 0 + info: "" + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.333481875Z + restimestampmock: 2025-11-10T12:23:38.333964812Z +--- +version: api.keploy.io/v1beta1 +kind: MySQL +name: mock-2209 +spec: + metadata: + connID: "694" + requestOperation: COM_QUERY + responseOperation: OK + type: mocks + requests: + - header: + header: + payload_length: 9 + sequence_id: 0 + packet_type: COM_QUERY + message: + command: 3 + parameter_count: 0 + null_bitmap: [] + new_params_bind_flag: 0 + parameters: [] + query: commit + responses: + - header: + header: + payload_length: 7 + sequence_id: 1 + packet_type: OK + message: + header: 0 + affected_rows: 0 + last_insert_id: 0 + status_flags: 0 + warnings: 0 + info: "" + created: 1762777418 + reqtimestampmock: 2025-11-10T12:23:38.334120079Z + restimestampmock: 2025-11-10T12:23:38.344725782Z diff --git a/user_service/keploy/atg/tests/test-1.yaml b/user_service/keploy/atg/tests/test-1.yaml new file mode 100755 index 0000000..0f14eed --- /dev/null +++ b/user_service/keploy/atg/tests/test-1.yaml @@ -0,0 +1,46 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-1 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/ + header: + Accept-Encoding: gzip + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:09:55.028848867Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:09:55 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:09:55.03060231Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776595 +curl: | + curl --request POST \ + --url http://localhost:8082/ \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-10.yaml b/user_service/keploy/atg/tests/test-10.yaml new file mode 100755 index 0000000..e3bc917 --- /dev/null +++ b/user_service/keploy/atg/tests/test-10.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-10 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rohan_order_01", "email": "rohan.order.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:31.948931465Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:31.950170274Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776811 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"rohan_order_01\", \"email\": \"rohan.order.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-100.yaml b/user_service/keploy/atg/tests/test-100.yaml new file mode 100755 index 0000000..ad09ca3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-100.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-100 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:53.981937215Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTU0LCJleHAiOjE3NjUzNjg5NTR9.SrS7i9Uzj4uZ6fFXOhkMP60w1b6OZX5cwLir92NaKIU","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:54.045705305Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776954 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-101.yaml b/user_service/keploy/atg/tests/test-101.yaml new file mode 100755 index 0000000..84ca7a8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-101.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-101 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "twoitem_user_01", "email": "twoitem.user.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:54.837285831Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:54.83856152Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776954 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"twoitem_user_01\", \"email\": \"twoitem.user.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-102.yaml b/user_service/keploy/atg/tests/test-102.yaml new file mode 100755 index 0000000..b26f432 --- /dev/null +++ b/user_service/keploy/atg/tests/test-102.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-102 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:55.592191272Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:55 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:55.593317193Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776955 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-103.yaml b/user_service/keploy/atg/tests/test-103.yaml new file mode 100755 index 0000000..952ae6e --- /dev/null +++ b/user_service/keploy/atg/tests/test-103.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-103 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "2" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{}' + timestamp: 2025-11-10T12:16:00.119121745Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:16:00 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:16:00.120313366Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776960 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{}" diff --git a/user_service/keploy/atg/tests/test-104.yaml b/user_service/keploy/atg/tests/test-104.yaml new file mode 100755 index 0000000..daa6683 --- /dev/null +++ b/user_service/keploy/atg/tests/test-104.yaml @@ -0,0 +1,46 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-104 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/ + header: + Accept-Encoding: gzip + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:16:34.897444462Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:16:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:16:34.898599511Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776994 +curl: | + curl --request POST \ + --url http://localhost:8082/ \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-105.yaml b/user_service/keploy/atg/tests/test-105.yaml new file mode 100755 index 0000000..2e4b19f --- /dev/null +++ b/user_service/keploy/atg/tests/test-105.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-105 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "priya_e2e_01", "email": "priya_e2e_01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:00.357918778Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:00 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"priya_e2e_01@example.in","id":"16be51aa-dcaf-4681-b125-ccffcc64e663","phone":null,"username":"priya_e2e_01"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:00.429226178Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777020 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"priya_e2e_01\", \"email\": \"priya_e2e_01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-106.yaml b/user_service/keploy/atg/tests/test-106.yaml new file mode 100755 index 0000000..61cecda --- /dev/null +++ b/user_service/keploy/atg/tests/test-106.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-106 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "priya_e2e_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:01.139408008Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"priya_e2e_01@example.in","id":"16be51aa-dcaf-4681-b125-ccffcc64e663","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNmJlNTFhYS1kY2FmLTQ2ODEtYjEyNS1jY2ZmY2M2NGU2NjMiLCJ1c2VybmFtZSI6InByaXlhX2UyZV8wMSIsImlhdCI6MTc2Mjc3NzAyMSwiZXhwIjoxNzY1MzY5MDIxfQ.GtljdTRYooYtflXt0gptDBHy5DoN7GP03VM86CluguU","username":"priya_e2e_01"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:01.199819313Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777021 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"priya_e2e_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-107.yaml b/user_service/keploy/atg/tests/test-107.yaml new file mode 100755 index 0000000..bdf54e8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-107.yaml @@ -0,0 +1,44 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-107 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:01.959224792Z + resp: + status_code: 200 + header: + Content-Length: "179" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"addresses":[],"created_at":"Mon, 10 Nov 2025 12:17:00 GMT","email":"priya_e2e_01@example.in","id":"16be51aa-dcaf-4681-b125-ccffcc64e663","phone":null,"username":"priya_e2e_01"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:01.974947577Z + objects: [] + assertions: + noise: + body.created_at: [] + header.Date: [] + created: 1762777021 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-108.yaml b/user_service/keploy/atg/tests/test-108.yaml new file mode 100755 index 0000000..41dec04 --- /dev/null +++ b/user_service/keploy/atg/tests/test-108.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-108 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "155" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 MG Road", "city": "Bengaluru", "state": "Karnataka", "postal_code": "560001", "country": "IN", "phone": "+919876543210", "is_default": true}' + timestamp: 2025-11-10T12:17:02.706459176Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"63f3fd41-0c2d-4609-9934-999884526bda"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:02.734902993Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777022 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663/addresses \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"line1\": \"123 MG Road\", \"city\": \"Bengaluru\", \"state\": \"Karnataka\", \"postal_code\": \"560001\", \"country\": \"IN\", \"phone\": \"+919876543210\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-109.yaml b/user_service/keploy/atg/tests/test-109.yaml new file mode 100755 index 0000000..f88651e --- /dev/null +++ b/user_service/keploy/atg/tests/test-109.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-109 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:03.519930355Z + resp: + status_code: 200 + header: + Content-Length: "199" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + [{"city":"Bengaluru","country":"IN","id":"63f3fd41-0c2d-4609-9934-999884526bda","is_default":1,"line1":"123 MG Road","line2":null,"phone":"+919876543210","postal_code":"560001","state":"Karnataka"}] + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:03.535535891Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777023 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663/addresses \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-11.yaml b/user_service/keploy/atg/tests/test-11.yaml new file mode 100755 index 0000000..3ed7e9f --- /dev/null +++ b/user_service/keploy/atg/tests/test-11.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-11 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:13:32.749899449Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:13:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:32.752570196Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776812 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-110.yaml b/user_service/keploy/atg/tests/test-110.yaml new file mode 100755 index 0000000..ef06167 --- /dev/null +++ b/user_service/keploy/atg/tests/test-110.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-110 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:04.278237366Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:04 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:04.304933448Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777024 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/16be51aa-dcaf-4681-b125-ccffcc64e663 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-111.yaml b/user_service/keploy/atg/tests/test-111.yaml new file mode 100755 index 0000000..638b1db --- /dev/null +++ b/user_service/keploy/atg/tests/test-111.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-111 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rohan_order_01", "email": "rohan_order_01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:06.372833352Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"rohan_order_01@example.in","id":"18ae4cc0-1e25-49fd-bb2a-1002466783c4","phone":null,"username":"rohan_order_01"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:06.450708076Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777026 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"rohan_order_01\", \"email\": \"rohan_order_01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-112.yaml b/user_service/keploy/atg/tests/test-112.yaml new file mode 100755 index 0000000..e727c52 --- /dev/null +++ b/user_service/keploy/atg/tests/test-112.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-112 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rohan_order_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:07.20671563Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"rohan_order_01@example.in","id":"18ae4cc0-1e25-49fd-bb2a-1002466783c4","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxOGFlNGNjMC0xZTI1LTQ5ZmQtYmIyYS0xMDAyNDY2NzgzYzQiLCJ1c2VybmFtZSI6InJvaGFuX29yZGVyXzAxIiwiaWF0IjoxNzYyNzc3MDI3LCJleHAiOjE3NjUzNjkwMjd9.5axYkZCFd0fCeDqKZXru73f9zKMYx7WHUh7T-5ii1m0","username":"rohan_order_01"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:07.266904745Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777027 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"rohan_order_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-113.yaml b/user_service/keploy/atg/tests/test-113.yaml new file mode 100755 index 0000000..619ca26 --- /dev/null +++ b/user_service/keploy/atg/tests/test-113.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-113 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/18ae4cc0-1e25-49fd-bb2a-1002466783c4/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "157" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "45 BTM Layout", "city": "Bengaluru", "state": "Karnataka", "postal_code": "560076", "country": "IN", "phone": "+918765432109", "is_default": true}' + timestamp: 2025-11-10T12:17:07.943187389Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"e19a385a-5d5c-4e5c-8022-32988d92a112"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:07.965502208Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777027 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/18ae4cc0-1e25-49fd-bb2a-1002466783c4/addresses \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"line1\": \"45 BTM Layout\", \"city\": \"Bengaluru\", \"state\": \"Karnataka\", \"postal_code\": \"560076\", \"country\": \"IN\", \"phone\": \"+918765432109\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-114.yaml b/user_service/keploy/atg/tests/test-114.yaml new file mode 100755 index 0000000..c5c4a95 --- /dev/null +++ b/user_service/keploy/atg/tests/test-114.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-114 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:08.784428205Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:17:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:08.785577955Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777028 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-115.yaml b/user_service/keploy/atg/tests/test-115.yaml new file mode 100755 index 0000000..44dbba5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-115.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-115 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/18ae4cc0-1e25-49fd-bb2a-1002466783c4 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:09.527231982Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:09 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:09.54982385Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777029 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/18ae4cc0-1e25-49fd-bb2a-1002466783c4 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-116.yaml b/user_service/keploy/atg/tests/test-116.yaml new file mode 100755 index 0000000..e343ee6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-116.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-116 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "anika_login_fail", "email": "anika_login_fail@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:12.697614286Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"anika_login_fail@example.in","id":"46442b8f-133b-4c4a-beca-096cc6a034cd","phone":null,"username":"anika_login_fail"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:12.767811476Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777032 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"anika_login_fail\", \"email\": \"anika_login_fail@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-117.yaml b/user_service/keploy/atg/tests/test-117.yaml new file mode 100755 index 0000000..b569c80 --- /dev/null +++ b/user_service/keploy/atg/tests/test-117.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-117 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "61" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "anika_login_fail", "password": "wrongpassword"}' + timestamp: 2025-11-10T12:17:13.502194958Z + resp: + status_code: 401 + header: + Content-Length: "32" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Invalid credentials"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:13.560709878Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777033 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"anika_login_fail\", \"password\": \"wrongpassword\"}" diff --git a/user_service/keploy/atg/tests/test-118.yaml b/user_service/keploy/atg/tests/test-118.yaml new file mode 100755 index 0000000..7a1da1f --- /dev/null +++ b/user_service/keploy/atg/tests/test-118.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-118 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "anika_login_fail", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:14.226717654Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:14 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"anika_login_fail@example.in","id":"46442b8f-133b-4c4a-beca-096cc6a034cd","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0NjQ0MmI4Zi0xMzNiLTRjNGEtYmVjYS0wOTZjYzZhMDM0Y2QiLCJ1c2VybmFtZSI6ImFuaWthX2xvZ2luX2ZhaWwiLCJpYXQiOjE3NjI3NzcwMzQsImV4cCI6MTc2NTM2OTAzNH0.ikqJsAMQAl1iAGwOhMhY_sYpI_cbiIDvT6s52jAu6Lc","username":"anika_login_fail"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:14.284915607Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777034 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"anika_login_fail\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-119.yaml b/user_service/keploy/atg/tests/test-119.yaml new file mode 100755 index 0000000..531b2a3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-119.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-119 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/46442b8f-133b-4c4a-beca-096cc6a034cd + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:15.044120187Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:15.069848368Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777035 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/46442b8f-133b-4c4a-beca-096cc6a034cd \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-12.yaml b/user_service/keploy/atg/tests/test-12.yaml new file mode 100755 index 0000000..da4f3e0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-12.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-12 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:37.139581329Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODE3LCJleHAiOjE3NjUzNjg4MTd9.mOf2rllkQ-whHamjVZBgrnUYSMovGDZ__S699IN23UI","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:37.199978145Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776817 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-120.yaml b/user_service/keploy/atg/tests/test-120.yaml new file mode 100755 index 0000000..4f66fdf --- /dev/null +++ b/user_service/keploy/atg/tests/test-120.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-120 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "58" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "ghost_user_999", "password": "somepassword"}' + timestamp: 2025-11-10T12:17:15.884265719Z + resp: + status_code: 401 + header: + Content-Length: "32" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Invalid credentials"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:15.895626153Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777035 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"ghost_user_999\", \"password\": \"somepassword\"}" diff --git a/user_service/keploy/atg/tests/test-121.yaml b/user_service/keploy/atg/tests/test-121.yaml new file mode 100755 index 0000000..7dcc962 --- /dev/null +++ b/user_service/keploy/atg/tests/test-121.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-121 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vikram_duplicate", "email": "vikram_duplicate@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:16.70933608Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"vikram_duplicate@example.in","id":"5c02e676-4397-466c-ad59-7a47f2026a13","phone":null,"username":"vikram_duplicate"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:16.780962748Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777036 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"vikram_duplicate\", \"email\": \"vikram_duplicate@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-122.yaml b/user_service/keploy/atg/tests/test-122.yaml new file mode 100755 index 0000000..13f6a1b --- /dev/null +++ b/user_service/keploy/atg/tests/test-122.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-122 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "93" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vikram_duplicate", "email": "another_email@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:17.454916629Z + resp: + status_code: 500 + header: + Content-Length: "118" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Failed to create user: 1062 (23000): Duplicate entry 'vikram_duplicate' for key 'users.uq_users_username'"} + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:17.535847368Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777037 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"vikram_duplicate\", \"email\": \"another_email@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-123.yaml b/user_service/keploy/atg/tests/test-123.yaml new file mode 100755 index 0000000..fff4b18 --- /dev/null +++ b/user_service/keploy/atg/tests/test-123.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-123 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vikram_duplicate", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:18.225119688Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:18 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"vikram_duplicate@example.in","id":"5c02e676-4397-466c-ad59-7a47f2026a13","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1YzAyZTY3Ni00Mzk3LTQ2NmMtYWQ1OS03YTQ3ZjIwMjZhMTMiLCJ1c2VybmFtZSI6InZpa3JhbV9kdXBsaWNhdGUiLCJpYXQiOjE3NjI3NzcwMzgsImV4cCI6MTc2NTM2OTAzOH0.wky89p1hkvWXH8WPGE0lQ1URShBY7dqApr2ptG9lEaQ","username":"vikram_duplicate"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:18.285681911Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777038 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"vikram_duplicate\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-124.yaml b/user_service/keploy/atg/tests/test-124.yaml new file mode 100755 index 0000000..73df1e3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-124.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-124 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5c02e676-4397-466c-ad59-7a47f2026a13 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:18.977899877Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:18 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:18.999498563Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777038 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/5c02e676-4397-466c-ad59-7a47f2026a13 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-125.yaml b/user_service/keploy/atg/tests/test-125.yaml new file mode 100755 index 0000000..eb6c10b --- /dev/null +++ b/user_service/keploy/atg/tests/test-125.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-125 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sunita_email", "email": "sunita_duplicate@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:21.447574535Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"sunita_duplicate@example.in","id":"ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c","phone":null,"username":"sunita_email"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:21.51494935Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777041 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"sunita_email\", \"email\": \"sunita_duplicate@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-126.yaml b/user_service/keploy/atg/tests/test-126.yaml new file mode 100755 index 0000000..d54e66c --- /dev/null +++ b/user_service/keploy/atg/tests/test-126.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-126 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "another_sunita", "email": "sunita_duplicate@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:22.195979682Z + resp: + status_code: 500 + header: + Content-Length: "126" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Failed to create user: 1062 (23000): Duplicate entry 'sunita_duplicate@example.in' for key 'users.uq_users_email'"} + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:22.262915042Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777042 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"another_sunita\", \"email\": \"sunita_duplicate@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-127.yaml b/user_service/keploy/atg/tests/test-127.yaml new file mode 100755 index 0000000..06c4d5d --- /dev/null +++ b/user_service/keploy/atg/tests/test-127.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-127 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sunita_email", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:22.956504738Z + resp: + status_code: 200 + header: + Content-Length: "344" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"sunita_duplicate@example.in","id":"ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjZTdhOWQ4Zi0yYzQ1LTRkYjEtYTkzMC1iNDZkY2M4ZmZiMmMiLCJ1c2VybmFtZSI6InN1bml0YV9lbWFpbCIsImlhdCI6MTc2Mjc3NzA0MywiZXhwIjoxNzY1MzY5MDQzfQ.eNS90d_UGAhB35tZqgFaaJMSy3aeGffMgFx1lMU95Is","username":"sunita_email"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:23.016951702Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777043 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"sunita_email\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-128.yaml b/user_service/keploy/atg/tests/test-128.yaml new file mode 100755 index 0000000..bc11842 --- /dev/null +++ b/user_service/keploy/atg/tests/test-128.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-128 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:23.700931761Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:23.724809687Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777043 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/ce7a9d8f-2c45-4db1-a930-b46dcc8ffb2c \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-129.yaml b/user_service/keploy/atg/tests/test-129.yaml new file mode 100755 index 0000000..a4db7b1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-129.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-129 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "noauth_user", "email": "noauth_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:26.276485294Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"noauth_user@example.in","id":"a7ef1d19-4a3a-4a51-ab42-038fd59367b3","phone":null,"username":"noauth_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:26.347735028Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777046 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"noauth_user\", \"email\": \"noauth_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-13.yaml b/user_service/keploy/atg/tests/test-13.yaml new file mode 100755 index 0000000..166fdbb --- /dev/null +++ b/user_service/keploy/atg/tests/test-13.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-13 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sunita_cancel_01", "email": "sunita.cancel.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:37.984136937Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:37.985491695Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776817 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"sunita_cancel_01\", \"email\": \"sunita.cancel.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-130.yaml b/user_service/keploy/atg/tests/test-130.yaml new file mode 100755 index 0000000..01d97e8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-130.yaml @@ -0,0 +1,44 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-130 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a7ef1d19-4a3a-4a51-ab42-038fd59367b3 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:27.118734367Z + resp: + status_code: 200 + header: + Content-Length: "177" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"addresses":[],"created_at":"Mon, 10 Nov 2025 12:17:26 GMT","email":"noauth_user@example.in","id":"a7ef1d19-4a3a-4a51-ab42-038fd59367b3","phone":null,"username":"noauth_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:27.131468538Z + objects: [] + assertions: + noise: + body.created_at: [] + header.Date: [] + created: 1762777047 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/a7ef1d19-4a3a-4a51-ab42-038fd59367b3 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-131.yaml b/user_service/keploy/atg/tests/test-131.yaml new file mode 100755 index 0000000..dc957f9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-131.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-131 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "noauth_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:27.875669016Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"noauth_user@example.in","id":"a7ef1d19-4a3a-4a51-ab42-038fd59367b3","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhN2VmMWQxOS00YTNhLTRhNTEtYWI0Mi0wMzhmZDU5MzY3YjMiLCJ1c2VybmFtZSI6Im5vYXV0aF91c2VyIiwiaWF0IjoxNzYyNzc3MDQ3LCJleHAiOjE3NjUzNjkwNDd9.MA3HZz1UAdj5dY6U1JBLKFnBl8MZfqJxK9-Gb4ri_tE","username":"noauth_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:27.9373012Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777047 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"noauth_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-132.yaml b/user_service/keploy/atg/tests/test-132.yaml new file mode 100755 index 0000000..adb4d37 --- /dev/null +++ b/user_service/keploy/atg/tests/test-132.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-132 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a7ef1d19-4a3a-4a51-ab42-038fd59367b3 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:28.696590908Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:28 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:28.720760134Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777048 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a7ef1d19-4a3a-4a51-ab42-038fd59367b3 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-133.yaml b/user_service/keploy/atg/tests/test-133.yaml new file mode 100755 index 0000000..0f909b2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-133.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-133 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "100" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth", "email": "temp_user_for_auth@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:30.507376598Z + resp: + status_code: 201 + header: + Content-Length: "131" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth@example.in","id":"753085ca-8366-43b0-bfd1-3c017574933e","phone":null,"username":"temp_user_for_auth"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:30.577034265Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777050 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"temp_user_for_auth\", \"email\": \"temp_user_for_auth@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-134.yaml b/user_service/keploy/atg/tests/test-134.yaml new file mode 100755 index 0000000..ffad845 --- /dev/null +++ b/user_service/keploy/atg/tests/test-134.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-134 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "58" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:31.322468425Z + resp: + status_code: 200 + header: + Content-Length: "360" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth@example.in","id":"753085ca-8366-43b0-bfd1-3c017574933e","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3NTMwODVjYS04MzY2LTQzYjAtYmZkMS0zYzAxNzU3NDkzM2UiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfYXV0aCIsImlhdCI6MTc2Mjc3NzA1MSwiZXhwIjoxNzY1MzY5MDUxfQ.HRpI67V1WHqlNK7d_G9EF0pWqSGGeNfoC4O_qcE61wI","username":"temp_user_for_auth"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:31.382996429Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777051 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"temp_user_for_auth\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-135.yaml b/user_service/keploy/atg/tests/test-135.yaml new file mode 100755 index 0000000..cab86ca --- /dev/null +++ b/user_service/keploy/atg/tests/test-135.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-135 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/00000000-0000-0000-0000-000000000000 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:32.078686353Z + resp: + status_code: 404 + header: + Content-Length: "27" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"User not found"} + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:32.089647369Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777052 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/00000000-0000-0000-0000-000000000000 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-136.yaml b/user_service/keploy/atg/tests/test-136.yaml new file mode 100755 index 0000000..881c032 --- /dev/null +++ b/user_service/keploy/atg/tests/test-136.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-136 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/753085ca-8366-43b0-bfd1-3c017574933e + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:32.890599438Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:32.915646754Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777052 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/753085ca-8366-43b0-bfd1-3c017574933e \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-137.yaml b/user_service/keploy/atg/tests/test-137.yaml new file mode 100755 index 0000000..1027e09 --- /dev/null +++ b/user_service/keploy/atg/tests/test-137.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-137 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "108" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_del", "email": "temp_user_for_auth_del@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:33.716700551Z + resp: + status_code: 201 + header: + Content-Length: "139" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_del@example.in","id":"3b923b66-00fd-4468-ba80-4925b266fe45","phone":null,"username":"temp_user_for_auth_del"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:33.786861873Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777053 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"temp_user_for_auth_del\", \"email\": \"temp_user_for_auth_del@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-138.yaml b/user_service/keploy/atg/tests/test-138.yaml new file mode 100755 index 0000000..8877440 --- /dev/null +++ b/user_service/keploy/atg/tests/test-138.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-138 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "62" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_del", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:34.483941547Z + resp: + status_code: 200 + header: + Content-Length: "373" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_del@example.in","id":"3b923b66-00fd-4468-ba80-4925b266fe45","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIzYjkyM2I2Ni0wMGZkLTQ0NjgtYmE4MC00OTI1YjI2NmZlNDUiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfYXV0aF9kZWwiLCJpYXQiOjE3NjI3NzcwNTQsImV4cCI6MTc2NTM2OTA1NH0.zieLjFbvo6GNNKwLWx-83dCXMzyDDBi_5jPFSiGQNbI","username":"temp_user_for_auth_del"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:34.542318139Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777054 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"temp_user_for_auth_del\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-139.yaml b/user_service/keploy/atg/tests/test-139.yaml new file mode 100755 index 0000000..41531f6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-139.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-139 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/00000000-0000-0000-0000-000000000000 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:35.221829673Z + resp: + status_code: 404 + header: + Content-Length: "27" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"User not found"} + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:35.233390285Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777055 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/00000000-0000-0000-0000-000000000000 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-14.yaml b/user_service/keploy/atg/tests/test-14.yaml new file mode 100755 index 0000000..381dbd1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-14.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-14 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:13:38.758277337Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:13:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:38.759351128Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776818 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-140.yaml b/user_service/keploy/atg/tests/test-140.yaml new file mode 100755 index 0000000..236afd0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-140.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-140 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/3b923b66-00fd-4468-ba80-4925b266fe45 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:36.020768529Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:36.046316572Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777056 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/3b923b66-00fd-4468-ba80-4925b266fe45 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-141.yaml b/user_service/keploy/atg/tests/test-141.yaml new file mode 100755 index 0000000..5f552ba --- /dev/null +++ b/user_service/keploy/atg/tests/test-141.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-141 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "product_tester", "email": "product_tester@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:36.866121831Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"product_tester@example.in","id":"76e07df1-2f87-4705-89fe-c61e78001e39","phone":null,"username":"product_tester"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:36.937933889Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777056 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"product_tester\", \"email\": \"product_tester@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-142.yaml b/user_service/keploy/atg/tests/test-142.yaml new file mode 100755 index 0000000..66628f0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-142.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-142 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "product_tester", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:37.611576874Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"product_tester@example.in","id":"76e07df1-2f87-4705-89fe-c61e78001e39","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3NmUwN2RmMS0yZjg3LTQ3MDUtODlmZS1jNjFlNzgwMDFlMzkiLCJ1c2VybmFtZSI6InByb2R1Y3RfdGVzdGVyIiwiaWF0IjoxNzYyNzc3MDU3LCJleHAiOjE3NjUzNjkwNTd9.of6ew7hqU7nHbEglnetGD47LJLjMFOWII7KERIjtOyk","username":"product_tester"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:37.67436127Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777057 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"product_tester\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-143.yaml b/user_service/keploy/atg/tests/test-143.yaml new file mode 100755 index 0000000..c0feb3d --- /dev/null +++ b/user_service/keploy/atg/tests/test-143.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-143 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:38.354616057Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:17:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:38.355669638Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777058 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-144.yaml b/user_service/keploy/atg/tests/test-144.yaml new file mode 100755 index 0000000..f8baecc --- /dev/null +++ b/user_service/keploy/atg/tests/test-144.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-144 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/76e07df1-2f87-4705-89fe-c61e78001e39 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:39.179939762Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:39.205138647Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777059 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/76e07df1-2f87-4705-89fe-c61e78001e39 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-145.yaml b/user_service/keploy/atg/tests/test-145.yaml new file mode 100755 index 0000000..bf4ae00 --- /dev/null +++ b/user_service/keploy/atg/tests/test-145.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-145 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "inventory_manager", "email": "inventory_manager@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:41.537418625Z + resp: + status_code: 201 + header: + Content-Length: "129" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:41 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"inventory_manager@example.in","id":"c4f415bd-b650-453c-852e-592ef525edac","phone":null,"username":"inventory_manager"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:41.608904766Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777061 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"inventory_manager\", \"email\": \"inventory_manager@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-146.yaml b/user_service/keploy/atg/tests/test-146.yaml new file mode 100755 index 0000000..67a43c1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-146.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-146 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "inventory_manager", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:42.326697587Z + resp: + status_code: 200 + header: + Content-Length: "356" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"inventory_manager@example.in","id":"c4f415bd-b650-453c-852e-592ef525edac","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjNGY0MTViZC1iNjUwLTQ1M2MtODUyZS01OTJlZjUyNWVkYWMiLCJ1c2VybmFtZSI6ImludmVudG9yeV9tYW5hZ2VyIiwiaWF0IjoxNzYyNzc3MDYyLCJleHAiOjE3NjUzNjkwNjJ9.rnC_wZNIFX5D_5_H63nnSbInu-Xmofb2xPcb8SbA878","username":"inventory_manager"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:42.387531958Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777062 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"inventory_manager\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-147.yaml b/user_service/keploy/atg/tests/test-147.yaml new file mode 100755 index 0000000..c289627 --- /dev/null +++ b/user_service/keploy/atg/tests/test-147.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-147 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:43.075838482Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:17:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:43.077312519Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777063 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-148.yaml b/user_service/keploy/atg/tests/test-148.yaml new file mode 100755 index 0000000..d28b89c --- /dev/null +++ b/user_service/keploy/atg/tests/test-148.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-148 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c4f415bd-b650-453c-852e-592ef525edac + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:43.911131654Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:43.936673276Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777063 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/c4f415bd-b650-453c-852e-592ef525edac \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-149.yaml b/user_service/keploy/atg/tests/test-149.yaml new file mode 100755 index 0000000..c79fb05 --- /dev/null +++ b/user_service/keploy/atg/tests/test-149.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-149 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "stock_checker", "email": "stock_checker@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:46.515607287Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:46 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"stock_checker@example.in","id":"79211abf-4c4b-4339-a13c-ee6106a32e6b","phone":null,"username":"stock_checker"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:46.589865146Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777066 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"stock_checker\", \"email\": \"stock_checker@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-15.yaml b/user_service/keploy/atg/tests/test-15.yaml new file mode 100755 index 0000000..5cfc8ed --- /dev/null +++ b/user_service/keploy/atg/tests/test-15.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-15 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "50" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "wrongpassword"}' + timestamp: 2025-11-10T12:13:43.213689215Z + resp: + status_code: 401 + header: + Content-Length: "32" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Invalid credentials"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:43.273496056Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776823 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"wrongpassword\"}" diff --git a/user_service/keploy/atg/tests/test-150.yaml b/user_service/keploy/atg/tests/test-150.yaml new file mode 100755 index 0000000..81c9f8b --- /dev/null +++ b/user_service/keploy/atg/tests/test-150.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-150 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "stock_checker", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:47.293651749Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"stock_checker@example.in","id":"79211abf-4c4b-4339-a13c-ee6106a32e6b","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3OTIxMWFiZi00YzRiLTQzMzktYTEzYy1lZTYxMDZhMzJlNmIiLCJ1c2VybmFtZSI6InN0b2NrX2NoZWNrZXIiLCJpYXQiOjE3NjI3NzcwNjcsImV4cCI6MTc2NTM2OTA2N30.iiW0V78uukvqFuy4GgIhXYvQjfsSaB884tOLq-qpiK4","username":"stock_checker"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:47.353921136Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777067 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"stock_checker\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-151.yaml b/user_service/keploy/atg/tests/test-151.yaml new file mode 100755 index 0000000..81b3f12 --- /dev/null +++ b/user_service/keploy/atg/tests/test-151.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-151 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:48.094213369Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:17:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:48.09539259Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777068 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-152.yaml b/user_service/keploy/atg/tests/test-152.yaml new file mode 100755 index 0000000..098c50d --- /dev/null +++ b/user_service/keploy/atg/tests/test-152.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-152 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/79211abf-4c4b-4339-a13c-ee6106a32e6b + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:48.836616247Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:48.860531212Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777068 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/79211abf-4c4b-4339-a13c-ee6106a32e6b \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-153.yaml b/user_service/keploy/atg/tests/test-153.yaml new file mode 100755 index 0000000..9a271d3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-153.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-153 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "deepa_idem_01", "email": "deepa_idem_01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:51.066074198Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"deepa_idem_01@example.in","id":"bb49cd03-583c-4f27-a003-e2050840ab3b","phone":null,"username":"deepa_idem_01"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:51.141463747Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777071 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"deepa_idem_01\", \"email\": \"deepa_idem_01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-154.yaml b/user_service/keploy/atg/tests/test-154.yaml new file mode 100755 index 0000000..b302019 --- /dev/null +++ b/user_service/keploy/atg/tests/test-154.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-154 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "deepa_idem_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:51.97960266Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"deepa_idem_01@example.in","id":"bb49cd03-583c-4f27-a003-e2050840ab3b","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJiYjQ5Y2QwMy01ODNjLTRmMjctYTAwMy1lMjA1MDg0MGFiM2IiLCJ1c2VybmFtZSI6ImRlZXBhX2lkZW1fMDEiLCJpYXQiOjE3NjI3NzcwNzIsImV4cCI6MTc2NTM2OTA3Mn0.GdcBF1NQm5J90pqOt0vZP9oKBaxRBmHH4GSp6E2MzIk","username":"deepa_idem_01"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:52.039787789Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777072 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"deepa_idem_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-155.yaml b/user_service/keploy/atg/tests/test-155.yaml new file mode 100755 index 0000000..de725e9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-155.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-155 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/bb49cd03-583c-4f27-a003-e2050840ab3b/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "154" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "22 Connaught Place", "city": "Delhi", "state": "Delhi", "postal_code": "110001", "country": "IN", "phone": "+919812345678", "is_default": true}' + timestamp: 2025-11-10T12:17:52.813289763Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"8ce1b5f8-3b4d-427f-8bf5-e9703ff9df27"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:52.836177168Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777072 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/bb49cd03-583c-4f27-a003-e2050840ab3b/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"22 Connaught Place\", \"city\": \"Delhi\", \"state\": \"Delhi\", \"postal_code\": \"110001\", \"country\": \"IN\", \"phone\": \"+919812345678\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-156.yaml b/user_service/keploy/atg/tests/test-156.yaml new file mode 100755 index 0000000..add96fb --- /dev/null +++ b/user_service/keploy/atg/tests/test-156.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-156 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:53.613936767Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:17:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:53.615427775Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777073 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-157.yaml b/user_service/keploy/atg/tests/test-157.yaml new file mode 100755 index 0000000..8df941a --- /dev/null +++ b/user_service/keploy/atg/tests/test-157.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-157 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/bb49cd03-583c-4f27-a003-e2050840ab3b + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:54.442575053Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:54.467109655Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777074 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/bb49cd03-583c-4f27-a003-e2050840ab3b \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-158.yaml b/user_service/keploy/atg/tests/test-158.yaml new file mode 100755 index 0000000..aa88d0e --- /dev/null +++ b/user_service/keploy/atg/tests/test-158.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-158 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "cancel_user_01", "email": "cancel_user_01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:57.17250484Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"cancel_user_01@example.in","id":"9a082290-3fed-4a09-ac50-d25e81f0222c","phone":null,"username":"cancel_user_01"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:57.246018485Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777077 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"cancel_user_01\", \"email\": \"cancel_user_01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-159.yaml b/user_service/keploy/atg/tests/test-159.yaml new file mode 100755 index 0000000..bb2dafc --- /dev/null +++ b/user_service/keploy/atg/tests/test-159.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-159 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "cancel_user_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:17:58.099168096Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:58 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"cancel_user_01@example.in","id":"9a082290-3fed-4a09-ac50-d25e81f0222c","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5YTA4MjI5MC0zZmVkLTRhMDktYWM1MC1kMjVlODFmMDIyMmMiLCJ1c2VybmFtZSI6ImNhbmNlbF91c2VyXzAxIiwiaWF0IjoxNzYyNzc3MDc4LCJleHAiOjE3NjUzNjkwNzh9.ZpgHuOS2yh9KReMjMbdBMa1jhhsumdcXbzsLApWGlSw","username":"cancel_user_01"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:58.161631846Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777078 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"cancel_user_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-16.yaml b/user_service/keploy/atg/tests/test-16.yaml new file mode 100755 index 0000000..6dcbe00 --- /dev/null +++ b/user_service/keploy/atg/tests/test-16.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-16 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "70" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "nonexistentuser_{{$randomInt}}", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:44.065937095Z + resp: + status_code: 401 + header: + Content-Length: "32" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:44 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Invalid credentials"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:44.078421004Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776824 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"nonexistentuser_{{$randomInt}}\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-160.yaml b/user_service/keploy/atg/tests/test-160.yaml new file mode 100755 index 0000000..b3c4528 --- /dev/null +++ b/user_service/keploy/atg/tests/test-160.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-160 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9a082290-3fed-4a09-ac50-d25e81f0222c/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "151" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "33 FC Road", "city": "Pune", "state": "Maharashtra", "postal_code": "411004", "country": "IN", "phone": "+919876501234", "is_default": true}' + timestamp: 2025-11-10T12:17:58.961045683Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:17:58 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"942d93ed-78d4-4e03-9d60-4931b6ab2e88"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:58.985482115Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777078 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/9a082290-3fed-4a09-ac50-d25e81f0222c/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"33 FC Road\", \"city\": \"Pune\", \"state\": \"Maharashtra\", \"postal_code\": \"411004\", \"country\": \"IN\", \"phone\": \"+919876501234\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-161.yaml b/user_service/keploy/atg/tests/test-161.yaml new file mode 100755 index 0000000..847c5ba --- /dev/null +++ b/user_service/keploy/atg/tests/test-161.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-161 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:17:59.923925112Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:17:59 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:17:59.925041393Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777079 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-162.yaml b/user_service/keploy/atg/tests/test-162.yaml new file mode 100755 index 0000000..bf9f4cd --- /dev/null +++ b/user_service/keploy/atg/tests/test-162.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-162 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9a082290-3fed-4a09-ac50-d25e81f0222c + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:00.762099331Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:00 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:00.790519339Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777080 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/9a082290-3fed-4a09-ac50-d25e81f0222c \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-163.yaml b/user_service/keploy/atg/tests/test-163.yaml new file mode 100755 index 0000000..e6ff5a6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-163.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-163 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "paid_cancel_fail", "email": "paid_cancel_fail@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:03.417369327Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"paid_cancel_fail@example.in","id":"be716f2f-f071-42fe-8a85-a92c8a1c1b68","phone":null,"username":"paid_cancel_fail"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:03.488399143Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777083 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"paid_cancel_fail\", \"email\": \"paid_cancel_fail@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-164.yaml b/user_service/keploy/atg/tests/test-164.yaml new file mode 100755 index 0000000..3413be3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-164.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-164 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "paid_cancel_fail", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:04.632974233Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:04 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"paid_cancel_fail@example.in","id":"be716f2f-f071-42fe-8a85-a92c8a1c1b68","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJiZTcxNmYyZi1mMDcxLTQyZmUtOGE4NS1hOTJjOGExYzFiNjgiLCJ1c2VybmFtZSI6InBhaWRfY2FuY2VsX2ZhaWwiLCJpYXQiOjE3NjI3NzcwODQsImV4cCI6MTc2NTM2OTA4NH0.n8FD-NR_aXgOXwgLFQ_h_Z6cdELd4z4ZtRFF-VamyiE","username":"paid_cancel_fail"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:04.692622396Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777084 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"paid_cancel_fail\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-165.yaml b/user_service/keploy/atg/tests/test-165.yaml new file mode 100755 index 0000000..106d637 --- /dev/null +++ b/user_service/keploy/atg/tests/test-165.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-165 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/be716f2f-f071-42fe-8a85-a92c8a1c1b68/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "158" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "55 Park Street", "city": "Kolkata", "state": "West Bengal", "postal_code": "700016", "country": "IN", "phone": "+919000011111", "is_default": true}' + timestamp: 2025-11-10T12:18:05.436254221Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"7aac94f7-3f51-4ad1-b262-d2acdd7429f2"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:05.461209379Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777085 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/be716f2f-f071-42fe-8a85-a92c8a1c1b68/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"55 Park Street\", \"city\": \"Kolkata\", \"state\": \"West Bengal\", \"postal_code\": \"700016\", \"country\": \"IN\", \"phone\": \"+919000011111\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-166.yaml b/user_service/keploy/atg/tests/test-166.yaml new file mode 100755 index 0000000..d80eee7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-166.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-166 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:06.187808509Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:06.188875211Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777086 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-167.yaml b/user_service/keploy/atg/tests/test-167.yaml new file mode 100755 index 0000000..8873ca1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-167.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-167 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/be716f2f-f071-42fe-8a85-a92c8a1c1b68 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:06.995160754Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:07.017982631Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777087 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/be716f2f-f071-42fe-8a85-a92c8a1c1b68 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-168.yaml b/user_service/keploy/atg/tests/test-168.yaml new file mode 100755 index 0000000..3a10f0c --- /dev/null +++ b/user_service/keploy/atg/tests/test-168.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-168 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "list_order_user", "email": "list_order_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:10.11722249Z + resp: + status_code: 201 + header: + Content-Length: "125" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:10 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"list_order_user@example.in","id":"4dec0e0b-8950-49ab-aefb-acea23952e05","phone":null,"username":"list_order_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:10.187578124Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777090 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"list_order_user\", \"email\": \"list_order_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-169.yaml b/user_service/keploy/atg/tests/test-169.yaml new file mode 100755 index 0000000..361b7c5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-169.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-169 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "list_order_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:10.956529056Z + resp: + status_code: 200 + header: + Content-Length: "350" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"list_order_user@example.in","id":"4dec0e0b-8950-49ab-aefb-acea23952e05","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0ZGVjMGUwYi04OTUwLTQ5YWItYWVmYi1hY2VhMjM5NTJlMDUiLCJ1c2VybmFtZSI6Imxpc3Rfb3JkZXJfdXNlciIsImlhdCI6MTc2Mjc3NzA5MSwiZXhwIjoxNzY1MzY5MDkxfQ.vngRxKSmZqG5kFGtD846fuHbpFilltmw_tQYeVwzrRg","username":"list_order_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:11.019803439Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777091 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"list_order_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-17.yaml b/user_service/keploy/atg/tests/test-17.yaml new file mode 100755 index 0000000..5d081a1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-17.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-17 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:44.870391247Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:44 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODI0LCJleHAiOjE3NjUzNjg4MjR9.pEaw7nY1cfyN2wfWIk_SRc6DsKM1oRItCxHcc8PIpyk","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:44.927810041Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776824 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-170.yaml b/user_service/keploy/atg/tests/test-170.yaml new file mode 100755 index 0000000..5bf5d66 --- /dev/null +++ b/user_service/keploy/atg/tests/test-170.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-170 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/4dec0e0b-8950-49ab-aefb-acea23952e05/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "159" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "7 Jubilee Hills", "city": "Hyderabad", "state": "Telangana", "postal_code": "500033", "country": "IN", "phone": "+919123456789", "is_default": true}' + timestamp: 2025-11-10T12:18:11.716445396Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"149209af-8c0e-440f-99fb-704a2209cf84"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:11.741693293Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777091 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/4dec0e0b-8950-49ab-aefb-acea23952e05/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"7 Jubilee Hills\", \"city\": \"Hyderabad\", \"state\": \"Telangana\", \"postal_code\": \"500033\", \"country\": \"IN\", \"phone\": \"+919123456789\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-171.yaml b/user_service/keploy/atg/tests/test-171.yaml new file mode 100755 index 0000000..a4dc11b --- /dev/null +++ b/user_service/keploy/atg/tests/test-171.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-171 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:12.460372083Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:12.461690691Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777092 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-172.yaml b/user_service/keploy/atg/tests/test-172.yaml new file mode 100755 index 0000000..96826d7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-172.yaml @@ -0,0 +1,50 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-172 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders?limit=5&userId=4dec0e0b-8950-49ab-aefb-acea23952e05 + url_params: + limit: "5" + userId: 4dec0e0b-8950-49ab-aefb-acea23952e05 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:13.277109641Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:13.278189413Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777093 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/orders?limit=5&userId=4dec0e0b-8950-49ab-aefb-acea23952e05 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-173.yaml b/user_service/keploy/atg/tests/test-173.yaml new file mode 100755 index 0000000..ff01742 --- /dev/null +++ b/user_service/keploy/atg/tests/test-173.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-173 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/4dec0e0b-8950-49ab-aefb-acea23952e05 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:14.00324888Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:14 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:14.025508771Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777094 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/4dec0e0b-8950-49ab-aefb-acea23952e05 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-174.yaml b/user_service/keploy/atg/tests/test-174.yaml new file mode 100755 index 0000000..e46536c --- /dev/null +++ b/user_service/keploy/atg/tests/test-174.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-174 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "default_addr_user", "email": "default_addr_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:17.458328285Z + resp: + status_code: 201 + header: + Content-Length: "129" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"default_addr_user@example.in","id":"2a16540a-f916-4b11-b715-7636c0946697","phone":null,"username":"default_addr_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:17.533726246Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777097 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"default_addr_user\", \"email\": \"default_addr_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-175.yaml b/user_service/keploy/atg/tests/test-175.yaml new file mode 100755 index 0000000..9267584 --- /dev/null +++ b/user_service/keploy/atg/tests/test-175.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-175 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "default_addr_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:18.203340675Z + resp: + status_code: 200 + header: + Content-Length: "356" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:18 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"default_addr_user@example.in","id":"2a16540a-f916-4b11-b715-7636c0946697","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyYTE2NTQwYS1mOTE2LTRiMTEtYjcxNS03NjM2YzA5NDY2OTciLCJ1c2VybmFtZSI6ImRlZmF1bHRfYWRkcl91c2VyIiwiaWF0IjoxNzYyNzc3MDk4LCJleHAiOjE3NjUzNjkwOTh9.9vYHsR4VRnSX1kRhgkqWc9nAOGN-K22Y9v48FRQF-vU","username":"default_addr_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:18.270221819Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777098 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"default_addr_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-176.yaml b/user_service/keploy/atg/tests/test-176.yaml new file mode 100755 index 0000000..bca2df2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-176.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-176 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/2a16540a-f916-4b11-b715-7636c0946697/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "155" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "9 Anna Salai", "city": "Chennai", "state": "Tamil Nadu", "postal_code": "600002", "country": "IN", "phone": "+919998887776", "is_default": true}' + timestamp: 2025-11-10T12:18:19.031547061Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:19 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"d54f10f7-0200-468b-9b9f-e90a9c484959"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:19.0565023Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777099 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/2a16540a-f916-4b11-b715-7636c0946697/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"9 Anna Salai\", \"city\": \"Chennai\", \"state\": \"Tamil Nadu\", \"postal_code\": \"600002\", \"country\": \"IN\", \"phone\": \"+919998887776\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-177.yaml b/user_service/keploy/atg/tests/test-177.yaml new file mode 100755 index 0000000..ed271cc --- /dev/null +++ b/user_service/keploy/atg/tests/test-177.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-177 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:19.786404339Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:19 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:19.787657918Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777099 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-178.yaml b/user_service/keploy/atg/tests/test-178.yaml new file mode 100755 index 0000000..ec5ef5b --- /dev/null +++ b/user_service/keploy/atg/tests/test-178.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-178 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/2a16540a-f916-4b11-b715-7636c0946697 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:20.614291898Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:20.638032177Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777100 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/2a16540a-f916-4b11-b715-7636c0946697 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-179.yaml b/user_service/keploy/atg/tests/test-179.yaml new file mode 100755 index 0000000..3c126b6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-179.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-179 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_addr_user", "email": "no_addr_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:23.003994714Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"no_addr_user@example.in","id":"3afeaa74-af93-4845-a994-2421dfbb9178","phone":null,"username":"no_addr_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:23.074531545Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777103 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"no_addr_user\", \"email\": \"no_addr_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-18.yaml b/user_service/keploy/atg/tests/test-18.yaml new file mode 100755 index 0000000..1e6a84f --- /dev/null +++ b/user_service/keploy/atg/tests/test-18.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-18 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "78" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "email": "new.alice@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:45.613797782Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:45.615001281Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776825 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"email\": \"new.alice@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-180.yaml b/user_service/keploy/atg/tests/test-180.yaml new file mode 100755 index 0000000..bb38036 --- /dev/null +++ b/user_service/keploy/atg/tests/test-180.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-180 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_addr_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:23.767542119Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"no_addr_user@example.in","id":"3afeaa74-af93-4845-a994-2421dfbb9178","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIzYWZlYWE3NC1hZjkzLTQ4NDUtYTk5NC0yNDIxZGZiYjkxNzgiLCJ1c2VybmFtZSI6Im5vX2FkZHJfdXNlciIsImlhdCI6MTc2Mjc3NzEwMywiZXhwIjoxNzY1MzY5MTAzfQ.uQffEgNrdYgJo-6TQae8Taoz9hcpc7uBARz_VPlOt58","username":"no_addr_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:23.82518081Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777103 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"no_addr_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-181.yaml b/user_service/keploy/atg/tests/test-181.yaml new file mode 100755 index 0000000..fb7bc03 --- /dev/null +++ b/user_service/keploy/atg/tests/test-181.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-181 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:24.486555783Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:24 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:24.487720473Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777104 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-182.yaml b/user_service/keploy/atg/tests/test-182.yaml new file mode 100755 index 0000000..67e5ea3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-182.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-182 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/3afeaa74-af93-4845-a994-2421dfbb9178 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:25.301413224Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:25.325730039Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777105 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/3afeaa74-af93-4845-a994-2421dfbb9178 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-183.yaml b/user_service/keploy/atg/tests/test-183.yaml new file mode 100755 index 0000000..bd5cb55 --- /dev/null +++ b/user_service/keploy/atg/tests/test-183.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-183 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "108" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_get", "email": "temp_user_for_auth_get@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:29.478548529Z + resp: + status_code: 201 + header: + Content-Length: "139" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_get@example.in","id":"b002b30e-2c02-4c4e-afc6-0f374d902571","phone":null,"username":"temp_user_for_auth_get"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:29.551156943Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777109 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"temp_user_for_auth_get\", \"email\": \"temp_user_for_auth_get@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-184.yaml b/user_service/keploy/atg/tests/test-184.yaml new file mode 100755 index 0000000..dac4f05 --- /dev/null +++ b/user_service/keploy/atg/tests/test-184.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-184 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "62" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_get", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:30.254465693Z + resp: + status_code: 200 + header: + Content-Length: "373" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_get@example.in","id":"b002b30e-2c02-4c4e-afc6-0f374d902571","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJiMDAyYjMwZS0yYzAyLTRjNGUtYWZjNi0wZjM3NGQ5MDI1NzEiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfYXV0aF9nZXQiLCJpYXQiOjE3NjI3NzcxMTAsImV4cCI6MTc2NTM2OTExMH0.T7uBeqwCkTMA_625JgyrXoTMZ-DupFTU8paLEU9cSvM","username":"temp_user_for_auth_get"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:30.314434365Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777110 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"temp_user_for_auth_get\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-185.yaml b/user_service/keploy/atg/tests/test-185.yaml new file mode 100755 index 0000000..0d6cb6f --- /dev/null +++ b/user_service/keploy/atg/tests/test-185.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-185 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/00000000-0000-0000-0000-000000000000 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:31.08316836Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:31.084265612Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777111 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/orders/00000000-0000-0000-0000-000000000000 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-186.yaml b/user_service/keploy/atg/tests/test-186.yaml new file mode 100755 index 0000000..d7147eb --- /dev/null +++ b/user_service/keploy/atg/tests/test-186.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-186 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/b002b30e-2c02-4c4e-afc6-0f374d902571 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:31.825326962Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:31.849945094Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777111 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/b002b30e-2c02-4c4e-afc6-0f374d902571 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-187.yaml b/user_service/keploy/atg/tests/test-187.yaml new file mode 100755 index 0000000..b0b807c --- /dev/null +++ b/user_service/keploy/atg/tests/test-187.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-187 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "108" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_pay", "email": "temp_user_for_auth_pay@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:32.656673868Z + resp: + status_code: 201 + header: + Content-Length: "139" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_pay@example.in","id":"595b6f58-990a-47b2-8245-e03d98d9a2df","phone":null,"username":"temp_user_for_auth_pay"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:32.728141912Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777112 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"temp_user_for_auth_pay\", \"email\": \"temp_user_for_auth_pay@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-188.yaml b/user_service/keploy/atg/tests/test-188.yaml new file mode 100755 index 0000000..67a4431 --- /dev/null +++ b/user_service/keploy/atg/tests/test-188.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-188 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "62" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_pay", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:33.407480167Z + resp: + status_code: 200 + header: + Content-Length: "373" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_pay@example.in","id":"595b6f58-990a-47b2-8245-e03d98d9a2df","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1OTViNmY1OC05OTBhLTQ3YjItODI0NS1lMDNkOThkOWEyZGYiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfYXV0aF9wYXkiLCJpYXQiOjE3NjI3NzcxMTMsImV4cCI6MTc2NTM2OTExM30.doywp3Ab4WYeWNPCGgpxudMGOrXL7BRC_i0xsLFfmyo","username":"temp_user_for_auth_pay"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:33.469331543Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777113 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"temp_user_for_auth_pay\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-189.yaml b/user_service/keploy/atg/tests/test-189.yaml new file mode 100755 index 0000000..42366b1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-189.yaml @@ -0,0 +1,48 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-189 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/00000000-0000-0000-0000-000000000000/pay + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:34.237879303Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:34.239032643Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777114 +curl: | + curl --request POST \ + --url http://localhost:8082/api/v1/orders/00000000-0000-0000-0000-000000000000/pay \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-19.yaml b/user_service/keploy/atg/tests/test-19.yaml new file mode 100755 index 0000000..18c4b3b --- /dev/null +++ b/user_service/keploy/atg/tests/test-19.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-19 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:47.600560527Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODI3LCJleHAiOjE3NjUzNjg4Mjd9.OT-ZO05GbGXy6qvmSIaI8THhnvY54itNSCVeAVzH128","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:47.664637811Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776827 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-190.yaml b/user_service/keploy/atg/tests/test-190.yaml new file mode 100755 index 0000000..ade67ce --- /dev/null +++ b/user_service/keploy/atg/tests/test-190.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-190 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/595b6f58-990a-47b2-8245-e03d98d9a2df + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:34.975603962Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:34.995582403Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777114 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/595b6f58-990a-47b2-8245-e03d98d9a2df \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-191.yaml b/user_service/keploy/atg/tests/test-191.yaml new file mode 100755 index 0000000..d0141f7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-191.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-191 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "114" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_cancel", "email": "temp_user_for_auth_cancel@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:35.797761378Z + resp: + status_code: 201 + header: + Content-Length: "145" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_cancel@example.in","id":"54158f89-4d6f-4b9e-a7f1-10ac725e2da5","phone":null,"username":"temp_user_for_auth_cancel"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:35.867443548Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777115 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"temp_user_for_auth_cancel\", \"email\": \"temp_user_for_auth_cancel@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-192.yaml b/user_service/keploy/atg/tests/test-192.yaml new file mode 100755 index 0000000..ad589db --- /dev/null +++ b/user_service/keploy/atg/tests/test-192.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-192 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "65" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_auth_cancel", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:36.558463566Z + resp: + status_code: 200 + header: + Content-Length: "383" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_auth_cancel@example.in","id":"54158f89-4d6f-4b9e-a7f1-10ac725e2da5","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1NDE1OGY4OS00ZDZmLTRiOWUtYTdmMS0xMGFjNzI1ZTJkYTUiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfYXV0aF9jYW5jZWwiLCJpYXQiOjE3NjI3NzcxMTYsImV4cCI6MTc2NTM2OTExNn0.mq-d5GhUDneBlLIfM2aovJ63vITPCSHoJShdB3FY1sw","username":"temp_user_for_auth_cancel"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:36.616938311Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777116 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"temp_user_for_auth_cancel\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-193.yaml b/user_service/keploy/atg/tests/test-193.yaml new file mode 100755 index 0000000..f22151f --- /dev/null +++ b/user_service/keploy/atg/tests/test-193.yaml @@ -0,0 +1,48 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-193 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/00000000-0000-0000-0000-000000000000/cancel + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:37.384807296Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:37.386035017Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777117 +curl: | + curl --request POST \ + --url http://localhost:8082/api/v1/orders/00000000-0000-0000-0000-000000000000/cancel \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-194.yaml b/user_service/keploy/atg/tests/test-194.yaml new file mode 100755 index 0000000..48639fe --- /dev/null +++ b/user_service/keploy/atg/tests/test-194.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-194 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/54158f89-4d6f-4b9e-a7f1-10ac725e2da5 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:38.119047598Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:38.140626836Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777118 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/54158f89-4d6f-4b9e-a7f1-10ac725e2da5 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-195.yaml b/user_service/keploy/atg/tests/test-195.yaml new file mode 100755 index 0000000..d940133 --- /dev/null +++ b/user_service/keploy/atg/tests/test-195.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-195 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "59" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"email": "missinguser@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:38.949572276Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:38.950873024Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777118 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"email\": \"missinguser@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-196.yaml b/user_service/keploy/atg/tests/test-196.yaml new file mode 100755 index 0000000..a967743 --- /dev/null +++ b/user_service/keploy/atg/tests/test-196.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-196 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "62" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "missingpass", "email": "missingpass@example.in"}' + timestamp: 2025-11-10T12:18:39.781302833Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:39.782585222Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777119 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"missingpass\", \"email\": \"missingpass@example.in\"}" diff --git a/user_service/keploy/atg/tests/test-197.yaml b/user_service/keploy/atg/tests/test-197.yaml new file mode 100755 index 0000000..3ce8188 --- /dev/null +++ b/user_service/keploy/atg/tests/test-197.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-197 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "missingemail", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:40.576698618Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:40 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:40.578050206Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777120 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"missingemail\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-198.yaml b/user_service/keploy/atg/tests/test-198.yaml new file mode 100755 index 0000000..efa01ee --- /dev/null +++ b/user_service/keploy/atg/tests/test-198.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-198 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "noauth_addr_user", "email": "noauth_addr_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:41.36769923Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:41 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"noauth_addr_user@example.in","id":"3aa6b50d-82a0-45d8-b37c-d82fa83742fb","phone":null,"username":"noauth_addr_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:41.43617456Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777121 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"noauth_addr_user\", \"email\": \"noauth_addr_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-199.yaml b/user_service/keploy/atg/tests/test-199.yaml new file mode 100755 index 0000000..d09da1b --- /dev/null +++ b/user_service/keploy/atg/tests/test-199.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-199 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/3aa6b50d-82a0-45d8-b37c-d82fa83742fb/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "155" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 MG Road", "city": "Bengaluru", "state": "Karnataka", "postal_code": "560001", "country": "IN", "phone": "+919876543210", "is_default": true}' + timestamp: 2025-11-10T12:18:42.216054267Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"8cd8a687-17ae-433c-9822-068378f0076f"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:42.237955652Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777122 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/3aa6b50d-82a0-45d8-b37c-d82fa83742fb/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"123 MG Road\", \"city\": \"Bengaluru\", \"state\": \"Karnataka\", \"postal_code\": \"560001\", \"country\": \"IN\", \"phone\": \"+919876543210\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-2.yaml b/user_service/keploy/atg/tests/test-2.yaml new file mode 100755 index 0000000..2494cb3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-2.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-2 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Content-Length: "118" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "priya_sharma_{{$randomInt}}", "email": "priya.sharma.{{$randomInt}}@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:11:09.67247478Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:11:09 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:11:09.673743448Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776669 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"priya_sharma_{{$randomInt}}\", \"email\": \"priya.sharma.{{$randomInt}}@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-20.yaml b/user_service/keploy/atg/tests/test-20.yaml new file mode 100755 index 0000000..42ec217 --- /dev/null +++ b/user_service/keploy/atg/tests/test-20.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-20 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/99999999-9999-9999-9999-999999999999 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:13:48.487458499Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:48.488871526Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776828 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/99999999-9999-9999-9999-999999999999 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ diff --git a/user_service/keploy/atg/tests/test-200.yaml b/user_service/keploy/atg/tests/test-200.yaml new file mode 100755 index 0000000..9bc9268 --- /dev/null +++ b/user_service/keploy/atg/tests/test-200.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-200 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "noauth_addr_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:42.945251954Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"noauth_addr_user@example.in","id":"3aa6b50d-82a0-45d8-b37c-d82fa83742fb","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIzYWE2YjUwZC04MmEwLTQ1ZDgtYjM3Yy1kODJmYTgzNzQyZmIiLCJ1c2VybmFtZSI6Im5vYXV0aF9hZGRyX3VzZXIiLCJpYXQiOjE3NjI3NzcxMjMsImV4cCI6MTc2NTM2OTEyM30.2D3v9vrEEChLsmyk7S7PfSDd-Ore2EUd8mEXPjakrLg","username":"noauth_addr_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:43.004571842Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777123 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"noauth_addr_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-201.yaml b/user_service/keploy/atg/tests/test-201.yaml new file mode 100755 index 0000000..eb9f4c4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-201.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-201 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/3aa6b50d-82a0-45d8-b37c-d82fa83742fb + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:43.686511429Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:43.714844859Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777123 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/3aa6b50d-82a0-45d8-b37c-d82fa83742fb \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-202.yaml b/user_service/keploy/atg/tests/test-202.yaml new file mode 100755 index 0000000..d6023db --- /dev/null +++ b/user_service/keploy/atg/tests/test-202.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-202 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "noauth_list_addr", "email": "noauth_list_addr@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:45.609567322Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"noauth_list_addr@example.in","id":"e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6","phone":null,"username":"noauth_list_addr"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:45.682393865Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777125 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"noauth_list_addr\", \"email\": \"noauth_list_addr@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-203.yaml b/user_service/keploy/atg/tests/test-203.yaml new file mode 100755 index 0000000..b1844fe --- /dev/null +++ b/user_service/keploy/atg/tests/test-203.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-203 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:46.408836856Z + resp: + status_code: 200 + header: + Content-Length: "3" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:46 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + [] + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:46.419753105Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777126 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-204.yaml b/user_service/keploy/atg/tests/test-204.yaml new file mode 100755 index 0000000..15ede72 --- /dev/null +++ b/user_service/keploy/atg/tests/test-204.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-204 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "noauth_list_addr", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:18:47.143671178Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"noauth_list_addr@example.in","id":"e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJlMDRhODJlMi04NTM0LTRiYTgtOGFhZi03OGU1M2YyYzZmYzYiLCJ1c2VybmFtZSI6Im5vYXV0aF9saXN0X2FkZHIiLCJpYXQiOjE3NjI3NzcxMjcsImV4cCI6MTc2NTM2OTEyN30.QV_CHN9fG6sbC69ejswDViUZHgtqQpGEsYDiVRMpWyw","username":"noauth_list_addr"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:47.206327168Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777127 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"noauth_list_addr\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-205.yaml b/user_service/keploy/atg/tests/test-205.yaml new file mode 100755 index 0000000..ecc01a4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-205.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-205 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:47.970128824Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:18:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:47.991927689Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777127 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/e04a82e2-8534-4ba8-8aaf-78e53f2c6fc6 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-206.yaml b/user_service/keploy/atg/tests/test-206.yaml new file mode 100755 index 0000000..f551302 --- /dev/null +++ b/user_service/keploy/atg/tests/test-206.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-206 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:49.963794045Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:49 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:49.964943294Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777129 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-207.yaml b/user_service/keploy/atg/tests/test-207.yaml new file mode 100755 index 0000000..e27c039 --- /dev/null +++ b/user_service/keploy/atg/tests/test-207.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-207 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/some-product-id + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:51.926534319Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:51.928078195Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777131 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products/some-product-id \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-208.yaml b/user_service/keploy/atg/tests/test-208.yaml new file mode 100755 index 0000000..829a7c3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-208.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-208 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/some-product-id/reserve + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:18:53.934472263Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:53.935746172Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777133 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/some-product-id/reserve \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-209.yaml b/user_service/keploy/atg/tests/test-209.yaml new file mode 100755 index 0000000..42ef789 --- /dev/null +++ b/user_service/keploy/atg/tests/test-209.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-209 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/some-product-id/release + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:18:55.802450193Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:55 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:55.803685183Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777135 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/some-product-id/release \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-21.yaml b/user_service/keploy/atg/tests/test-21.yaml new file mode 100755 index 0000000..d5eafb6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-21.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-21 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:50.206463359Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:50 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODMwLCJleHAiOjE3NjUzNjg4MzB9.cTGZgbzuwkgZjJ0mvymGSyztmBd0ciQLtMJkv3v4hPM","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:50.266720427Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776830 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-210.yaml b/user_service/keploy/atg/tests/test-210.yaml new file mode 100755 index 0000000..62bad39 --- /dev/null +++ b/user_service/keploy/atg/tests/test-210.yaml @@ -0,0 +1,53 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-210 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + Idempotency-Key: '{{$guid}}' + User-Agent: Go-http-client/1.1 + body: '{"userId": "some-user-id", "items": [ { "productId": "some-product-id", "quantity": 1 } ]}' + timestamp: 2025-11-10T12:18:57.78580305Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:57.78705993Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777137 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/orders \ + --header 'Idempotency-Key: {{$guid}}' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"userId\": \"some-user-id\", \"items\": [ { \"productId\": \"some-product-id\", \"quantity\": 1 } ]}" diff --git a/user_service/keploy/atg/tests/test-211.yaml b/user_service/keploy/atg/tests/test-211.yaml new file mode 100755 index 0000000..4d5e994 --- /dev/null +++ b/user_service/keploy/atg/tests/test-211.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-211 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders?userId=some-user-id + url_params: + userId: some-user-id + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:18:59.679073912Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:18:59 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:18:59.680194312Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777139 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/orders?userId=some-user-id \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-212.yaml b/user_service/keploy/atg/tests/test-212.yaml new file mode 100755 index 0000000..6ca4e1b --- /dev/null +++ b/user_service/keploy/atg/tests/test-212.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-212 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/some-order-id + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:01.602200164Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:01.603521112Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777141 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/orders/some-order-id \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-213.yaml b/user_service/keploy/atg/tests/test-213.yaml new file mode 100755 index 0000000..d352028 --- /dev/null +++ b/user_service/keploy/atg/tests/test-213.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-213 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/some-order-id/details + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:03.856054791Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:03.85739103Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777143 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/orders/some-order-id/details \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-214.yaml b/user_service/keploy/atg/tests/test-214.yaml new file mode 100755 index 0000000..87f3bfc --- /dev/null +++ b/user_service/keploy/atg/tests/test-214.yaml @@ -0,0 +1,48 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-214 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/some-order-id/pay + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:05.888591313Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:05.889751293Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777145 +curl: | + curl --request POST \ + --url http://localhost:8082/api/v1/orders/some-order-id/pay \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-215.yaml b/user_service/keploy/atg/tests/test-215.yaml new file mode 100755 index 0000000..eb35ffa --- /dev/null +++ b/user_service/keploy/atg/tests/test-215.yaml @@ -0,0 +1,48 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-215 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/some-order-id/cancel + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:07.99765419Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:07.998727911Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777147 +curl: | + curl --request POST \ + --url http://localhost:8082/api/v1/orders/some-order-id/cancel \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-216.yaml b/user_service/keploy/atg/tests/test-216.yaml new file mode 100755 index 0000000..3d7d60c --- /dev/null +++ b/user_service/keploy/atg/tests/test-216.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-216 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rahul_mumbai", "email": "rahul_mumbai@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:09.88073066Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:09 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"rahul_mumbai@example.in","id":"3363bd32-cba3-4bb9-b6b9-3257a46415fa","phone":null,"username":"rahul_mumbai"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:09.954702404Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777149 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"rahul_mumbai\", \"email\": \"rahul_mumbai@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-217.yaml b/user_service/keploy/atg/tests/test-217.yaml new file mode 100755 index 0000000..74003e1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-217.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-217 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rahul_mumbai", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:10.634083864Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:10 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"rahul_mumbai@example.in","id":"3363bd32-cba3-4bb9-b6b9-3257a46415fa","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIzMzYzYmQzMi1jYmEzLTRiYjktYjZiOS0zMjU3YTQ2NDE1ZmEiLCJ1c2VybmFtZSI6InJhaHVsX211bWJhaSIsImlhdCI6MTc2Mjc3NzE1MCwiZXhwIjoxNzY1MzY5MTUwfQ.svoqj5Y-CxQjizUcNJbIZ1Wch0jdoeqiEfMWeVwLC5Q","username":"rahul_mumbai"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:10.694872541Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777150 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"rahul_mumbai\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-218.yaml b/user_service/keploy/atg/tests/test-218.yaml new file mode 100755 index 0000000..76e8319 --- /dev/null +++ b/user_service/keploy/atg/tests/test-218.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-218 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/3363bd32-cba3-4bb9-b6b9-3257a46415fa/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "158" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "101 Bandra West", "city": "Mumbai", "state": "Maharashtra", "postal_code": "400050", "country": "IN", "phone": "+919820098200", "is_default": true}' + timestamp: 2025-11-10T12:19:11.454380364Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"b1a0dd95-5f84-435b-a6ee-59dfe1aa6155"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:11.479018416Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777151 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/3363bd32-cba3-4bb9-b6b9-3257a46415fa/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"101 Bandra West\", \"city\": \"Mumbai\", \"state\": \"Maharashtra\", \"postal_code\": \"400050\", \"country\": \"IN\", \"phone\": \"+919820098200\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-219.yaml b/user_service/keploy/atg/tests/test-219.yaml new file mode 100755 index 0000000..eda82c5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-219.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-219 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/3363bd32-cba3-4bb9-b6b9-3257a46415fa/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:12.202344085Z + resp: + status_code: 200 + header: + Content-Length: "202" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + [{"city":"Mumbai","country":"IN","id":"b1a0dd95-5f84-435b-a6ee-59dfe1aa6155","is_default":1,"line1":"101 Bandra West","line2":null,"phone":"+919820098200","postal_code":"400050","state":"Maharashtra"}] + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:12.213754039Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777152 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/3363bd32-cba3-4bb9-b6b9-3257a46415fa/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-22.yaml b/user_service/keploy/atg/tests/test-22.yaml new file mode 100755 index 0000000..5704207 --- /dev/null +++ b/user_service/keploy/atg/tests/test-22.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-22 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/99999999-9999-9999-9999-999999999999 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:13:51.094247716Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:51.095481755Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776831 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/99999999-9999-9999-9999-999999999999 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-220.yaml b/user_service/keploy/atg/tests/test-220.yaml new file mode 100755 index 0000000..a9aeac1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-220.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-220 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/3363bd32-cba3-4bb9-b6b9-3257a46415fa + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:13.027989551Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:13.053489006Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777153 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/3363bd32-cba3-4bb9-b6b9-3257a46415fa \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-221.yaml b/user_service/keploy/atg/tests/test-221.yaml new file mode 100755 index 0000000..1c0053e --- /dev/null +++ b/user_service/keploy/atg/tests/test-221.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-221 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sneha_delhi", "email": "sneha_delhi@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:15.211424789Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"sneha_delhi@example.in","id":"5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a","phone":null,"username":"sneha_delhi"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:15.28358329Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777155 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"sneha_delhi\", \"email\": \"sneha_delhi@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-222.yaml b/user_service/keploy/atg/tests/test-222.yaml new file mode 100755 index 0000000..eeb4c53 --- /dev/null +++ b/user_service/keploy/atg/tests/test-222.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-222 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sneha_delhi", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:16.157091833Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"sneha_delhi@example.in","id":"5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1YTJjYmFiNS00OTFhLTRkZmUtOWUzYy1jYjUzODdlOGE5M2EiLCJ1c2VybmFtZSI6InNuZWhhX2RlbGhpIiwiaWF0IjoxNzYyNzc3MTU2LCJleHAiOjE3NjUzNjkxNTZ9.RuILZRWbkWhbihXaYXxZ7CPEeuiQ1ngM7u4WLOtxcY0","username":"sneha_delhi"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:16.216285623Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777156 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"sneha_delhi\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-223.yaml b/user_service/keploy/atg/tests/test-223.yaml new file mode 100755 index 0000000..8496c12 --- /dev/null +++ b/user_service/keploy/atg/tests/test-223.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-223 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "161" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "25 Hauz Khas Village", "city": "New Delhi", "state": "Delhi", "postal_code": "110016", "country": "IN", "phone": "+919810098100", "is_default": false}' + timestamp: 2025-11-10T12:19:16.933289527Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"223a9700-5da2-454b-a432-8de30c59cf5d"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:16.957326085Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777156 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"line1\": \"25 Hauz Khas Village\", \"city\": \"New Delhi\", \"state\": \"Delhi\", \"postal_code\": \"110016\", \"country\": \"IN\", \"phone\": \"+919810098100\", \"is_default\": false}" diff --git a/user_service/keploy/atg/tests/test-224.yaml b/user_service/keploy/atg/tests/test-224.yaml new file mode 100755 index 0000000..50c3a4c --- /dev/null +++ b/user_service/keploy/atg/tests/test-224.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-224 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:17.736954252Z + resp: + status_code: 200 + header: + Content-Length: "204" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + [{"city":"New Delhi","country":"IN","id":"223a9700-5da2-454b-a432-8de30c59cf5d","is_default":0,"line1":"25 Hauz Khas Village","line2":null,"phone":"+919810098100","postal_code":"110016","state":"Delhi"}] + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:17.751984315Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777157 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-225.yaml b/user_service/keploy/atg/tests/test-225.yaml new file mode 100755 index 0000000..bde65e0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-225.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-225 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:18.494121099Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:18 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:18.518119125Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777158 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/5a2cbab5-491a-4dfe-9e3c-cb5387e8a93a \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-226.yaml b/user_service/keploy/atg/tests/test-226.yaml new file mode 100755 index 0000000..9ce4d54 --- /dev/null +++ b/user_service/keploy/atg/tests/test-226.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-226 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bad_prod_user", "email": "bad_prod_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:20.38789479Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bad_prod_user@example.in","id":"80b19253-5d7a-4d05-9036-bff647acbaaa","phone":null,"username":"bad_prod_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:20.460716084Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777160 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"bad_prod_user\", \"email\": \"bad_prod_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-227.yaml b/user_service/keploy/atg/tests/test-227.yaml new file mode 100755 index 0000000..157b8db --- /dev/null +++ b/user_service/keploy/atg/tests/test-227.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-227 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bad_prod_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:21.134196698Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bad_prod_user@example.in","id":"80b19253-5d7a-4d05-9036-bff647acbaaa","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4MGIxOTI1My01ZDdhLTRkMDUtOTAzNi1iZmY2NDdhY2JhYWEiLCJ1c2VybmFtZSI6ImJhZF9wcm9kX3VzZXIiLCJpYXQiOjE3NjI3NzcxNjEsImV4cCI6MTc2NTM2OTE2MX0.TgpWx5zWO7bYn674LIxiZSBgV1NBnqKbcjJsEUYnz5M","username":"bad_prod_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:21.196229574Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777161 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"bad_prod_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-228.yaml b/user_service/keploy/atg/tests/test-228.yaml new file mode 100755 index 0000000..d72d1f1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-228.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-228 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/80b19253-5d7a-4d05-9036-bff647acbaaa/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "159" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 Sector 17", "city": "Chandigarh", "state": "Chandigarh", "postal_code": "160017", "country": "IN", "phone": "+919876512345", "is_default": true}' + timestamp: 2025-11-10T12:19:21.934303444Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"9b315486-d4a1-4e7f-a2b0-9dd8736af86c"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:21.961395415Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777161 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/80b19253-5d7a-4d05-9036-bff647acbaaa/addresses \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"line1\": \"123 Sector 17\", \"city\": \"Chandigarh\", \"state\": \"Chandigarh\", \"postal_code\": \"160017\", \"country\": \"IN\", \"phone\": \"+919876512345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-229.yaml b/user_service/keploy/atg/tests/test-229.yaml new file mode 100755 index 0000000..bc7dbc3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-229.yaml @@ -0,0 +1,53 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-229 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "183" + Content-Type: application/json + Host: localhost:8082 + Idempotency-Key: '{{$guid}}' + User-Agent: Go-http-client/1.1 + body: '{"userId": "80b19253-5d7a-4d05-9036-bff647acbaaa", "items": [ { "productId": "non-existent-product-id", "quantity": 1 } ], "shippingAddressId": "9b315486-d4a1-4e7f-a2b0-9dd8736af86c"}' + timestamp: 2025-11-10T12:19:22.681537566Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:22.682805515Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777162 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/orders \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'Idempotency-Key: {{$guid}}' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"userId\": \"80b19253-5d7a-4d05-9036-bff647acbaaa\", \"items\": [ { \"productId\": \"non-existent-product-id\", \"quantity\": 1 } ], \"shippingAddressId\": \"9b315486-d4a1-4e7f-a2b0-9dd8736af86c\"}" diff --git a/user_service/keploy/atg/tests/test-23.yaml b/user_service/keploy/atg/tests/test-23.yaml new file mode 100755 index 0000000..ef598f5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-23.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-23 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:52.851722817Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODMyLCJleHAiOjE3NjUzNjg4MzJ9.Wy81AUf9LdhynGhAKJZCwyc6GjT1whNwpkXQuFXBksc","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:52.911376031Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776832 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-230.yaml b/user_service/keploy/atg/tests/test-230.yaml new file mode 100755 index 0000000..1d81564 --- /dev/null +++ b/user_service/keploy/atg/tests/test-230.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-230 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/80b19253-5d7a-4d05-9036-bff647acbaaa + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:23.515341558Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:23.542899825Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777163 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/80b19253-5d7a-4d05-9036-bff647acbaaa \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-231.yaml b/user_service/keploy/atg/tests/test-231.yaml new file mode 100755 index 0000000..b5b4c8e --- /dev/null +++ b/user_service/keploy/atg/tests/test-231.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-231 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "zero_quant_user", "email": "zero_quant_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:25.944699933Z + resp: + status_code: 201 + header: + Content-Length: "125" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"zero_quant_user@example.in","id":"d2e41f94-240a-471b-a0fb-78c3380c60c2","phone":null,"username":"zero_quant_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:26.016654576Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777166 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"zero_quant_user\", \"email\": \"zero_quant_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-232.yaml b/user_service/keploy/atg/tests/test-232.yaml new file mode 100755 index 0000000..375463d --- /dev/null +++ b/user_service/keploy/atg/tests/test-232.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-232 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "zero_quant_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:26.876556119Z + resp: + status_code: 200 + header: + Content-Length: "350" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"zero_quant_user@example.in","id":"d2e41f94-240a-471b-a0fb-78c3380c60c2","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJkMmU0MWY5NC0yNDBhLTQ3MWItYTBmYi03OGMzMzgwYzYwYzIiLCJ1c2VybmFtZSI6Inplcm9fcXVhbnRfdXNlciIsImlhdCI6MTc2Mjc3NzE2NiwiZXhwIjoxNzY1MzY5MTY2fQ.gYXZOQo5Cy82wXqfSLm1vclrZS8aIhfoQFKr3m7BDps","username":"zero_quant_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:26.936298405Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777166 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"zero_quant_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-233.yaml b/user_service/keploy/atg/tests/test-233.yaml new file mode 100755 index 0000000..f81b2ff --- /dev/null +++ b/user_service/keploy/atg/tests/test-233.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-233 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/d2e41f94-240a-471b-a0fb-78c3380c60c2/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "156" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "45 Ashram Road", "city": "Ahmedabad", "state": "Gujarat", "postal_code": "380009", "country": "IN", "phone": "+919988776655", "is_default": true}' + timestamp: 2025-11-10T12:19:27.699870002Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"16862c52-8fa2-4677-81ba-cc26143ddddc"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:27.72734391Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777167 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/d2e41f94-240a-471b-a0fb-78c3380c60c2/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"45 Ashram Road\", \"city\": \"Ahmedabad\", \"state\": \"Gujarat\", \"postal_code\": \"380009\", \"country\": \"IN\", \"phone\": \"+919988776655\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-234.yaml b/user_service/keploy/atg/tests/test-234.yaml new file mode 100755 index 0000000..9ba5187 --- /dev/null +++ b/user_service/keploy/atg/tests/test-234.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-234 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:28.446832178Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:28 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:28.448324346Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777168 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-235.yaml b/user_service/keploy/atg/tests/test-235.yaml new file mode 100755 index 0000000..0205fce --- /dev/null +++ b/user_service/keploy/atg/tests/test-235.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-235 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/d2e41f94-240a-471b-a0fb-78c3380c60c2 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:29.268740823Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:29.292054907Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777169 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/d2e41f94-240a-471b-a0fb-78c3380c60c2 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-236.yaml b/user_service/keploy/atg/tests/test-236.yaml new file mode 100755 index 0000000..139302b --- /dev/null +++ b/user_service/keploy/atg/tests/test-236.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-236 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_items_user", "email": "no_items_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:31.648236327Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"no_items_user@example.in","id":"c6906a40-98ca-4161-9d35-da12bc129a7f","phone":null,"username":"no_items_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:31.718547564Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777171 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"no_items_user\", \"email\": \"no_items_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-237.yaml b/user_service/keploy/atg/tests/test-237.yaml new file mode 100755 index 0000000..2690fdf --- /dev/null +++ b/user_service/keploy/atg/tests/test-237.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-237 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_items_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:32.424288609Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"no_items_user@example.in","id":"c6906a40-98ca-4161-9d35-da12bc129a7f","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjNjkwNmE0MC05OGNhLTQxNjEtOWQzNS1kYTEyYmMxMjlhN2YiLCJ1c2VybmFtZSI6Im5vX2l0ZW1zX3VzZXIiLCJpYXQiOjE3NjI3NzcxNzIsImV4cCI6MTc2NTM2OTE3Mn0.0nMexZrGDqF7cUzFetSOAcqvSlQnjnMlUoqcb5DJAC8","username":"no_items_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:32.482945595Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777172 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"no_items_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-238.yaml b/user_service/keploy/atg/tests/test-238.yaml new file mode 100755 index 0000000..a2bcb24 --- /dev/null +++ b/user_service/keploy/atg/tests/test-238.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-238 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c6906a40-98ca-4161-9d35-da12bc129a7f/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "151" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "67 MI Road", "city": "Jaipur", "state": "Rajasthan", "postal_code": "302001", "country": "IN", "phone": "+919829012345", "is_default": true}' + timestamp: 2025-11-10T12:19:33.170921652Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"4fa7bac9-4929-4b7c-9809-47681ee46b29"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:33.195206476Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777173 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/c6906a40-98ca-4161-9d35-da12bc129a7f/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"line1\": \"67 MI Road\", \"city\": \"Jaipur\", \"state\": \"Rajasthan\", \"postal_code\": \"302001\", \"country\": \"IN\", \"phone\": \"+919829012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-239.yaml b/user_service/keploy/atg/tests/test-239.yaml new file mode 100755 index 0000000..f366596 --- /dev/null +++ b/user_service/keploy/atg/tests/test-239.yaml @@ -0,0 +1,53 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-239 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "124" + Content-Type: application/json + Host: localhost:8082 + Idempotency-Key: '{{$guid}}' + User-Agent: Go-http-client/1.1 + body: '{"userId": "c6906a40-98ca-4161-9d35-da12bc129a7f", "items": [], "shippingAddressId": "4fa7bac9-4929-4b7c-9809-47681ee46b29"}' + timestamp: 2025-11-10T12:19:33.984734676Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:33.985896317Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777173 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/orders \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'Idempotency-Key: {{$guid}}' \ + --data "{\"userId\": \"c6906a40-98ca-4161-9d35-da12bc129a7f\", \"items\": [], \"shippingAddressId\": \"4fa7bac9-4929-4b7c-9809-47681ee46b29\"}" diff --git a/user_service/keploy/atg/tests/test-24.yaml b/user_service/keploy/atg/tests/test-24.yaml new file mode 100755 index 0000000..202a098 --- /dev/null +++ b/user_service/keploy/atg/tests/test-24.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-24 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vikram_addr_01", "email": "vikram.addr.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:53.731313123Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:53.732576551Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776833 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"vikram_addr_01\", \"email\": \"vikram.addr.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-240.yaml b/user_service/keploy/atg/tests/test-240.yaml new file mode 100755 index 0000000..eb72064 --- /dev/null +++ b/user_service/keploy/atg/tests/test-240.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-240 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c6906a40-98ca-4161-9d35-da12bc129a7f + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:34.733278022Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:34.756766844Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777174 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/c6906a40-98ca-4161-9d35-da12bc129a7f \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-241.yaml b/user_service/keploy/atg/tests/test-241.yaml new file mode 100755 index 0000000..38bb59a --- /dev/null +++ b/user_service/keploy/atg/tests/test-241.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-241 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "pay_twice_user", "email": "pay_twice_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:36.770608459Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"pay_twice_user@example.in","id":"05b4f265-384a-4be5-b72f-b3281743867c","phone":null,"username":"pay_twice_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:36.838330347Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777176 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"pay_twice_user\", \"email\": \"pay_twice_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-242.yaml b/user_service/keploy/atg/tests/test-242.yaml new file mode 100755 index 0000000..fc427e3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-242.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-242 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "pay_twice_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:37.656956573Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"pay_twice_user@example.in","id":"05b4f265-384a-4be5-b72f-b3281743867c","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwNWI0ZjI2NS0zODRhLTRiZTUtYjcyZi1iMzI4MTc0Mzg2N2MiLCJ1c2VybmFtZSI6InBheV90d2ljZV91c2VyIiwiaWF0IjoxNzYyNzc3MTc3LCJleHAiOjE3NjUzNjkxNzd9.EBId_nT1TYH39hktG-NHtERA0BmqNL3KyVHH7CJkB8w","username":"pay_twice_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:37.718699233Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777177 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"pay_twice_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-243.yaml b/user_service/keploy/atg/tests/test-243.yaml new file mode 100755 index 0000000..b69f911 --- /dev/null +++ b/user_service/keploy/atg/tests/test-243.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-243 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/05b4f265-384a-4be5-b72f-b3281743867c/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "158" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "8 Hazratganj", "city": "Lucknow", "state": "Uttar Pradesh", "postal_code": "226001", "country": "IN", "phone": "+919415012345", "is_default": true}' + timestamp: 2025-11-10T12:19:38.41627298Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"a0789c4d-45b2-486a-86ea-ae6f06226459"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:38.438920229Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777178 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/05b4f265-384a-4be5-b72f-b3281743867c/addresses \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"line1\": \"8 Hazratganj\", \"city\": \"Lucknow\", \"state\": \"Uttar Pradesh\", \"postal_code\": \"226001\", \"country\": \"IN\", \"phone\": \"+919415012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-244.yaml b/user_service/keploy/atg/tests/test-244.yaml new file mode 100755 index 0000000..579f7f2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-244.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-244 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:39.289436896Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:39.290571426Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777179 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-245.yaml b/user_service/keploy/atg/tests/test-245.yaml new file mode 100755 index 0000000..6655033 --- /dev/null +++ b/user_service/keploy/atg/tests/test-245.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-245 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/05b4f265-384a-4be5-b72f-b3281743867c + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:40.009036878Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:40 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:40.0289607Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777180 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/05b4f265-384a-4be5-b72f-b3281743867c \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-246.yaml b/user_service/keploy/atg/tests/test-246.yaml new file mode 100755 index 0000000..26bdc86 --- /dev/null +++ b/user_service/keploy/atg/tests/test-246.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-246 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bad_addr_user", "email": "bad_addr_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:43.226321753Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bad_addr_user@example.in","id":"c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a","phone":null,"username":"bad_addr_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:43.297914829Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777183 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"bad_addr_user\", \"email\": \"bad_addr_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-247.yaml b/user_service/keploy/atg/tests/test-247.yaml new file mode 100755 index 0000000..3e61e03 --- /dev/null +++ b/user_service/keploy/atg/tests/test-247.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-247 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bad_addr_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:44.037243125Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:44 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bad_addr_user@example.in","id":"c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjMmZmMWNmNi0yYWE5LTQ0NmItYmI3YS01OTQ0ZWQ3YmYxNmEiLCJ1c2VybmFtZSI6ImJhZF9hZGRyX3VzZXIiLCJpYXQiOjE3NjI3NzcxODQsImV4cCI6MTc2NTM2OTE4NH0.UbFvpLQWobnB1SRzocrfJGtpfZZ2EU1Lfz_p6hyDx4Y","username":"bad_addr_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:44.098204491Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777184 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"bad_addr_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-248.yaml b/user_service/keploy/atg/tests/test-248.yaml new file mode 100755 index 0000000..a965947 --- /dev/null +++ b/user_service/keploy/atg/tests/test-248.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-248 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "49" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 Some Street", "city": "Some City"}' + timestamp: 2025-11-10T12:19:44.786088453Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:44 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:44.787406902Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777184 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a/addresses \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"line1\": \"123 Some Street\", \"city\": \"Some City\"}" diff --git a/user_service/keploy/atg/tests/test-249.yaml b/user_service/keploy/atg/tests/test-249.yaml new file mode 100755 index 0000000..46fc71d --- /dev/null +++ b/user_service/keploy/atg/tests/test-249.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-249 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:45.544543219Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:45.569054393Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777185 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/c2ff1cf6-2aa9-446b-bb7a-5944ed7bf16a \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-25.yaml b/user_service/keploy/atg/tests/test-25.yaml new file mode 100755 index 0000000..f3ea21a --- /dev/null +++ b/user_service/keploy/atg/tests/test-25.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-25 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:56.210383555Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:56 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODM2LCJleHAiOjE3NjUzNjg4MzZ9.vXL-B5iPPnoyNRTOTB6gPLfqhc7NCJwlf3uPjqCaEx4","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:56.270579254Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776836 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-250.yaml b/user_service/keploy/atg/tests/test-250.yaml new file mode 100755 index 0000000..f4f3faa --- /dev/null +++ b/user_service/keploy/atg/tests/test-250.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-250 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "100" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_prod", "email": "temp_user_for_prod@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:46.35960993Z + resp: + status_code: 201 + header: + Content-Length: "131" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:46 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_prod@example.in","id":"0381a46c-7bc7-4054-b914-322bb96c2cbf","phone":null,"username":"temp_user_for_prod"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:46.437465004Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777186 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"temp_user_for_prod\", \"email\": \"temp_user_for_prod@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-251.yaml b/user_service/keploy/atg/tests/test-251.yaml new file mode 100755 index 0000000..ae50fb8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-251.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-251 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "58" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_prod", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:47.113364046Z + resp: + status_code: 200 + header: + Content-Length: "360" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_prod@example.in","id":"0381a46c-7bc7-4054-b914-322bb96c2cbf","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwMzgxYTQ2Yy03YmM3LTQwNTQtYjkxNC0zMjJiYjk2YzJjYmYiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfcHJvZCIsImlhdCI6MTc2Mjc3NzE4NywiZXhwIjoxNzY1MzY5MTg3fQ.qaEatLtaz2IH893NdOuujOFMZDQqHLN1aTLtS8dgZHI","username":"temp_user_for_prod"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:47.172867014Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777187 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"temp_user_for_prod\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-252.yaml b/user_service/keploy/atg/tests/test-252.yaml new file mode 100755 index 0000000..4b6705f --- /dev/null +++ b/user_service/keploy/atg/tests/test-252.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-252 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/00000000-0000-0000-0000-000000000000 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:47.864287057Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:47.865538396Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777187 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products/00000000-0000-0000-0000-000000000000 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-253.yaml b/user_service/keploy/atg/tests/test-253.yaml new file mode 100755 index 0000000..9a048b8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-253.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-253 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/0381a46c-7bc7-4054-b914-322bb96c2cbf + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:48.672742563Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:48.697061897Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777188 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/0381a46c-7bc7-4054-b914-322bb96c2cbf \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-254.yaml b/user_service/keploy/atg/tests/test-254.yaml new file mode 100755 index 0000000..d178afb --- /dev/null +++ b/user_service/keploy/atg/tests/test-254.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-254 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_res", "email": "temp_user_for_res@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:49.511117426Z + resp: + status_code: 201 + header: + Content-Length: "129" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:49 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_res@example.in","id":"148553f6-5ee8-4cde-a1e7-f266507ce08e","phone":null,"username":"temp_user_for_res"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:49.585371151Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777189 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"temp_user_for_res\", \"email\": \"temp_user_for_res@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-255.yaml b/user_service/keploy/atg/tests/test-255.yaml new file mode 100755 index 0000000..964eb94 --- /dev/null +++ b/user_service/keploy/atg/tests/test-255.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-255 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_res", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:50.259256902Z + resp: + status_code: 200 + header: + Content-Length: "356" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:50 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_res@example.in","id":"148553f6-5ee8-4cde-a1e7-f266507ce08e","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNDg1NTNmNi01ZWU4LTRjZGUtYTFlNy1mMjY2NTA3Y2UwOGUiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfcmVzIiwiaWF0IjoxNzYyNzc3MTkwLCJleHAiOjE3NjUzNjkxOTB9.b-UVdUVwMxkoh4MIJRRKtVemhHx1ePuGhp0w3XsWx88","username":"temp_user_for_res"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:50.317331702Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777190 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"temp_user_for_res\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-256.yaml b/user_service/keploy/atg/tests/test-256.yaml new file mode 100755 index 0000000..a95df18 --- /dev/null +++ b/user_service/keploy/atg/tests/test-256.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-256 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/00000000-0000-0000-0000-000000000000/reserve + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:19:51.087647791Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:51.08899886Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777191 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/00000000-0000-0000-0000-000000000000/reserve \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-257.yaml b/user_service/keploy/atg/tests/test-257.yaml new file mode 100755 index 0000000..a86a412 --- /dev/null +++ b/user_service/keploy/atg/tests/test-257.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-257 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/148553f6-5ee8-4cde-a1e7-f266507ce08e + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:51.838118218Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:51.862708371Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777191 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/148553f6-5ee8-4cde-a1e7-f266507ce08e \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-258.yaml b/user_service/keploy/atg/tests/test-258.yaml new file mode 100755 index 0000000..3eab915 --- /dev/null +++ b/user_service/keploy/atg/tests/test-258.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-258 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_rel", "email": "temp_user_for_rel@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:52.648531209Z + resp: + status_code: 201 + header: + Content-Length: "129" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_rel@example.in","id":"042f99f1-0e36-466b-a245-da494416f551","phone":null,"username":"temp_user_for_rel"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:52.721842051Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777192 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"temp_user_for_rel\", \"email\": \"temp_user_for_rel@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-259.yaml b/user_service/keploy/atg/tests/test-259.yaml new file mode 100755 index 0000000..f76c1d7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-259.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-259 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_for_rel", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:53.429104123Z + resp: + status_code: 200 + header: + Content-Length: "356" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"temp_user_for_rel@example.in","id":"042f99f1-0e36-466b-a245-da494416f551","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwNDJmOTlmMS0wZTM2LTQ2NmItYTI0NS1kYTQ5NDQxNmY1NTEiLCJ1c2VybmFtZSI6InRlbXBfdXNlcl9mb3JfcmVsIiwiaWF0IjoxNzYyNzc3MTkzLCJleHAiOjE3NjUzNjkxOTN9.kbmH52KgFH4gWc1jNnOdGxYuwuYxK1a_VPJNbCvVPkc","username":"temp_user_for_rel"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:53.488559862Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777193 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"temp_user_for_rel\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-26.yaml b/user_service/keploy/atg/tests/test-26.yaml new file mode 100755 index 0000000..42846c9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-26.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-26 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "anjali_noaddr_01", "email": "anjali.noaddr.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:57.109438214Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:57.110704424Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776837 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"anjali_noaddr_01\", \"email\": \"anjali.noaddr.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-260.yaml b/user_service/keploy/atg/tests/test-260.yaml new file mode 100755 index 0000000..ce105ba --- /dev/null +++ b/user_service/keploy/atg/tests/test-260.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-260 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/00000000-0000-0000-0000-000000000000/release + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:19:54.171112061Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:19:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:54.172206372Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777194 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/00000000-0000-0000-0000-000000000000/release \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-261.yaml b/user_service/keploy/atg/tests/test-261.yaml new file mode 100755 index 0000000..c600e84 --- /dev/null +++ b/user_service/keploy/atg/tests/test-261.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-261 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/042f99f1-0e36-466b-a245-da494416f551 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:54.991946586Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:55 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:55.019094918Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777195 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/042f99f1-0e36-466b-a245-da494416f551 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-262.yaml b/user_service/keploy/atg/tests/test-262.yaml new file mode 100755 index 0000000..2eecec2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-262.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-262 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "2" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{}' + timestamp: 2025-11-10T12:19:55.819555604Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:55 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:55.820723263Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777195 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{}" diff --git a/user_service/keploy/atg/tests/test-263.yaml b/user_service/keploy/atg/tests/test-263.yaml new file mode 100755 index 0000000..1d726a9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-263.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-263 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "82" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "invalidemailuser", "email": "invalid-email", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:56.628815957Z + resp: + status_code: 400 + header: + Content-Length: "26" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:56 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"invalid email"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:56.630135445Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777196 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"invalidemailuser\", \"email\": \"invalid-email\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-264.yaml b/user_service/keploy/atg/tests/test-264.yaml new file mode 100755 index 0000000..86911cb --- /dev/null +++ b/user_service/keploy/atg/tests/test-264.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-264 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "kavita_pune", "email": "kavita_pune@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:57.400499617Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"kavita_pune@example.in","id":"254e2932-7422-46fb-81f5-9f9c3b854f14","phone":null,"username":"kavita_pune"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:57.479467542Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777197 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"kavita_pune\", \"email\": \"kavita_pune@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-265.yaml b/user_service/keploy/atg/tests/test-265.yaml new file mode 100755 index 0000000..447fd8f --- /dev/null +++ b/user_service/keploy/atg/tests/test-265.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-265 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "kavita_pune", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:19:58.365607437Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:58 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"kavita_pune@example.in","id":"254e2932-7422-46fb-81f5-9f9c3b854f14","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyNTRlMjkzMi03NDIyLTQ2ZmItODFmNS05ZjljM2I4NTRmMTQiLCJ1c2VybmFtZSI6Imthdml0YV9wdW5lIiwiaWF0IjoxNzYyNzc3MTk4LCJleHAiOjE3NjUzNjkxOTh9.rxnUZJBRbp1rmmU9LwTP6ZzC0vak1lpaJGzr3ZtM1vg","username":"kavita_pune"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:58.425561972Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777198 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"kavita_pune\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-266.yaml b/user_service/keploy/atg/tests/test-266.yaml new file mode 100755 index 0000000..1e96855 --- /dev/null +++ b/user_service/keploy/atg/tests/test-266.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-266 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/254e2932-7422-46fb-81f5-9f9c3b854f14/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "162" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Flat 5, Koregaon Park", "city": "Pune", "state": "Maharashtra", "postal_code": "411001", "country": "IN", "phone": "+919890098900", "is_default": true}' + timestamp: 2025-11-10T12:19:59.165457621Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:59 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"7804329b-59a5-4b0b-bc59-386a890cb09d"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:59.193263547Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777199 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/254e2932-7422-46fb-81f5-9f9c3b854f14/addresses \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"line1\": \"Flat 5, Koregaon Park\", \"city\": \"Pune\", \"state\": \"Maharashtra\", \"postal_code\": \"411001\", \"country\": \"IN\", \"phone\": \"+919890098900\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-267.yaml b/user_service/keploy/atg/tests/test-267.yaml new file mode 100755 index 0000000..306ea38 --- /dev/null +++ b/user_service/keploy/atg/tests/test-267.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-267 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/254e2932-7422-46fb-81f5-9f9c3b854f14 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:19:59.905076782Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:19:59 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:19:59.931007583Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777199 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/254e2932-7422-46fb-81f5-9f9c3b854f14 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-268.yaml b/user_service/keploy/atg/tests/test-268.yaml new file mode 100755 index 0000000..d0cf6cd --- /dev/null +++ b/user_service/keploy/atg/tests/test-268.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-268 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "amit_kolkata", "email": "amit_kolkata@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:01.937989292Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"amit_kolkata@example.in","id":"17dfef3d-5760-456f-a044-ca2226645b00","phone":null,"username":"amit_kolkata"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:02.015133371Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777202 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"amit_kolkata\", \"email\": \"amit_kolkata@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-269.yaml b/user_service/keploy/atg/tests/test-269.yaml new file mode 100755 index 0000000..d2aab49 --- /dev/null +++ b/user_service/keploy/atg/tests/test-269.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-269 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "amit_kolkata", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:02.820629718Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"amit_kolkata@example.in","id":"17dfef3d-5760-456f-a044-ca2226645b00","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxN2RmZWYzZC01NzYwLTQ1NmYtYTA0NC1jYTIyMjY2NDViMDAiLCJ1c2VybmFtZSI6ImFtaXRfa29sa2F0YSIsImlhdCI6MTc2Mjc3NzIwMiwiZXhwIjoxNzY1MzY5MjAyfQ.gYldK80Y6P4-P4y70SxpG2uBUGsF5vk_kJM9K1fJUFQ","username":"amit_kolkata"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:02.882628357Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777202 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"amit_kolkata\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-27.yaml b/user_service/keploy/atg/tests/test-27.yaml new file mode 100755 index 0000000..7a4ff67 --- /dev/null +++ b/user_service/keploy/atg/tests/test-27.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-27 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:59.496257555Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:59 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODM5LCJleHAiOjE3NjUzNjg4Mzl9.EdlZ6AKQQEqccoI4FMOdUYrGbF0B5_sHYntMddZN8RE","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:59.553974926Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776839 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-270.yaml b/user_service/keploy/atg/tests/test-270.yaml new file mode 100755 index 0000000..57d66ae --- /dev/null +++ b/user_service/keploy/atg/tests/test-270.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-270 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/17dfef3d-5760-456f-a044-ca2226645b00/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "159" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "15, Park Street", "city": "Kolkata", "state": "West Bengal", "postal_code": "700016", "country": "IN", "phone": "+919830098300", "is_default": true}' + timestamp: 2025-11-10T12:20:03.582757751Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"9c7ca41a-0722-4b62-ae20-0ec8d3ce0ce5"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:03.607359824Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777203 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/17dfef3d-5760-456f-a044-ca2226645b00/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"15, Park Street\", \"city\": \"Kolkata\", \"state\": \"West Bengal\", \"postal_code\": \"700016\", \"country\": \"IN\", \"phone\": \"+919830098300\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-271.yaml b/user_service/keploy/atg/tests/test-271.yaml new file mode 100755 index 0000000..1344bc6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-271.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-271 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/17dfef3d-5760-456f-a044-ca2226645b00 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:04.401426838Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:04 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:04.425048659Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777204 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/17dfef3d-5760-456f-a044-ca2226645b00 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-272.yaml b/user_service/keploy/atg/tests/test-272.yaml new file mode 100755 index 0000000..62f52df --- /dev/null +++ b/user_service/keploy/atg/tests/test-272.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-272 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "lakshmi_chennai", "email": "lakshmi_chennai@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:06.26111013Z + resp: + status_code: 201 + header: + Content-Length: "125" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"lakshmi_chennai@example.in","id":"25712cc5-6d68-48ea-8437-333cf1ad5cb2","phone":null,"username":"lakshmi_chennai"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:06.333209244Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777206 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"lakshmi_chennai\", \"email\": \"lakshmi_chennai@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-273.yaml b/user_service/keploy/atg/tests/test-273.yaml new file mode 100755 index 0000000..3c1aba6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-273.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-273 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "lakshmi_chennai", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:07.026192419Z + resp: + status_code: 200 + header: + Content-Length: "350" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"lakshmi_chennai@example.in","id":"25712cc5-6d68-48ea-8437-333cf1ad5cb2","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyNTcxMmNjNS02ZDY4LTQ4ZWEtODQzNy0zMzNjZjFhZDVjYjIiLCJ1c2VybmFtZSI6Imxha3NobWlfY2hlbm5haSIsImlhdCI6MTc2Mjc3NzIwNywiZXhwIjoxNzY1MzY5MjA3fQ.VPty348Ux41Ii4qSvzsmqnvMRiUBE5smFB2Jg5w_MhY","username":"lakshmi_chennai"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:07.087483863Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777207 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"lakshmi_chennai\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-274.yaml b/user_service/keploy/atg/tests/test-274.yaml new file mode 100755 index 0000000..bc263ed --- /dev/null +++ b/user_service/keploy/atg/tests/test-274.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-274 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/25712cc5-6d68-48ea-8437-333cf1ad5cb2/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "157" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "No 10, T Nagar", "city": "Chennai", "state": "Tamil Nadu", "postal_code": "600017", "country": "IN", "phone": "+919840098400", "is_default": true}' + timestamp: 2025-11-10T12:20:07.774756887Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"5d4c1ed2-bfe3-48b3-9941-c099827911e3"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:07.796735243Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777207 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/25712cc5-6d68-48ea-8437-333cf1ad5cb2/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"No 10, T Nagar\", \"city\": \"Chennai\", \"state\": \"Tamil Nadu\", \"postal_code\": \"600017\", \"country\": \"IN\", \"phone\": \"+919840098400\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-275.yaml b/user_service/keploy/atg/tests/test-275.yaml new file mode 100755 index 0000000..88bc645 --- /dev/null +++ b/user_service/keploy/atg/tests/test-275.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-275 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/25712cc5-6d68-48ea-8437-333cf1ad5cb2 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:08.617701351Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:08.642254364Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777208 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/25712cc5-6d68-48ea-8437-333cf1ad5cb2 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-276.yaml b/user_service/keploy/atg/tests/test-276.yaml new file mode 100755 index 0000000..20253dd --- /dev/null +++ b/user_service/keploy/atg/tests/test-276.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-276 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "84" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rajesh_hyd", "email": "rajesh_hyd@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:10.69690258Z + resp: + status_code: 201 + header: + Content-Length: "115" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:10 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"rajesh_hyd@example.in","id":"e2fdc4cd-cd10-43c3-b083-5b4050c1ab43","phone":null,"username":"rajesh_hyd"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:10.769236771Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777210 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"rajesh_hyd\", \"email\": \"rajesh_hyd@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-277.yaml b/user_service/keploy/atg/tests/test-277.yaml new file mode 100755 index 0000000..ff7424d --- /dev/null +++ b/user_service/keploy/atg/tests/test-277.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-277 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "50" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rajesh_hyd", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:11.458828107Z + resp: + status_code: 200 + header: + Content-Length: "333" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"rajesh_hyd@example.in","id":"e2fdc4cd-cd10-43c3-b083-5b4050c1ab43","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJlMmZkYzRjZC1jZDEwLTQzYzMtYjA4My01YjQwNTBjMWFiNDMiLCJ1c2VybmFtZSI6InJhamVzaF9oeWQiLCJpYXQiOjE3NjI3NzcyMTEsImV4cCI6MTc2NTM2OTIxMX0.keeFD3HcINyn5WxOx5w7aOJA-3clgRhXXoufU6oEGUE","username":"rajesh_hyd"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:11.519101479Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777211 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"rajesh_hyd\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-278.yaml b/user_service/keploy/atg/tests/test-278.yaml new file mode 100755 index 0000000..000b599 --- /dev/null +++ b/user_service/keploy/atg/tests/test-278.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-278 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/e2fdc4cd-cd10-43c3-b083-5b4050c1ab43/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "168" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Banjara Hills, Road No 1", "city": "Hyderabad", "state": "Telangana", "postal_code": "500034", "country": "IN", "phone": "+919848012345", "is_default": true}' + timestamp: 2025-11-10T12:20:12.266200702Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"1320d911-df66-4ba2-9487-538acb3f8028"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:12.290827766Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777212 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/e2fdc4cd-cd10-43c3-b083-5b4050c1ab43/addresses \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"line1\": \"Banjara Hills, Road No 1\", \"city\": \"Hyderabad\", \"state\": \"Telangana\", \"postal_code\": \"500034\", \"country\": \"IN\", \"phone\": \"+919848012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-279.yaml b/user_service/keploy/atg/tests/test-279.yaml new file mode 100755 index 0000000..e10a372 --- /dev/null +++ b/user_service/keploy/atg/tests/test-279.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-279 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/e2fdc4cd-cd10-43c3-b083-5b4050c1ab43 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:13.018367552Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:13.041799695Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777213 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/e2fdc4cd-cd10-43c3-b083-5b4050c1ab43 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-28.yaml b/user_service/keploy/atg/tests/test-28.yaml new file mode 100755 index 0000000..5d51009 --- /dev/null +++ b/user_service/keploy/atg/tests/test-28.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-28 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:00.230179184Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:00 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:00.231454012Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776840 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-280.yaml b/user_service/keploy/atg/tests/test-280.yaml new file mode 100755 index 0000000..e7a568c --- /dev/null +++ b/user_service/keploy/atg/tests/test-280.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-280 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bad_addr_order", "email": "bad_addr_order@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:20.771626245Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bad_addr_order@example.in","id":"a60a25ea-934f-48c7-85f1-ea694cbcbac6","phone":null,"username":"bad_addr_order"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:20.839018457Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777220 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"bad_addr_order\", \"email\": \"bad_addr_order@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-281.yaml b/user_service/keploy/atg/tests/test-281.yaml new file mode 100755 index 0000000..c2a14b5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-281.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-281 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bad_addr_order", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:21.511661969Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bad_addr_order@example.in","id":"a60a25ea-934f-48c7-85f1-ea694cbcbac6","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhNjBhMjVlYS05MzRmLTQ4YzctODVmMS1lYTY5NGNiY2JhYzYiLCJ1c2VybmFtZSI6ImJhZF9hZGRyX29yZGVyIiwiaWF0IjoxNzYyNzc3MjIxLCJleHAiOjE3NjUzNjkyMjF9.jSrgKuq3MEwrBUqM0-8p-sFQLGrrOW5NqAeDQCQPegI","username":"bad_addr_order"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:21.572537278Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777221 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"bad_addr_order\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-282.yaml b/user_service/keploy/atg/tests/test-282.yaml new file mode 100755 index 0000000..843abba --- /dev/null +++ b/user_service/keploy/atg/tests/test-282.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-282 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:22.251752814Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:20:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:22.253047323Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777222 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-283.yaml b/user_service/keploy/atg/tests/test-283.yaml new file mode 100755 index 0000000..c1d1df4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-283.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-283 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a60a25ea-934f-48c7-85f1-ea694cbcbac6 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:22.989311049Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:23.013921262Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777223 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a60a25ea-934f-48c7-85f1-ea694cbcbac6 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-284.yaml b/user_service/keploy/atg/tests/test-284.yaml new file mode 100755 index 0000000..f670dc9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-284.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-284 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "102" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "auth_user_for_order", "email": "auth_user_for_order@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:25.119383104Z + resp: + status_code: 201 + header: + Content-Length: "133" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"auth_user_for_order@example.in","id":"08d3e990-230d-42c4-afa7-b7582bcec893","phone":null,"username":"auth_user_for_order"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:25.193057905Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777225 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"auth_user_for_order\", \"email\": \"auth_user_for_order@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-285.yaml b/user_service/keploy/atg/tests/test-285.yaml new file mode 100755 index 0000000..4fbfaf4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-285.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-285 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "59" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "auth_user_for_order", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:25.938439825Z + resp: + status_code: 200 + header: + Content-Length: "363" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"auth_user_for_order@example.in","id":"08d3e990-230d-42c4-afa7-b7582bcec893","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwOGQzZTk5MC0yMzBkLTQyYzQtYWZhNy1iNzU4MmJjZWM4OTMiLCJ1c2VybmFtZSI6ImF1dGhfdXNlcl9mb3Jfb3JkZXIiLCJpYXQiOjE3NjI3NzcyMjUsImV4cCI6MTc2NTM2OTIyNX0.vG96d8ROQx5m6vwar6RMGgbuYzkdgqB94Yv1QDTQ85E","username":"auth_user_for_order"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:25.998852887Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777225 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"auth_user_for_order\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-286.yaml b/user_service/keploy/atg/tests/test-286.yaml new file mode 100755 index 0000000..ca7e445 --- /dev/null +++ b/user_service/keploy/atg/tests/test-286.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-286 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:26.669014321Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:20:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:26.670336289Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777226 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-287.yaml b/user_service/keploy/atg/tests/test-287.yaml new file mode 100755 index 0000000..da163c7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-287.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-287 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/08d3e990-230d-42c4-afa7-b7582bcec893 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:27.476660628Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:27.500726945Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777227 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/08d3e990-230d-42c4-afa7-b7582bcec893 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-288.yaml b/user_service/keploy/atg/tests/test-288.yaml new file mode 100755 index 0000000..c955373 --- /dev/null +++ b/user_service/keploy/atg/tests/test-288.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-288 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "neg_release_user", "email": "neg_release_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:30.092023704Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"neg_release_user@example.in","id":"84fe4104-56ff-478f-a4eb-aa1c7d9833dd","phone":null,"username":"neg_release_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:30.165782413Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777230 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"neg_release_user\", \"email\": \"neg_release_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-289.yaml b/user_service/keploy/atg/tests/test-289.yaml new file mode 100755 index 0000000..eade045 --- /dev/null +++ b/user_service/keploy/atg/tests/test-289.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-289 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "neg_release_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:30.894652096Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"neg_release_user@example.in","id":"84fe4104-56ff-478f-a4eb-aa1c7d9833dd","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4NGZlNDEwNC01NmZmLTQ3OGYtYTRlYi1hYTFjN2Q5ODMzZGQiLCJ1c2VybmFtZSI6Im5lZ19yZWxlYXNlX3VzZXIiLCJpYXQiOjE3NjI3NzcyMzAsImV4cCI6MTc2NTM2OTIzMH0.yg4HJnKDXUMDWX55r3GR5B7QQ8JydYgRrp4pcclCfgA","username":"neg_release_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:30.957534646Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777230 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"neg_release_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-29.yaml b/user_service/keploy/atg/tests/test-29.yaml new file mode 100755 index 0000000..9724b5c --- /dev/null +++ b/user_service/keploy/atg/tests/test-29.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-29 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:02.617040769Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODQyLCJleHAiOjE3NjUzNjg4NDJ9.jjTk3VC10dQywX7yCGONG9e6wVQMHWoBcXDv0QuXhuQ","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:02.677764345Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776842 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-290.yaml b/user_service/keploy/atg/tests/test-290.yaml new file mode 100755 index 0000000..4236a9b --- /dev/null +++ b/user_service/keploy/atg/tests/test-290.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-290 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:31.68385952Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:20:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:31.68500708Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777231 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-291.yaml b/user_service/keploy/atg/tests/test-291.yaml new file mode 100755 index 0000000..9cbcee2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-291.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-291 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/84fe4104-56ff-478f-a4eb-aa1c7d9833dd + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:32.419083308Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:32.439644666Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777232 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/84fe4104-56ff-478f-a4eb-aa1c7d9833dd \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-292.yaml b/user_service/keploy/atg/tests/test-292.yaml new file mode 100755 index 0000000..ed760ee --- /dev/null +++ b/user_service/keploy/atg/tests/test-292.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-292 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "neg_reserve_user", "email": "neg_reserve_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:34.815116876Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"neg_reserve_user@example.in","id":"868072e7-73dc-4416-a6ea-28c2819950b2","phone":null,"username":"neg_reserve_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:34.888933145Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777234 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"neg_reserve_user\", \"email\": \"neg_reserve_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-293.yaml b/user_service/keploy/atg/tests/test-293.yaml new file mode 100755 index 0000000..4ef0f76 --- /dev/null +++ b/user_service/keploy/atg/tests/test-293.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-293 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "neg_reserve_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:35.621954724Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"neg_reserve_user@example.in","id":"868072e7-73dc-4416-a6ea-28c2819950b2","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4NjgwNzJlNy03M2RjLTQ0MTYtYTZlYS0yOGMyODE5OTUwYjIiLCJ1c2VybmFtZSI6Im5lZ19yZXNlcnZlX3VzZXIiLCJpYXQiOjE3NjI3NzcyMzUsImV4cCI6MTc2NTM2OTIzNX0.uObWgKNPjsloUUypko5n7uX8R6acylYLC7tJJjMgvTc","username":"neg_reserve_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:35.681752171Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777235 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"neg_reserve_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-294.yaml b/user_service/keploy/atg/tests/test-294.yaml new file mode 100755 index 0000000..ddfa679 --- /dev/null +++ b/user_service/keploy/atg/tests/test-294.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-294 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:36.390693352Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:20:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:36.391906901Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777236 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-295.yaml b/user_service/keploy/atg/tests/test-295.yaml new file mode 100755 index 0000000..9bd505b --- /dev/null +++ b/user_service/keploy/atg/tests/test-295.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-295 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/868072e7-73dc-4416-a6ea-28c2819950b2 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:37.148481522Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:37.170619725Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777237 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/868072e7-73dc-4416-a6ea-28c2819950b2 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-296.yaml b/user_service/keploy/atg/tests/test-296.yaml new file mode 100755 index 0000000..ddbbb5d --- /dev/null +++ b/user_service/keploy/atg/tests/test-296.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-296 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "enrich_user", "email": "enrich_user@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:39.765907582Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"enrich_user@example.in","id":"5d6a84ae-2dbf-422c-9bbd-134aa47f0127","phone":null,"username":"enrich_user"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:39.83880966Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777239 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"enrich_user\", \"email\": \"enrich_user@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-297.yaml b/user_service/keploy/atg/tests/test-297.yaml new file mode 100755 index 0000000..70e1ca0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-297.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-297 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "enrich_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:40.583947928Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:40 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"enrich_user@example.in","id":"5d6a84ae-2dbf-422c-9bbd-134aa47f0127","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1ZDZhODRhZS0yZGJmLTQyMmMtOWJiZC0xMzRhYTQ3ZjAxMjciLCJ1c2VybmFtZSI6ImVucmljaF91c2VyIiwiaWF0IjoxNzYyNzc3MjQwLCJleHAiOjE3NjUzNjkyNDB9.4abZz39u7-6z1Tf8rIZrQ-xM87eUP-SG-_PB1_j8BF8","username":"enrich_user"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:40.646606052Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777240 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"enrich_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-298.yaml b/user_service/keploy/atg/tests/test-298.yaml new file mode 100755 index 0000000..be7f2ce --- /dev/null +++ b/user_service/keploy/atg/tests/test-298.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-298 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5d6a84ae-2dbf-422c-9bbd-134aa47f0127/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "155" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 MG Road", "city": "Bengaluru", "state": "Karnataka", "postal_code": "560001", "country": "IN", "phone": "+919876543210", "is_default": true}' + timestamp: 2025-11-10T12:20:41.32976053Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:41 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"c0f33e54-1f63-4c31-bc63-5dd4f8683457"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:41.350882574Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777241 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/5d6a84ae-2dbf-422c-9bbd-134aa47f0127/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"123 MG Road\", \"city\": \"Bengaluru\", \"state\": \"Karnataka\", \"postal_code\": \"560001\", \"country\": \"IN\", \"phone\": \"+919876543210\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-299.yaml b/user_service/keploy/atg/tests/test-299.yaml new file mode 100755 index 0000000..964fb72 --- /dev/null +++ b/user_service/keploy/atg/tests/test-299.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-299 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:42.149887539Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:20:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:42.151111949Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777242 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-3.yaml b/user_service/keploy/atg/tests/test-3.yaml new file mode 100755 index 0000000..58b4ae7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-3.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-3 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Content-Length: "116" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rohan_mehta_{{$randomInt}}", "email": "rohan.mehta.{{$randomInt}}@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:11:14.694278623Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:11:14 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:11:14.695461321Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776674 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"rohan_mehta_{{$randomInt}}\", \"email\": \"rohan.mehta.{{$randomInt}}@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-30.yaml b/user_service/keploy/atg/tests/test-30.yaml new file mode 100755 index 0000000..b3a25cc --- /dev/null +++ b/user_service/keploy/atg/tests/test-30.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-30 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:03.3818604Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:03.383201669Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776843 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-300.yaml b/user_service/keploy/atg/tests/test-300.yaml new file mode 100755 index 0000000..e6ce2d0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-300.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-300 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5d6a84ae-2dbf-422c-9bbd-134aa47f0127 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:42.902228327Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:42.926655881Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777242 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/5d6a84ae-2dbf-422c-9bbd-134aa47f0127 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-301.yaml b/user_service/keploy/atg/tests/test-301.yaml new file mode 100755 index 0000000..6c6842b --- /dev/null +++ b/user_service/keploy/atg/tests/test-301.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-301 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "immediate_login", "email": "immediate_login@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:45.524507274Z + resp: + status_code: 201 + header: + Content-Length: "125" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"immediate_login@example.in","id":"f8de48e0-82cc-4004-8fb3-3639ebb3be22","phone":null,"username":"immediate_login"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:45.593074398Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777245 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"immediate_login\", \"email\": \"immediate_login@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-302.yaml b/user_service/keploy/atg/tests/test-302.yaml new file mode 100755 index 0000000..4fbd979 --- /dev/null +++ b/user_service/keploy/atg/tests/test-302.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-302 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "immediate_login", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:46.346542946Z + resp: + status_code: 200 + header: + Content-Length: "350" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:46 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"immediate_login@example.in","id":"f8de48e0-82cc-4004-8fb3-3639ebb3be22","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmOGRlNDhlMC04MmNjLTQwMDQtOGZiMy0zNjM5ZWJiM2JlMjIiLCJ1c2VybmFtZSI6ImltbWVkaWF0ZV9sb2dpbiIsImlhdCI6MTc2Mjc3NzI0NiwiZXhwIjoxNzY1MzY5MjQ2fQ.UttTVzMbQFvf6YA4BXBIxMXB8dI36vLk4VaqSn38KJc","username":"immediate_login"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:46.406480784Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777246 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"immediate_login\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-303.yaml b/user_service/keploy/atg/tests/test-303.yaml new file mode 100755 index 0000000..6c29768 --- /dev/null +++ b/user_service/keploy/atg/tests/test-303.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-303 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/f8de48e0-82cc-4004-8fb3-3639ebb3be22 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:47.136994206Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:47.161417281Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777247 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/f8de48e0-82cc-4004-8fb3-3639ebb3be22 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-304.yaml b/user_service/keploy/atg/tests/test-304.yaml new file mode 100755 index 0000000..0d158e3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-304.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-304 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "delete_verify", "email": "delete_verify@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:47.97339001Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"delete_verify@example.in","id":"f820469b-ddda-4dd0-866d-f240033e6b6a","phone":null,"username":"delete_verify"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:48.051123407Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777248 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"delete_verify\", \"email\": \"delete_verify@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-305.yaml b/user_service/keploy/atg/tests/test-305.yaml new file mode 100755 index 0000000..64275bb --- /dev/null +++ b/user_service/keploy/atg/tests/test-305.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-305 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "delete_verify", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:48.723898374Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"delete_verify@example.in","id":"f820469b-ddda-4dd0-866d-f240033e6b6a","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmODIwNDY5Yi1kZGRhLTRkZDAtODY2ZC1mMjQwMDMzZTZiNmEiLCJ1c2VybmFtZSI6ImRlbGV0ZV92ZXJpZnkiLCJpYXQiOjE3NjI3NzcyNDgsImV4cCI6MTc2NTM2OTI0OH0.Rq08PZDTdBAmZM4BRJXmQKxEhmRX8mF1nDFu5l7ZEHo","username":"delete_verify"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:48.783401885Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777248 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"delete_verify\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-306.yaml b/user_service/keploy/atg/tests/test-306.yaml new file mode 100755 index 0000000..d8d52b3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-306.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-306 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/f820469b-ddda-4dd0-866d-f240033e6b6a + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:49.496275826Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:49 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:49.515523984Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777249 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/f820469b-ddda-4dd0-866d-f240033e6b6a \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-307.yaml b/user_service/keploy/atg/tests/test-307.yaml new file mode 100755 index 0000000..85fd740 --- /dev/null +++ b/user_service/keploy/atg/tests/test-307.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-307 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/f820469b-ddda-4dd0-866d-f240033e6b6a + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:50.23386575Z + resp: + status_code: 404 + header: + Content-Length: "27" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:50 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"User not found"} + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:50.245646351Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777250 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/f820469b-ddda-4dd0-866d-f240033e6b6a \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-308.yaml b/user_service/keploy/atg/tests/test-308.yaml new file mode 100755 index 0000000..fe2e317 --- /dev/null +++ b/user_service/keploy/atg/tests/test-308.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-308 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "delete_verify", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:51.066435986Z + resp: + status_code: 401 + header: + Content-Length: "32" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Invalid credentials"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:51.085738054Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777251 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"delete_verify\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-309.yaml b/user_service/keploy/atg/tests/test-309.yaml new file mode 100755 index 0000000..b938d2a --- /dev/null +++ b/user_service/keploy/atg/tests/test-309.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-309 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "non_default_addr", "email": "non_default_addr@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:51.908022587Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"non_default_addr@example.in","id":"5be5ca18-7185-4cc1-847b-7a56eab9c349","phone":null,"username":"non_default_addr"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:51.979691836Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777251 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"non_default_addr\", \"email\": \"non_default_addr@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-31.yaml b/user_service/keploy/atg/tests/test-31.yaml new file mode 100755 index 0000000..8d31886 --- /dev/null +++ b/user_service/keploy/atg/tests/test-31.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-31 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:05.633904745Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODQ1LCJleHAiOjE3NjUzNjg4NDV9.9jIQkE6boqJK4ufa2E6AcjKb6lK8ncFzr-kIQu_FPlY","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:05.692291322Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776845 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-310.yaml b/user_service/keploy/atg/tests/test-310.yaml new file mode 100755 index 0000000..adbc7af --- /dev/null +++ b/user_service/keploy/atg/tests/test-310.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-310 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "non_default_addr", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:52.664626053Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"non_default_addr@example.in","id":"5be5ca18-7185-4cc1-847b-7a56eab9c349","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1YmU1Y2ExOC03MTg1LTRjYzEtODQ3Yi03YTU2ZWFiOWMzNDkiLCJ1c2VybmFtZSI6Im5vbl9kZWZhdWx0X2FkZHIiLCJpYXQiOjE3NjI3NzcyNTIsImV4cCI6MTc2NTM2OTI1Mn0.OHXuxUtLgN7iqgOoIFbbbSR6YjGQGAdelKyggeJYTnk","username":"non_default_addr"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:52.723183361Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777252 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"non_default_addr\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-311.yaml b/user_service/keploy/atg/tests/test-311.yaml new file mode 100755 index 0000000..36c9c15 --- /dev/null +++ b/user_service/keploy/atg/tests/test-311.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-311 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5be5ca18-7185-4cc1-847b-7a56eab9c349/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "159" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Work Office, Infopark", "city": "Kochi", "state": "Kerala", "postal_code": "682030", "country": "IN", "phone": "+919847012345", "is_default": false}' + timestamp: 2025-11-10T12:20:53.396282297Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"afcc695f-bd55-46df-aff7-2687d3bf1e56"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:53.41746189Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777253 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/5be5ca18-7185-4cc1-847b-7a56eab9c349/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"line1\": \"Work Office, Infopark\", \"city\": \"Kochi\", \"state\": \"Kerala\", \"postal_code\": \"682030\", \"country\": \"IN\", \"phone\": \"+919847012345\", \"is_default\": false}" diff --git a/user_service/keploy/atg/tests/test-312.yaml b/user_service/keploy/atg/tests/test-312.yaml new file mode 100755 index 0000000..dfabd61 --- /dev/null +++ b/user_service/keploy/atg/tests/test-312.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-312 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5be5ca18-7185-4cc1-847b-7a56eab9c349/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:54.249370842Z + resp: + status_code: 200 + header: + Content-Length: "202" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + [{"city":"Kochi","country":"IN","id":"afcc695f-bd55-46df-aff7-2687d3bf1e56","is_default":0,"line1":"Work Office, Infopark","line2":null,"phone":"+919847012345","postal_code":"682030","state":"Kerala"}] + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:54.261243133Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777254 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/5be5ca18-7185-4cc1-847b-7a56eab9c349/addresses \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-313.yaml b/user_service/keploy/atg/tests/test-313.yaml new file mode 100755 index 0000000..7ebecda --- /dev/null +++ b/user_service/keploy/atg/tests/test-313.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-313 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5be5ca18-7185-4cc1-847b-7a56eab9c349 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:20:54.969382156Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:54.994420766Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777254 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/5be5ca18-7185-4cc1-847b-7a56eab9c349 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-314.yaml b/user_service/keploy/atg/tests/test-314.yaml new file mode 100755 index 0000000..0b6d330 --- /dev/null +++ b/user_service/keploy/atg/tests/test-314.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-314 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "146" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "userwithaveryverylongandunnecessarilycomplexusernamethatshouldstillbevalid", "email": "longuser@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:57.882592093Z + resp: + status_code: 400 + header: + Content-Length: "40" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"username must be 3-50 chars"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:57.883938151Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777257 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"userwithaveryverylongandunnecessarilycomplexusernamethatshouldstillbevalid\", \"email\": \"longuser@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-315.yaml b/user_service/keploy/atg/tests/test-315.yaml new file mode 100755 index 0000000..b0f7ff8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-315.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-315 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "114" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "userwithaveryverylongandunnecessarilycomplexusernamethatshouldstillbevalid", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:20:58.636769429Z + resp: + status_code: 401 + header: + Content-Length: "32" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:20:58 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Invalid credentials"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:20:58.648168224Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777258 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"userwithaveryverylongandunnecessarilycomplexusernamethatshouldstillbevalid\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-316.yaml b/user_service/keploy/atg/tests/test-316.yaml new file mode 100755 index 0000000..85ce438 --- /dev/null +++ b/user_service/keploy/atg/tests/test-316.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-316 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "user_-.123", "email": "user.special@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:01.947789988Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"user.special@example.in","id":"a96df4d6-c21f-47ec-956f-48b8e7afe77b","phone":null,"username":"user_-.123"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:02.01923174Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777262 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"user_-.123\", \"email\": \"user.special@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-317.yaml b/user_service/keploy/atg/tests/test-317.yaml new file mode 100755 index 0000000..78992f4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-317.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-317 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "50" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "user_-.123", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:02.84461095Z + resp: + status_code: 200 + header: + Content-Length: "335" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"user.special@example.in","id":"a96df4d6-c21f-47ec-956f-48b8e7afe77b","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhOTZkZjRkNi1jMjFmLTQ3ZWMtOTU2Zi00OGI4ZTdhZmU3N2IiLCJ1c2VybmFtZSI6InVzZXJfLS4xMjMiLCJpYXQiOjE3NjI3NzcyNjIsImV4cCI6MTc2NTM2OTI2Mn0.bVbYUCAcdcRlfe7iKTbKktA9IJcScCZnqukOF-6Znt4","username":"user_-.123"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:02.903469256Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777262 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"user_-.123\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-318.yaml b/user_service/keploy/atg/tests/test-318.yaml new file mode 100755 index 0000000..32ec440 --- /dev/null +++ b/user_service/keploy/atg/tests/test-318.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-318 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a96df4d6-c21f-47ec-956f-48b8e7afe77b + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:03.708917484Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:03.731588494Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777263 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a96df4d6-c21f-47ec-956f-48b8e7afe77b \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-319.yaml b/user_service/keploy/atg/tests/test-319.yaml new file mode 100755 index 0000000..c97fbc0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-319.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-319 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "102" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "auth_user_for_other", "email": "auth_user_for_other@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:04.523329057Z + resp: + status_code: 201 + header: + Content-Length: "133" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:04 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"auth_user_for_other@example.in","id":"777b90d1-71b1-4983-942d-656250aac340","phone":null,"username":"auth_user_for_other"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:04.598499016Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777264 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"auth_user_for_other\", \"email\": \"auth_user_for_other@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-32.yaml b/user_service/keploy/atg/tests/test-32.yaml new file mode 100755 index 0000000..d2e09b3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-32.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-32 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/99999999-9999-9999-9999-999999999999 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:06.534977634Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:06.536287593Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776846 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products/99999999-9999-9999-9999-999999999999 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-320.yaml b/user_service/keploy/atg/tests/test-320.yaml new file mode 100755 index 0000000..75e616b --- /dev/null +++ b/user_service/keploy/atg/tests/test-320.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-320 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "order_user_other", "email": "order_user_other@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:05.342340343Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"order_user_other@example.in","id":"87d0e4a5-0b24-4869-bf5d-258cd2a17ff5","phone":null,"username":"order_user_other"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:05.413589795Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777265 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"order_user_other\", \"email\": \"order_user_other@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-321.yaml b/user_service/keploy/atg/tests/test-321.yaml new file mode 100755 index 0000000..b76209b --- /dev/null +++ b/user_service/keploy/atg/tests/test-321.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-321 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "59" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "auth_user_for_other", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:06.254283538Z + resp: + status_code: 200 + header: + Content-Length: "363" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"auth_user_for_other@example.in","id":"777b90d1-71b1-4983-942d-656250aac340","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3NzdiOTBkMS03MWIxLTQ5ODMtOTQyZC02NTYyNTBhYWMzNDAiLCJ1c2VybmFtZSI6ImF1dGhfdXNlcl9mb3Jfb3RoZXIiLCJpYXQiOjE3NjI3NzcyNjYsImV4cCI6MTc2NTM2OTI2Nn0.vBOev8m_0LNmMMCmLiV2teGI6sPTTvPf-EW8rhxtoOM","username":"auth_user_for_other"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:06.313446332Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777266 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"auth_user_for_other\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-322.yaml b/user_service/keploy/atg/tests/test-322.yaml new file mode 100755 index 0000000..26912c2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-322.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-322 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:07.01427433Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:21:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:07.015528309Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777267 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-323.yaml b/user_service/keploy/atg/tests/test-323.yaml new file mode 100755 index 0000000..9a4968c --- /dev/null +++ b/user_service/keploy/atg/tests/test-323.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-323 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/777b90d1-71b1-4983-942d-656250aac340 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:07.836313238Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:07.859875931Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777267 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/777b90d1-71b1-4983-942d-656250aac340 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-324.yaml b/user_service/keploy/atg/tests/test-324.yaml new file mode 100755 index 0000000..f49c947 --- /dev/null +++ b/user_service/keploy/atg/tests/test-324.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-324 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "order_user_other", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:08.591802458Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"order_user_other@example.in","id":"87d0e4a5-0b24-4869-bf5d-258cd2a17ff5","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4N2QwZTRhNS0wYjI0LTQ4NjktYmY1ZC0yNThjZDJhMTdmZjUiLCJ1c2VybmFtZSI6Im9yZGVyX3VzZXJfb3RoZXIiLCJpYXQiOjE3NjI3NzcyNjgsImV4cCI6MTc2NTM2OTI2OH0.Jfqc87i9yzU9ppBtJGVKxBD1U_vdyyxESFY_3BBOtg0","username":"order_user_other"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:08.654544791Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777268 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"order_user_other\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-325.yaml b/user_service/keploy/atg/tests/test-325.yaml new file mode 100755 index 0000000..1b9eb6e --- /dev/null +++ b/user_service/keploy/atg/tests/test-325.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-325 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/87d0e4a5-0b24-4869-bf5d-258cd2a17ff5 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:09.425328373Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:09 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:09.449294412Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777269 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/87d0e4a5-0b24-4869-bf5d-258cd2a17ff5 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-326.yaml b/user_service/keploy/atg/tests/test-326.yaml new file mode 100755 index 0000000..b762300 --- /dev/null +++ b/user_service/keploy/atg/tests/test-326.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-326 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "user_no_addresses", "email": "user_no_addresses@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:12.033505602Z + resp: + status_code: 201 + header: + Content-Length: "129" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"user_no_addresses@example.in","id":"531eb4e5-9d74-4017-a6ff-a400e1a169c8","phone":null,"username":"user_no_addresses"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:12.102462413Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777272 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"user_no_addresses\", \"email\": \"user_no_addresses@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-327.yaml b/user_service/keploy/atg/tests/test-327.yaml new file mode 100755 index 0000000..9f68cbe --- /dev/null +++ b/user_service/keploy/atg/tests/test-327.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-327 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "user_no_addresses", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:12.78563981Z + resp: + status_code: 200 + header: + Content-Length: "356" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"user_no_addresses@example.in","id":"531eb4e5-9d74-4017-a6ff-a400e1a169c8","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1MzFlYjRlNS05ZDc0LTQwMTctYTZmZi1hNDAwZTFhMTY5YzgiLCJ1c2VybmFtZSI6InVzZXJfbm9fYWRkcmVzc2VzIiwiaWF0IjoxNzYyNzc3MjcyLCJleHAiOjE3NjUzNjkyNzJ9.c_bPcCpKrMFcaA3FOqn6PWK6XucYjZVGKclKR8yuQT0","username":"user_no_addresses"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:12.845062931Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777272 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"user_no_addresses\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-328.yaml b/user_service/keploy/atg/tests/test-328.yaml new file mode 100755 index 0000000..321a70d --- /dev/null +++ b/user_service/keploy/atg/tests/test-328.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-328 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/531eb4e5-9d74-4017-a6ff-a400e1a169c8/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:13.625560312Z + resp: + status_code: 200 + header: + Content-Length: "3" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + [] + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:13.636698539Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777273 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/users/531eb4e5-9d74-4017-a6ff-a400e1a169c8/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-329.yaml b/user_service/keploy/atg/tests/test-329.yaml new file mode 100755 index 0000000..b4aeb2c --- /dev/null +++ b/user_service/keploy/atg/tests/test-329.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-329 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/531eb4e5-9d74-4017-a6ff-a400e1a169c8 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:14.35755177Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:14 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:14.381380319Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777274 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/531eb4e5-9d74-4017-a6ff-a400e1a169c8 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-33.yaml b/user_service/keploy/atg/tests/test-33.yaml new file mode 100755 index 0000000..251edb6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-33.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-33 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:07.443291891Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODQ3LCJleHAiOjE3NjUzNjg4NDd9.tJgru3FcBSL5PWf4cCRCwriDg1D2QknYOgBAB_jN62A","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:07.510851967Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776847 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-330.yaml b/user_service/keploy/atg/tests/test-330.yaml new file mode 100755 index 0000000..2066262 --- /dev/null +++ b/user_service/keploy/atg/tests/test-330.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-330 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "user_no_orders", "email": "user_no_orders@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:15.185405922Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"user_no_orders@example.in","id":"d9d26f64-586a-45bc-b398-4ae9c5a4d9c2","phone":null,"username":"user_no_orders"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:15.257549228Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777275 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"user_no_orders\", \"email\": \"user_no_orders@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-331.yaml b/user_service/keploy/atg/tests/test-331.yaml new file mode 100755 index 0000000..6ea4b78 --- /dev/null +++ b/user_service/keploy/atg/tests/test-331.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-331 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "user_no_orders", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:15.940829165Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"user_no_orders@example.in","id":"d9d26f64-586a-45bc-b398-4ae9c5a4d9c2","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJkOWQyNmY2NC01ODZhLTQ1YmMtYjM5OC00YWU5YzVhNGQ5YzIiLCJ1c2VybmFtZSI6InVzZXJfbm9fb3JkZXJzIiwiaWF0IjoxNzYyNzc3Mjc2LCJleHAiOjE3NjUzNjkyNzZ9.D-n-sngMN9BQKWuLlYuY-NLLOjQPqiZxG3HY4-1Hlso","username":"user_no_orders"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:16.009060622Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777276 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"user_no_orders\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-332.yaml b/user_service/keploy/atg/tests/test-332.yaml new file mode 100755 index 0000000..4adc77d --- /dev/null +++ b/user_service/keploy/atg/tests/test-332.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-332 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders?userId=d9d26f64-586a-45bc-b398-4ae9c5a4d9c2 + url_params: + userId: d9d26f64-586a-45bc-b398-4ae9c5a4d9c2 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:16.770079167Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:21:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:16.771408956Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777276 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/orders?userId=d9d26f64-586a-45bc-b398-4ae9c5a4d9c2 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-333.yaml b/user_service/keploy/atg/tests/test-333.yaml new file mode 100755 index 0000000..ea555e3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-333.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-333 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/d9d26f64-586a-45bc-b398-4ae9c5a4d9c2 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:17.502990458Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:17.528769352Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777277 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/d9d26f64-586a-45bc-b398-4ae9c5a4d9c2 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-334.yaml b/user_service/keploy/atg/tests/test-334.yaml new file mode 100755 index 0000000..ddc5326 --- /dev/null +++ b/user_service/keploy/atg/tests/test-334.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-334 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "47" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "testuser", "password": "p@ssw0rd"' + timestamp: 2025-11-10T12:21:19.503773003Z + resp: + status_code: 400 + header: + Content-Length: "167" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:21:19 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 400 Bad Request +

Bad Request

+

The browser (or proxy) sent a request that this server could not understand.

+ status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:19.505083352Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777279 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"testuser\", \"password\": \"p@ssw0rd\"" diff --git a/user_service/keploy/atg/tests/test-335.yaml b/user_service/keploy/atg/tests/test-335.yaml new file mode 100755 index 0000000..5411a15 --- /dev/null +++ b/user_service/keploy/atg/tests/test-335.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-335 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "badjson", "email": "badjson@example.in", ' + timestamp: 2025-11-10T12:21:20.288935486Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:20.290268675Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777280 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"badjson\", \"email\": \"badjson@example.in\", " diff --git a/user_service/keploy/atg/tests/test-336.yaml b/user_service/keploy/atg/tests/test-336.yaml new file mode 100755 index 0000000..9d205a8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-336.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-336 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "addr_bad_json", "email": "addr_bad_json@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:21.292704856Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"addr_bad_json@example.in","id":"f77a805c-a2c8-4646-a16b-1e1cd58249ff","phone":null,"username":"addr_bad_json"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:21.366571396Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777281 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"addr_bad_json\", \"email\": \"addr_bad_json@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-337.yaml b/user_service/keploy/atg/tests/test-337.yaml new file mode 100755 index 0000000..ee886ce --- /dev/null +++ b/user_service/keploy/atg/tests/test-337.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-337 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "addr_bad_json", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:22.131745857Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"addr_bad_json@example.in","id":"f77a805c-a2c8-4646-a16b-1e1cd58249ff","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmNzdhODA1Yy1hMmM4LTQ2NDYtYTE2Yi0xZTFjZDU4MjQ5ZmYiLCJ1c2VybmFtZSI6ImFkZHJfYmFkX2pzb24iLCJpYXQiOjE3NjI3NzcyODIsImV4cCI6MTc2NTM2OTI4Mn0.sHmvCpQ0M53KYNX5Z2SWxsSmdbmtyiKLjwri-DesbI0","username":"addr_bad_json"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:22.188940578Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777282 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"addr_bad_json\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-338.yaml b/user_service/keploy/atg/tests/test-338.yaml new file mode 100755 index 0000000..124aebd --- /dev/null +++ b/user_service/keploy/atg/tests/test-338.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-338 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/f77a805c-a2c8-4646-a16b-1e1cd58249ff/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "38" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 Street", "city": "City"' + timestamp: 2025-11-10T12:21:23.053893563Z + resp: + status_code: 400 + header: + Content-Length: "36" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Missing required fields"} + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:23.055785358Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777283 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/f77a805c-a2c8-4646-a16b-1e1cd58249ff/addresses \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"line1\": \"123 Street\", \"city\": \"City\"" diff --git a/user_service/keploy/atg/tests/test-339.yaml b/user_service/keploy/atg/tests/test-339.yaml new file mode 100755 index 0000000..1792685 --- /dev/null +++ b/user_service/keploy/atg/tests/test-339.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-339 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/f77a805c-a2c8-4646-a16b-1e1cd58249ff + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:23.7922379Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:23.816458036Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777283 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/f77a805c-a2c8-4646-a16b-1e1cd58249ff \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-34.yaml b/user_service/keploy/atg/tests/test-34.yaml new file mode 100755 index 0000000..4fe4551 --- /dev/null +++ b/user_service/keploy/atg/tests/test-34.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-34 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:08.192172459Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:08.193378128Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776848 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-340.yaml b/user_service/keploy/atg/tests/test-340.yaml new file mode 100755 index 0000000..b10baf4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-340.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-340 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "order_bad_json", "email": "order_bad_json@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:24.616859423Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:24 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"order_bad_json@example.in","id":"bc280dae-7857-442d-ad52-1883bd5394f6","phone":null,"username":"order_bad_json"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:24.690274948Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777284 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"order_bad_json\", \"email\": \"order_bad_json@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-341.yaml b/user_service/keploy/atg/tests/test-341.yaml new file mode 100755 index 0000000..990ca7c --- /dev/null +++ b/user_service/keploy/atg/tests/test-341.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-341 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "order_bad_json", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:25.366865984Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"order_bad_json@example.in","id":"bc280dae-7857-442d-ad52-1883bd5394f6","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJiYzI4MGRhZS03ODU3LTQ0MmQtYWQ1Mi0xODgzYmQ1Mzk0ZjYiLCJ1c2VybmFtZSI6Im9yZGVyX2JhZF9qc29uIiwiaWF0IjoxNzYyNzc3Mjg1LCJleHAiOjE3NjUzNjkyODV9.uMcZ-vDlQja6Dasa5Z0pZgyn-Nj8l0odSl6dCzJ8Co0","username":"order_bad_json"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:25.424871217Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777285 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"order_bad_json\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-342.yaml b/user_service/keploy/atg/tests/test-342.yaml new file mode 100755 index 0000000..4a1c26a --- /dev/null +++ b/user_service/keploy/atg/tests/test-342.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-342 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "61" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"userId": "bc280dae-7857-442d-ad52-1883bd5394f6", "items": [' + timestamp: 2025-11-10T12:21:26.194410912Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:21:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:26.195510493Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777286 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/orders \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"userId\": \"bc280dae-7857-442d-ad52-1883bd5394f6\", \"items\": [" diff --git a/user_service/keploy/atg/tests/test-343.yaml b/user_service/keploy/atg/tests/test-343.yaml new file mode 100755 index 0000000..8d8d979 --- /dev/null +++ b/user_service/keploy/atg/tests/test-343.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-343 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/bc280dae-7857-442d-ad52-1883bd5394f6 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:26.936735137Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:26.965821174Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777286 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/bc280dae-7857-442d-ad52-1883bd5394f6 \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-344.yaml b/user_service/keploy/atg/tests/test-344.yaml new file mode 100755 index 0000000..54b7d0a --- /dev/null +++ b/user_service/keploy/atg/tests/test-344.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-344 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "reserve_bad_json", "email": "reserve_bad_json@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:29.165548977Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"reserve_bad_json@example.in","id":"a8f32eb8-2e36-4603-8ba1-182b5a91d48b","phone":null,"username":"reserve_bad_json"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:29.239376647Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777289 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"reserve_bad_json\", \"email\": \"reserve_bad_json@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-345.yaml b/user_service/keploy/atg/tests/test-345.yaml new file mode 100755 index 0000000..cacf489 --- /dev/null +++ b/user_service/keploy/atg/tests/test-345.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-345 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "reserve_bad_json", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:29.999309435Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"reserve_bad_json@example.in","id":"a8f32eb8-2e36-4603-8ba1-182b5a91d48b","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhOGYzMmViOC0yZTM2LTQ2MDMtOGJhMS0xODJiNWE5MWQ0OGIiLCJ1c2VybmFtZSI6InJlc2VydmVfYmFkX2pzb24iLCJpYXQiOjE3NjI3NzcyOTAsImV4cCI6MTc2NTM2OTI5MH0.ioCEcNeerJpG-rr5W7i6S1TrgOo1Y3rAR8CH5CSqyZw","username":"reserve_bad_json"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:30.064891106Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777290 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"reserve_bad_json\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-346.yaml b/user_service/keploy/atg/tests/test-346.yaml new file mode 100755 index 0000000..b6b9cde --- /dev/null +++ b/user_service/keploy/atg/tests/test-346.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-346 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/some-product-id/reserve + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "14" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1' + timestamp: 2025-11-10T12:21:30.928303794Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:21:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:30.929470484Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777290 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/some-product-id/reserve \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"quantity\": 1" diff --git a/user_service/keploy/atg/tests/test-347.yaml b/user_service/keploy/atg/tests/test-347.yaml new file mode 100755 index 0000000..f18d039 --- /dev/null +++ b/user_service/keploy/atg/tests/test-347.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-347 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a8f32eb8-2e36-4603-8ba1-182b5a91d48b + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:31.66344628Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:31.689294784Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777291 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a8f32eb8-2e36-4603-8ba1-182b5a91d48b \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-348.yaml b/user_service/keploy/atg/tests/test-348.yaml new file mode 100755 index 0000000..706c2f0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-348.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-348 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "release_bad_json", "email": "release_bad_json@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:33.763349852Z + resp: + status_code: 201 + header: + Content-Length: "127" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"release_bad_json@example.in","id":"eeae17ed-c614-4cb0-bf39-c9dd9062ed3a","phone":null,"username":"release_bad_json"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:33.839000888Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777293 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"release_bad_json\", \"email\": \"release_bad_json@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-349.yaml b/user_service/keploy/atg/tests/test-349.yaml new file mode 100755 index 0000000..720806c --- /dev/null +++ b/user_service/keploy/atg/tests/test-349.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-349 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "release_bad_json", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:34.585738837Z + resp: + status_code: 200 + header: + Content-Length: "353" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"release_bad_json@example.in","id":"eeae17ed-c614-4cb0-bf39-c9dd9062ed3a","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJlZWFlMTdlZC1jNjE0LTRjYjAtYmYzOS1jOWRkOTA2MmVkM2EiLCJ1c2VybmFtZSI6InJlbGVhc2VfYmFkX2pzb24iLCJpYXQiOjE3NjI3NzcyOTQsImV4cCI6MTc2NTM2OTI5NH0.t-LsyLJxPcmIjeShSQ-O1UbY3CcbWEubXkg1H_W1j14","username":"release_bad_json"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:34.647216931Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777294 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"release_bad_json\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-35.yaml b/user_service/keploy/atg/tests/test-35.yaml new file mode 100755 index 0000000..113b46c --- /dev/null +++ b/user_service/keploy/atg/tests/test-35.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-35 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:11.154979082Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODUxLCJleHAiOjE3NjUzNjg4NTF9.tubXDF9ONEKbvNACUxDA6JU-uG_me82sfG5klGUcGPk","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:11.214036704Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776851 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-350.yaml b/user_service/keploy/atg/tests/test-350.yaml new file mode 100755 index 0000000..a002c45 --- /dev/null +++ b/user_service/keploy/atg/tests/test-350.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-350 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/some-product-id/release + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "14" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1' + timestamp: 2025-11-10T12:21:35.333641886Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:21:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:35.334856266Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777295 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/some-product-id/release \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"quantity\": 1" diff --git a/user_service/keploy/atg/tests/test-351.yaml b/user_service/keploy/atg/tests/test-351.yaml new file mode 100755 index 0000000..907640e --- /dev/null +++ b/user_service/keploy/atg/tests/test-351.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-351 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/eeae17ed-c614-4cb0-bf39-c9dd9062ed3a + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:36.1717927Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:36.197109947Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777296 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/eeae17ed-c614-4cb0-bf39-c9dd9062ed3a \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-352.yaml b/user_service/keploy/atg/tests/test-352.yaml new file mode 100755 index 0000000..363967b --- /dev/null +++ b/user_service/keploy/atg/tests/test-352.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-352 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "82" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "maria_goa", "email": "maria_goa@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:38.245882882Z + resp: + status_code: 201 + header: + Content-Length: "113" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"maria_goa@example.in","id":"f0e44763-84a3-4d1b-b31d-c2bde7baaaef","phone":null,"username":"maria_goa"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:38.319099278Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777298 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"maria_goa\", \"email\": \"maria_goa@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-353.yaml b/user_service/keploy/atg/tests/test-353.yaml new file mode 100755 index 0000000..34c0266 --- /dev/null +++ b/user_service/keploy/atg/tests/test-353.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-353 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "49" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "maria_goa", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:39.011850912Z + resp: + status_code: 200 + header: + Content-Length: "330" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"maria_goa@example.in","id":"f0e44763-84a3-4d1b-b31d-c2bde7baaaef","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmMGU0NDc2My04NGEzLTRkMWItYjMxZC1jMmJkZTdiYWFhZWYiLCJ1c2VybmFtZSI6Im1hcmlhX2dvYSIsImlhdCI6MTc2Mjc3NzI5OSwiZXhwIjoxNzY1MzY5Mjk5fQ.oLffE6JA-pv6A1uNVqCmqVNl54Y1ros0Dege6MRsIKg","username":"maria_goa"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:39.070439711Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777299 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"maria_goa\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-354.yaml b/user_service/keploy/atg/tests/test-354.yaml new file mode 100755 index 0000000..1c444dd --- /dev/null +++ b/user_service/keploy/atg/tests/test-354.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-354 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/f0e44763-84a3-4d1b-b31d-c2bde7baaaef/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "158" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "House 123, Calangute", "city": "North Goa", "state": "Goa", "postal_code": "403516", "country": "IN", "phone": "+919822123456", "is_default": true}' + timestamp: 2025-11-10T12:21:39.831223974Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"578822f8-7c40-4316-bd19-b9fbb6e27992"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:39.852993792Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777299 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/f0e44763-84a3-4d1b-b31d-c2bde7baaaef/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"House 123, Calangute\", \"city\": \"North Goa\", \"state\": \"Goa\", \"postal_code\": \"403516\", \"country\": \"IN\", \"phone\": \"+919822123456\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-355.yaml b/user_service/keploy/atg/tests/test-355.yaml new file mode 100755 index 0000000..1d43bb6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-355.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-355 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/f0e44763-84a3-4d1b-b31d-c2bde7baaaef + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:40.660422864Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:40 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:40.687287388Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777300 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/f0e44763-84a3-4d1b-b31d-c2bde7baaaef \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-356.yaml b/user_service/keploy/atg/tests/test-356.yaml new file mode 100755 index 0000000..31720d7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-356.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-356 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "yash_jaipur", "email": "yash_jaipur@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:43.493540488Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"yash_jaipur@example.in","id":"91eb8fad-7de2-4795-98dc-913fa5a7eece","phone":null,"username":"yash_jaipur"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:43.570795041Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777303 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"yash_jaipur\", \"email\": \"yash_jaipur@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-357.yaml b/user_service/keploy/atg/tests/test-357.yaml new file mode 100755 index 0000000..4202ab9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-357.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-357 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "yash_jaipur", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:44.274196635Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:44 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"yash_jaipur@example.in","id":"91eb8fad-7de2-4795-98dc-913fa5a7eece","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5MWViOGZhZC03ZGUyLTQ3OTUtOThkYy05MTNmYTVhN2VlY2UiLCJ1c2VybmFtZSI6Inlhc2hfamFpcHVyIiwiaWF0IjoxNzYyNzc3MzA0LCJleHAiOjE3NjUzNjkzMDR9.Q1hao-B3vCRBV4StHrHwcYIen21P9IzVVNkuo9o_EV4","username":"yash_jaipur"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:44.339886084Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777304 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"yash_jaipur\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-358.yaml b/user_service/keploy/atg/tests/test-358.yaml new file mode 100755 index 0000000..57609af --- /dev/null +++ b/user_service/keploy/atg/tests/test-358.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-358 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/91eb8fad-7de2-4795-98dc-913fa5a7eece/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "156" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Hawa Mahal Road", "city": "Jaipur", "state": "Rajasthan", "postal_code": "302002", "country": "IN", "phone": "+919829098290", "is_default": true}' + timestamp: 2025-11-10T12:21:45.0779138Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"2aafcfd3-ebe2-405f-90c5-a59fef147006"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:45.103645493Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777305 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/91eb8fad-7de2-4795-98dc-913fa5a7eece/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Hawa Mahal Road\", \"city\": \"Jaipur\", \"state\": \"Rajasthan\", \"postal_code\": \"302002\", \"country\": \"IN\", \"phone\": \"+919829098290\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-359.yaml b/user_service/keploy/atg/tests/test-359.yaml new file mode 100755 index 0000000..069cfd2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-359.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-359 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/91eb8fad-7de2-4795-98dc-913fa5a7eece + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:45.814652484Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:45.845311568Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777305 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/91eb8fad-7de2-4795-98dc-913fa5a7eece \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-36.yaml b/user_service/keploy/atg/tests/test-36.yaml new file mode 100755 index 0000000..f2fdaf3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-36.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-36 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:12.077857909Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:12.078954229Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776852 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-360.yaml b/user_service/keploy/atg/tests/test-360.yaml new file mode 100755 index 0000000..66f565a --- /dev/null +++ b/user_service/keploy/atg/tests/test-360.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-360 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "isha_ahmedabad", "email": "isha_ahmedabad@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:47.737699692Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"isha_ahmedabad@example.in","id":"44708021-ee36-4225-8633-f6d9b6c3a32d","phone":null,"username":"isha_ahmedabad"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:47.8405233Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777307 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"isha_ahmedabad\", \"email\": \"isha_ahmedabad@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-361.yaml b/user_service/keploy/atg/tests/test-361.yaml new file mode 100755 index 0000000..6706fe8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-361.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-361 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "isha_ahmedabad", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:48.514551362Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"isha_ahmedabad@example.in","id":"44708021-ee36-4225-8633-f6d9b6c3a32d","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0NDcwODAyMS1lZTM2LTQyMjUtODYzMy1mNmQ5YjZjM2EzMmQiLCJ1c2VybmFtZSI6ImlzaGFfYWhtZWRhYmFkIiwiaWF0IjoxNzYyNzc3MzA4LCJleHAiOjE3NjUzNjkzMDh9.NUlGAXzThxnBBW5scVA2PnaDyQ_cc0n21v_Bidvmd5U","username":"isha_ahmedabad"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:48.581681308Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777308 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"isha_ahmedabad\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-362.yaml b/user_service/keploy/atg/tests/test-362.yaml new file mode 100755 index 0000000..59d496b --- /dev/null +++ b/user_service/keploy/atg/tests/test-362.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-362 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/44708021-ee36-4225-8633-f6d9b6c3a32d/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "149" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "CG Road", "city": "Ahmedabad", "state": "Gujarat", "postal_code": "380006", "country": "IN", "phone": "+919825012345", "is_default": true}' + timestamp: 2025-11-10T12:21:49.268064368Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:49 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"af27df60-c68f-4667-94e8-5be0b463f296"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:49.308034033Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777309 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/44708021-ee36-4225-8633-f6d9b6c3a32d/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"CG Road\", \"city\": \"Ahmedabad\", \"state\": \"Gujarat\", \"postal_code\": \"380006\", \"country\": \"IN\", \"phone\": \"+919825012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-363.yaml b/user_service/keploy/atg/tests/test-363.yaml new file mode 100755 index 0000000..cc0e026 --- /dev/null +++ b/user_service/keploy/atg/tests/test-363.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-363 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/44708021-ee36-4225-8633-f6d9b6c3a32d + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:50.006037803Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:50 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:50.028815203Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777310 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/44708021-ee36-4225-8633-f6d9b6c3a32d \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-364.yaml b/user_service/keploy/atg/tests/test-364.yaml new file mode 100755 index 0000000..7614fc1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-364.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-364 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "aditya_lucknow", "email": "aditya_lucknow@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:51.882832771Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"aditya_lucknow@example.in","id":"a4290205-4d0c-4577-a66c-6b180d9e87bc","phone":null,"username":"aditya_lucknow"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:51.95936713Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777311 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"aditya_lucknow\", \"email\": \"aditya_lucknow@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-365.yaml b/user_service/keploy/atg/tests/test-365.yaml new file mode 100755 index 0000000..37ec58e --- /dev/null +++ b/user_service/keploy/atg/tests/test-365.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-365 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "aditya_lucknow", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:52.641993521Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"aditya_lucknow@example.in","id":"a4290205-4d0c-4577-a66c-6b180d9e87bc","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhNDI5MDIwNS00ZDBjLTQ1NzctYTY2Yy02YjE4MGQ5ZTg3YmMiLCJ1c2VybmFtZSI6ImFkaXR5YV9sdWNrbm93IiwiaWF0IjoxNzYyNzc3MzEyLCJleHAiOjE3NjUzNjkzMTJ9.8dpEBzlMQzu2qvieZScvyDAr8-vlvA5LT939eoybYLo","username":"aditya_lucknow"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:52.709365027Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777312 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"aditya_lucknow\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-366.yaml b/user_service/keploy/atg/tests/test-366.yaml new file mode 100755 index 0000000..0796b54 --- /dev/null +++ b/user_service/keploy/atg/tests/test-366.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-366 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a4290205-4d0c-4577-a66c-6b180d9e87bc/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "157" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Gomti Nagar", "city": "Lucknow", "state": "Uttar Pradesh", "postal_code": "226010", "country": "IN", "phone": "+919415112345", "is_default": true}' + timestamp: 2025-11-10T12:21:53.501127303Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"c2479e30-8c19-4779-922e-1f96cb1797fe"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:53.523176159Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777313 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/a4290205-4d0c-4577-a66c-6b180d9e87bc/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Gomti Nagar\", \"city\": \"Lucknow\", \"state\": \"Uttar Pradesh\", \"postal_code\": \"226010\", \"country\": \"IN\", \"phone\": \"+919415112345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-367.yaml b/user_service/keploy/atg/tests/test-367.yaml new file mode 100755 index 0000000..b9605f7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-367.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-367 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a4290205-4d0c-4577-a66c-6b180d9e87bc + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:54.23076126Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:54.257101869Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777314 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a4290205-4d0c-4577-a66c-6b180d9e87bc \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-368.yaml b/user_service/keploy/atg/tests/test-368.yaml new file mode 100755 index 0000000..080f54b --- /dev/null +++ b/user_service/keploy/atg/tests/test-368.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-368 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "84" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "simran_chd", "email": "simran_chd@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:56.600441579Z + resp: + status_code: 201 + header: + Content-Length: "115" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:56 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"simran_chd@example.in","id":"1dd33e6c-1eda-484f-9ac0-25323324cd5e","phone":null,"username":"simran_chd"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:56.673025292Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777316 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"simran_chd\", \"email\": \"simran_chd@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-369.yaml b/user_service/keploy/atg/tests/test-369.yaml new file mode 100755 index 0000000..3113f99 --- /dev/null +++ b/user_service/keploy/atg/tests/test-369.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-369 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "50" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "simran_chd", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:21:57.345612106Z + resp: + status_code: 200 + header: + Content-Length: "333" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"simran_chd@example.in","id":"1dd33e6c-1eda-484f-9ac0-25323324cd5e","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxZGQzM2U2Yy0xZWRhLTQ4NGYtOWFjMC0yNTMyMzMyNGNkNWUiLCJ1c2VybmFtZSI6InNpbXJhbl9jaGQiLCJpYXQiOjE3NjI3NzczMTcsImV4cCI6MTc2NTM2OTMxN30.2JXBVp6I04XCGXiQ6PqXFevAUUgZ3Zk40_z68OtqRbs","username":"simran_chd"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:57.407960484Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777317 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"simran_chd\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-37.yaml b/user_service/keploy/atg/tests/test-37.yaml new file mode 100755 index 0000000..7aefab2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-37.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-37 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:15.239334082Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODU1LCJleHAiOjE3NjUzNjg4NTV9.p0iGpdnbFVv4Yx4XqzatnRC6h5oEMgsLhQRbFTbNFkU","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:15.298605632Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776855 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-370.yaml b/user_service/keploy/atg/tests/test-370.yaml new file mode 100755 index 0000000..467b393 --- /dev/null +++ b/user_service/keploy/atg/tests/test-370.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-370 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/1dd33e6c-1eda-484f-9ac0-25323324cd5e/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "155" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Sector 22", "city": "Chandigarh", "state": "Chandigarh", "postal_code": "160022", "country": "IN", "phone": "+919814012345", "is_default": true}' + timestamp: 2025-11-10T12:21:58.205915729Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:58 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"b9fe35b4-6ed9-48c0-bf77-49648e79f9c2"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:58.23336406Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777318 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/1dd33e6c-1eda-484f-9ac0-25323324cd5e/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Sector 22\", \"city\": \"Chandigarh\", \"state\": \"Chandigarh\", \"postal_code\": \"160022\", \"country\": \"IN\", \"phone\": \"+919814012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-371.yaml b/user_service/keploy/atg/tests/test-371.yaml new file mode 100755 index 0000000..9993730 --- /dev/null +++ b/user_service/keploy/atg/tests/test-371.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-371 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/1dd33e6c-1eda-484f-9ac0-25323324cd5e + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:21:58.925542511Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:21:58 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:21:58.9637096Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777318 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/1dd33e6c-1eda-484f-9ac0-25323324cd5e \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-372.yaml b/user_service/keploy/atg/tests/test-372.yaml new file mode 100755 index 0000000..2448741 --- /dev/null +++ b/user_service/keploy/atg/tests/test-372.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-372 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "george_kochi", "email": "george_kochi@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:00.923462656Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:00 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"george_kochi@example.in","id":"b8a7fc1d-a07c-4225-bf5b-8e486aecaae6","phone":null,"username":"george_kochi"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:00.999454479Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777320 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"george_kochi\", \"email\": \"george_kochi@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-373.yaml b/user_service/keploy/atg/tests/test-373.yaml new file mode 100755 index 0000000..a3f96a9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-373.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-373 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "george_kochi", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:01.839443395Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"george_kochi@example.in","id":"b8a7fc1d-a07c-4225-bf5b-8e486aecaae6","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJiOGE3ZmMxZC1hMDdjLTQyMjUtYmY1Yi04ZTQ4NmFlY2FhZTYiLCJ1c2VybmFtZSI6Imdlb3JnZV9rb2NoaSIsImlhdCI6MTc2Mjc3NzMyMSwiZXhwIjoxNzY1MzY5MzIxfQ.irtO06sKj3FQ988Pumu2YW3zKOP5-0s95RxopPrka9s","username":"george_kochi"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:01.90339926Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777321 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"george_kochi\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-374.yaml b/user_service/keploy/atg/tests/test-374.yaml new file mode 100755 index 0000000..ca401bb --- /dev/null +++ b/user_service/keploy/atg/tests/test-374.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-374 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/b8a7fc1d-a07c-4225-bf5b-8e486aecaae6/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "149" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Marine Drive", "city": "Kochi", "state": "Kerala", "postal_code": "682011", "country": "IN", "phone": "+919846012345", "is_default": true}' + timestamp: 2025-11-10T12:22:02.582345543Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"30a320aa-287e-46c6-b1ba-255350d701bd"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:02.605686929Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777322 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/b8a7fc1d-a07c-4225-bf5b-8e486aecaae6/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"Marine Drive\", \"city\": \"Kochi\", \"state\": \"Kerala\", \"postal_code\": \"682011\", \"country\": \"IN\", \"phone\": \"+919846012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-375.yaml b/user_service/keploy/atg/tests/test-375.yaml new file mode 100755 index 0000000..8397bfb --- /dev/null +++ b/user_service/keploy/atg/tests/test-375.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-375 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/b8a7fc1d-a07c-4225-bf5b-8e486aecaae6 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:03.412091174Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:03.435423279Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777323 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/b8a7fc1d-a07c-4225-bf5b-8e486aecaae6 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-376.yaml b/user_service/keploy/atg/tests/test-376.yaml new file mode 100755 index 0000000..860cc72 --- /dev/null +++ b/user_service/keploy/atg/tests/test-376.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-376 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "neha_indore", "email": "neha_indore@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:06.053286146Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"neha_indore@example.in","id":"4d375648-f4ab-4661-90e8-d4265b1afcc4","phone":null,"username":"neha_indore"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:06.133446645Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777326 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"neha_indore\", \"email\": \"neha_indore@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-377.yaml b/user_service/keploy/atg/tests/test-377.yaml new file mode 100755 index 0000000..cf707c8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-377.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-377 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "neha_indore", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:06.806256501Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"neha_indore@example.in","id":"4d375648-f4ab-4661-90e8-d4265b1afcc4","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0ZDM3NTY0OC1mNGFiLTQ2NjEtOTBlOC1kNDI2NWIxYWZjYzQiLCJ1c2VybmFtZSI6Im5laGFfaW5kb3JlIiwiaWF0IjoxNzYyNzc3MzI2LCJleHAiOjE3NjUzNjkzMjZ9.7wy1PcFFWyzCUYA10e13UaO_-ToCMWyBcO9gPuUfx_8","username":"neha_indore"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:06.871004069Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777326 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"neha_indore\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-378.yaml b/user_service/keploy/atg/tests/test-378.yaml new file mode 100755 index 0000000..bfde55a --- /dev/null +++ b/user_service/keploy/atg/tests/test-378.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-378 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/4d375648-f4ab-4661-90e8-d4265b1afcc4/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "154" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "56 Dukan", "city": "Indore", "state": "Madhya Pradesh", "postal_code": "452001", "country": "IN", "phone": "+919826012345", "is_default": true}' + timestamp: 2025-11-10T12:22:07.603936252Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"46e38be7-5454-45a3-a5d1-c0ed3c09b145"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:07.631443761Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777327 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/4d375648-f4ab-4661-90e8-d4265b1afcc4/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"line1\": \"56 Dukan\", \"city\": \"Indore\", \"state\": \"Madhya Pradesh\", \"postal_code\": \"452001\", \"country\": \"IN\", \"phone\": \"+919826012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-379.yaml b/user_service/keploy/atg/tests/test-379.yaml new file mode 100755 index 0000000..f1a44b6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-379.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-379 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/4d375648-f4ab-4661-90e8-d4265b1afcc4 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:08.366513846Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:08.391644096Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777328 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/4d375648-f4ab-4661-90e8-d4265b1afcc4 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-38.yaml b/user_service/keploy/atg/tests/test-38.yaml new file mode 100755 index 0000000..42b9c12 --- /dev/null +++ b/user_service/keploy/atg/tests/test-38.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-38 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "arjun_idem_01", "email": "arjun.idem.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:15.983276305Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:15.984739193Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776855 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"arjun_idem_01\", \"email\": \"arjun.idem.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-380.yaml b/user_service/keploy/atg/tests/test-380.yaml new file mode 100755 index 0000000..86f22d6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-380.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-380 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vivek_bhopal", "email": "vivek_bhopal@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:10.489721729Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:10 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"vivek_bhopal@example.in","id":"cd231165-d42c-4937-8415-50d80f3cfbf2","phone":null,"username":"vivek_bhopal"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:10.579580247Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777330 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"vivek_bhopal\", \"email\": \"vivek_bhopal@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-381.yaml b/user_service/keploy/atg/tests/test-381.yaml new file mode 100755 index 0000000..d36d78a --- /dev/null +++ b/user_service/keploy/atg/tests/test-381.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-381 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vivek_bhopal", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:11.28155972Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"vivek_bhopal@example.in","id":"cd231165-d42c-4937-8415-50d80f3cfbf2","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjZDIzMTE2NS1kNDJjLTQ5MzctODQxNS01MGQ4MGYzY2ZiZjIiLCJ1c2VybmFtZSI6InZpdmVrX2Job3BhbCIsImlhdCI6MTc2Mjc3NzMzMSwiZXhwIjoxNzY1MzY5MzMxfQ.70ch2bypnWJohO-eIFlsSoW7wUzktfAnUzwxI_MA9Uk","username":"vivek_bhopal"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:11.353844115Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777331 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"vivek_bhopal\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-382.yaml b/user_service/keploy/atg/tests/test-382.yaml new file mode 100755 index 0000000..37e6cc9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-382.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-382 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/cd231165-d42c-4937-8415-50d80f3cfbf2/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "158" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Arera Colony", "city": "Bhopal", "state": "Madhya Pradesh", "postal_code": "462016", "country": "IN", "phone": "+919425012345", "is_default": true}' + timestamp: 2025-11-10T12:22:12.033737293Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"9e1de261-0fe2-4a26-abbb-6903869a2e78"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:12.059316149Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777332 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/cd231165-d42c-4937-8415-50d80f3cfbf2/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"Arera Colony\", \"city\": \"Bhopal\", \"state\": \"Madhya Pradesh\", \"postal_code\": \"462016\", \"country\": \"IN\", \"phone\": \"+919425012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-383.yaml b/user_service/keploy/atg/tests/test-383.yaml new file mode 100755 index 0000000..1cbe9ae --- /dev/null +++ b/user_service/keploy/atg/tests/test-383.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-383 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/cd231165-d42c-4937-8415-50d80f3cfbf2 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:12.847491769Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:12.875889812Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777332 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/cd231165-d42c-4937-8415-50d80f3cfbf2 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-384.yaml b/user_service/keploy/atg/tests/test-384.yaml new file mode 100755 index 0000000..41609c9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-384.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-384 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "pooja_nagpur", "email": "pooja_nagpur@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:14.654550152Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:14 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"pooja_nagpur@example.in","id":"9c9e241f-ff14-4eac-8296-5622d8fe401b","phone":null,"username":"pooja_nagpur"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:14.73608572Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777334 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"pooja_nagpur\", \"email\": \"pooja_nagpur@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-385.yaml b/user_service/keploy/atg/tests/test-385.yaml new file mode 100755 index 0000000..08d8630 --- /dev/null +++ b/user_service/keploy/atg/tests/test-385.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-385 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "pooja_nagpur", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:15.483333214Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"pooja_nagpur@example.in","id":"9c9e241f-ff14-4eac-8296-5622d8fe401b","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5YzllMjQxZi1mZjE0LTRlYWMtODI5Ni01NjIyZDhmZTQwMWIiLCJ1c2VybmFtZSI6InBvb2phX25hZ3B1ciIsImlhdCI6MTc2Mjc3NzMzNSwiZXhwIjoxNzY1MzY5MzM1fQ.6OdUNldCFaBFvdoAZXZ9Tyr6K76HX7p_oWsXKpqG_N8","username":"pooja_nagpur"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:15.548275591Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777335 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"pooja_nagpur\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-386.yaml b/user_service/keploy/atg/tests/test-386.yaml new file mode 100755 index 0000000..6ad4b94 --- /dev/null +++ b/user_service/keploy/atg/tests/test-386.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-386 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9c9e241f-ff14-4eac-8296-5622d8fe401b/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "152" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Sitabuldi", "city": "Nagpur", "state": "Maharashtra", "postal_code": "440012", "country": "IN", "phone": "+919823012345", "is_default": true}' + timestamp: 2025-11-10T12:22:16.227597304Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"df81c806-72b6-4a92-9f14-5fbeaa0c00ce"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:16.252475855Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777336 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/9c9e241f-ff14-4eac-8296-5622d8fe401b/addresses \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"line1\": \"Sitabuldi\", \"city\": \"Nagpur\", \"state\": \"Maharashtra\", \"postal_code\": \"440012\", \"country\": \"IN\", \"phone\": \"+919823012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-387.yaml b/user_service/keploy/atg/tests/test-387.yaml new file mode 100755 index 0000000..a3c995a --- /dev/null +++ b/user_service/keploy/atg/tests/test-387.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-387 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9c9e241f-ff14-4eac-8296-5622d8fe401b + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:17.038674604Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:17.062520764Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777337 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/9c9e241f-ff14-4eac-8296-5622d8fe401b \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-388.yaml b/user_service/keploy/atg/tests/test-388.yaml new file mode 100755 index 0000000..b8f1363 --- /dev/null +++ b/user_service/keploy/atg/tests/test-388.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-388 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "suresh_vizag", "email": "suresh_vizag@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:19.230628325Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:19 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"suresh_vizag@example.in","id":"9901edf5-b076-4850-9ada-b9c75949d59c","phone":null,"username":"suresh_vizag"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:19.316690695Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777339 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"suresh_vizag\", \"email\": \"suresh_vizag@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-389.yaml b/user_service/keploy/atg/tests/test-389.yaml new file mode 100755 index 0000000..809ca11 --- /dev/null +++ b/user_service/keploy/atg/tests/test-389.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-389 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "suresh_vizag", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:19.986891454Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"suresh_vizag@example.in","id":"9901edf5-b076-4850-9ada-b9c75949d59c","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5OTAxZWRmNS1iMDc2LTQ4NTAtOWFkYS1iOWM3NTk0OWQ1OWMiLCJ1c2VybmFtZSI6InN1cmVzaF92aXphZyIsImlhdCI6MTc2Mjc3NzM0MCwiZXhwIjoxNzY1MzY5MzQwfQ.qa2hmdVc_qaUcrr-8GHWXzfG-HU_VA9nItEYGqh2750","username":"suresh_vizag"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:20.060714467Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777340 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"suresh_vizag\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-39.yaml b/user_service/keploy/atg/tests/test-39.yaml new file mode 100755 index 0000000..1159bd4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-39.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-39 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:16.796851599Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:16.797980809Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776856 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-390.yaml b/user_service/keploy/atg/tests/test-390.yaml new file mode 100755 index 0000000..07489bc --- /dev/null +++ b/user_service/keploy/atg/tests/test-390.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-390 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9901edf5-b076-4850-9ada-b9c75949d59c/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "166" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "RK Beach Road", "city": "Visakhapatnam", "state": "Andhra Pradesh", "postal_code": "530003", "country": "IN", "phone": "+919849012345", "is_default": true}' + timestamp: 2025-11-10T12:22:20.734896354Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"04a4c42e-2bc4-4614-af7f-b84c7e7b598c"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:20.761325433Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777340 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/9901edf5-b076-4850-9ada-b9c75949d59c/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"line1\": \"RK Beach Road\", \"city\": \"Visakhapatnam\", \"state\": \"Andhra Pradesh\", \"postal_code\": \"530003\", \"country\": \"IN\", \"phone\": \"+919849012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-391.yaml b/user_service/keploy/atg/tests/test-391.yaml new file mode 100755 index 0000000..91b07e9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-391.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-391 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9901edf5-b076-4850-9ada-b9c75949d59c + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:21.461360904Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:21.489078971Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777341 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/9901edf5-b076-4850-9ada-b9c75949d59c \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-392.yaml b/user_service/keploy/atg/tests/test-392.yaml new file mode 100755 index 0000000..1e91a00 --- /dev/null +++ b/user_service/keploy/atg/tests/test-392.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-392 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "manoj_patna", "email": "manoj_patna@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:23.896721802Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"manoj_patna@example.in","id":"86d9e8a4-6a00-46c9-9077-6362c89a686f","phone":null,"username":"manoj_patna"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:23.97342719Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777343 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"manoj_patna\", \"email\": \"manoj_patna@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-393.yaml b/user_service/keploy/atg/tests/test-393.yaml new file mode 100755 index 0000000..e32a16e --- /dev/null +++ b/user_service/keploy/atg/tests/test-393.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-393 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "manoj_patna", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:24.647672046Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:24 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"manoj_patna@example.in","id":"86d9e8a4-6a00-46c9-9077-6362c89a686f","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4NmQ5ZThhNC02YTAwLTQ2YzktOTA3Ny02MzYyYzg5YTY4NmYiLCJ1c2VybmFtZSI6Im1hbm9qX3BhdG5hIiwiaWF0IjoxNzYyNzc3MzQ0LCJleHAiOjE3NjUzNjkzNDR9.Sd-N8Rbn9SJGOYS3vmct3Xf_kz0uVYXTmUGNrdmoDT4","username":"manoj_patna"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:24.714816884Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777344 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"manoj_patna\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-394.yaml b/user_service/keploy/atg/tests/test-394.yaml new file mode 100755 index 0000000..4ae09ec --- /dev/null +++ b/user_service/keploy/atg/tests/test-394.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-394 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/86d9e8a4-6a00-46c9-9077-6362c89a686f/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "147" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Boring Road", "city": "Patna", "state": "Bihar", "postal_code": "800001", "country": "IN", "phone": "+919431012345", "is_default": true}' + timestamp: 2025-11-10T12:22:25.45261695Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"06437b9d-d8b1-4db6-b86c-f2430b82c704"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:25.479076508Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777345 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/86d9e8a4-6a00-46c9-9077-6362c89a686f/addresses \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"line1\": \"Boring Road\", \"city\": \"Patna\", \"state\": \"Bihar\", \"postal_code\": \"800001\", \"country\": \"IN\", \"phone\": \"+919431012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-395.yaml b/user_service/keploy/atg/tests/test-395.yaml new file mode 100755 index 0000000..608822b --- /dev/null +++ b/user_service/keploy/atg/tests/test-395.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-395 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/86d9e8a4-6a00-46c9-9077-6362c89a686f + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:26.189256486Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:26.220613163Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777346 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/86d9e8a4-6a00-46c9-9077-6362c89a686f \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-396.yaml b/user_service/keploy/atg/tests/test-396.yaml new file mode 100755 index 0000000..225cb30 --- /dev/null +++ b/user_service/keploy/atg/tests/test-396.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-396 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "harpreet_ldh", "email": "harpreet_ldh@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:28.681587539Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:28 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"harpreet_ldh@example.in","id":"9c22935f-1a65-4d1a-9064-c702ca10afc9","phone":null,"username":"harpreet_ldh"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:28.763464104Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777348 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"harpreet_ldh\", \"email\": \"harpreet_ldh@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-397.yaml b/user_service/keploy/atg/tests/test-397.yaml new file mode 100755 index 0000000..cea7b37 --- /dev/null +++ b/user_service/keploy/atg/tests/test-397.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-397 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "harpreet_ldh", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:29.452091561Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"harpreet_ldh@example.in","id":"9c22935f-1a65-4d1a-9064-c702ca10afc9","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5YzIyOTM1Zi0xYTY1LTRkMWEtOTA2NC1jNzAyY2ExMGFmYzkiLCJ1c2VybmFtZSI6ImhhcnByZWV0X2xkaCIsImlhdCI6MTc2Mjc3NzM0OSwiZXhwIjoxNzY1MzY5MzQ5fQ.mBXi9aq6RYDfwqVeRR05Fos8w3_NAFwtqBjjFCMhrZ0","username":"harpreet_ldh"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:29.522475652Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777349 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"harpreet_ldh\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-398.yaml b/user_service/keploy/atg/tests/test-398.yaml new file mode 100755 index 0000000..fe9af7d --- /dev/null +++ b/user_service/keploy/atg/tests/test-398.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-398 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9c22935f-1a65-4d1a-9064-c702ca10afc9/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "153" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Sarabha Nagar", "city": "Ludhiana", "state": "Punjab", "postal_code": "141001", "country": "IN", "phone": "+919815012345", "is_default": true}' + timestamp: 2025-11-10T12:22:30.278341158Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"751a63b7-51ee-4790-b9e3-e93190ce458f"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:30.307936351Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777350 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/9c22935f-1a65-4d1a-9064-c702ca10afc9/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Sarabha Nagar\", \"city\": \"Ludhiana\", \"state\": \"Punjab\", \"postal_code\": \"141001\", \"country\": \"IN\", \"phone\": \"+919815012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-399.yaml b/user_service/keploy/atg/tests/test-399.yaml new file mode 100755 index 0000000..672904c --- /dev/null +++ b/user_service/keploy/atg/tests/test-399.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-399 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/9c22935f-1a65-4d1a-9064-c702ca10afc9 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:31.013871194Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:31.044107231Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777351 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/9c22935f-1a65-4d1a-9064-c702ca10afc9 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-4.yaml b/user_service/keploy/atg/tests/test-4.yaml new file mode 100755 index 0000000..74de4e5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-4.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-4 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Content-Length: "114" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sunita_rao_{{$randomInt}}", "email": "sunita.rao.{{$randomInt}}@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:11:21.550597948Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:11:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:11:21.551694968Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776681 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"sunita_rao_{{$randomInt}}\", \"email\": \"sunita.rao.{{$randomInt}}@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-40.yaml b/user_service/keploy/atg/tests/test-40.yaml new file mode 100755 index 0000000..45c8d8d --- /dev/null +++ b/user_service/keploy/atg/tests/test-40.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-40 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:20.567422511Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODYwLCJleHAiOjE3NjUzNjg4NjB9.2_NzcoQpgQUMzDlHQeEuEwCQ44wUimTaQ0TcrWe94e8","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:20.625421643Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776860 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-400.yaml b/user_service/keploy/atg/tests/test-400.yaml new file mode 100755 index 0000000..3a71acf --- /dev/null +++ b/user_service/keploy/atg/tests/test-400.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-400 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "84" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "aisha_agra", "email": "aisha_agra@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:32.983835821Z + resp: + status_code: 201 + header: + Content-Length: "115" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"aisha_agra@example.in","id":"5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a","phone":null,"username":"aisha_agra"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:33.07132743Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777353 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"aisha_agra\", \"email\": \"aisha_agra@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-401.yaml b/user_service/keploy/atg/tests/test-401.yaml new file mode 100755 index 0000000..97a6081 --- /dev/null +++ b/user_service/keploy/atg/tests/test-401.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-401 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "50" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "aisha_agra", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:33.827192555Z + resp: + status_code: 200 + header: + Content-Length: "333" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"aisha_agra@example.in","id":"5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1ZWQyYWEyMy0zYzU5LTQwZDQtYjRkNy00YzY4NTEwYjVmOWEiLCJ1c2VybmFtZSI6ImFpc2hhX2FncmEiLCJpYXQiOjE3NjI3NzczNTMsImV4cCI6MTc2NTM2OTM1M30.-iDZx1BCMqfruBmx-5t0s5DE9oIsRKytdHTfPSoLrN4","username":"aisha_agra"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:33.892651977Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777353 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"aisha_agra\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-402.yaml b/user_service/keploy/atg/tests/test-402.yaml new file mode 100755 index 0000000..c3ffbcf --- /dev/null +++ b/user_service/keploy/atg/tests/test-402.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-402 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "151" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Taj Ganj", "city": "Agra", "state": "Uttar Pradesh", "postal_code": "282001", "country": "IN", "phone": "+919837012345", "is_default": true}' + timestamp: 2025-11-10T12:22:34.623698562Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"ea294c9b-cec5-4bb4-aca0-c963574e5179"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:34.645941105Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777354 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"Taj Ganj\", \"city\": \"Agra\", \"state\": \"Uttar Pradesh\", \"postal_code\": \"282001\", \"country\": \"IN\", \"phone\": \"+919837012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-403.yaml b/user_service/keploy/atg/tests/test-403.yaml new file mode 100755 index 0000000..04ccae9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-403.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-403 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:35.418789379Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:35.450368986Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777355 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/5ed2aa23-3c59-40d4-b4d7-4c68510b5f9a \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-404.yaml b/user_service/keploy/atg/tests/test-404.yaml new file mode 100755 index 0000000..4ef4804 --- /dev/null +++ b/user_service/keploy/atg/tests/test-404.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-404 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "parth_vadodara", "email": "parth_vadodara@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:37.195071969Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"parth_vadodara@example.in","id":"cde545bf-bacd-4efb-891d-b197fc7e0e6c","phone":null,"username":"parth_vadodara"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:37.282247161Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777357 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"parth_vadodara\", \"email\": \"parth_vadodara@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-405.yaml b/user_service/keploy/atg/tests/test-405.yaml new file mode 100755 index 0000000..5212b19 --- /dev/null +++ b/user_service/keploy/atg/tests/test-405.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-405 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "parth_vadodara", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:38.015691505Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"parth_vadodara@example.in","id":"cde545bf-bacd-4efb-891d-b197fc7e0e6c","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjZGU1NDViZi1iYWNkLTRlZmItODkxZC1iMTk3ZmM3ZTBlNmMiLCJ1c2VybmFtZSI6InBhcnRoX3ZhZG9kYXJhIiwiaWF0IjoxNzYyNzc3MzU4LCJleHAiOjE3NjUzNjkzNTh9.G_htDUUnJ2yG-03W-hbSKNrZ8NWH7M7iX2mYJqskVcE","username":"parth_vadodara"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:38.083130091Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777358 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"parth_vadodara\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-406.yaml b/user_service/keploy/atg/tests/test-406.yaml new file mode 100755 index 0000000..6c83498 --- /dev/null +++ b/user_service/keploy/atg/tests/test-406.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-406 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/cde545bf-bacd-4efb-891d-b197fc7e0e6c/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "149" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Alkapuri", "city": "Vadodara", "state": "Gujarat", "postal_code": "390007", "country": "IN", "phone": "+919824012345", "is_default": true}' + timestamp: 2025-11-10T12:22:38.762985353Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"5e2876ef-bc0a-4d94-b867-bad0945c4275"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:38.78841358Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777358 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/cde545bf-bacd-4efb-891d-b197fc7e0e6c/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Alkapuri\", \"city\": \"Vadodara\", \"state\": \"Gujarat\", \"postal_code\": \"390007\", \"country\": \"IN\", \"phone\": \"+919824012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-407.yaml b/user_service/keploy/atg/tests/test-407.yaml new file mode 100755 index 0000000..17a3aee --- /dev/null +++ b/user_service/keploy/atg/tests/test-407.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-407 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/cde545bf-bacd-4efb-891d-b197fc7e0e6c + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:39.59064508Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:39.618404028Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777359 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/cde545bf-bacd-4efb-891d-b197fc7e0e6c \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-408.yaml b/user_service/keploy/atg/tests/test-408.yaml new file mode 100755 index 0000000..58a79bf --- /dev/null +++ b/user_service/keploy/atg/tests/test-408.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-408 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bipul_guwahati", "email": "bipul_guwahati@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:41.425653982Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:41 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bipul_guwahati@example.in","id":"a22e67bf-eae3-4636-8ef7-0a9772a483d9","phone":null,"username":"bipul_guwahati"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:41.509641669Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777361 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"bipul_guwahati\", \"email\": \"bipul_guwahati@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-409.yaml b/user_service/keploy/atg/tests/test-409.yaml new file mode 100755 index 0000000..d153888 --- /dev/null +++ b/user_service/keploy/atg/tests/test-409.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-409 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "bipul_guwahati", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:42.203137939Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"bipul_guwahati@example.in","id":"a22e67bf-eae3-4636-8ef7-0a9772a483d9","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhMjJlNjdiZi1lYWUzLTQ2MzYtOGVmNy0wYTk3NzJhNDgzZDkiLCJ1c2VybmFtZSI6ImJpcHVsX2d1d2FoYXRpIiwiaWF0IjoxNzYyNzc3MzYyLCJleHAiOjE3NjUzNjkzNjJ9.J6kuwNDAa8AESJn1mXYZNMf8k2lxaPRjLuPy91BnGVc","username":"bipul_guwahati"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:42.273695998Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777362 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"bipul_guwahati\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-41.yaml b/user_service/keploy/atg/tests/test-41.yaml new file mode 100755 index 0000000..69dc32d --- /dev/null +++ b/user_service/keploy/atg/tests/test-41.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-41 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "neha_fallback_01", "email": "neha.fallback.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:21.32758235Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:21.328963008Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776861 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"neha_fallback_01\", \"email\": \"neha.fallback.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-410.yaml b/user_service/keploy/atg/tests/test-410.yaml new file mode 100755 index 0000000..7ac5fa9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-410.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-410 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a22e67bf-eae3-4636-8ef7-0a9772a483d9/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "146" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "GS Road", "city": "Guwahati", "state": "Assam", "postal_code": "781005", "country": "IN", "phone": "+919864012345", "is_default": true}' + timestamp: 2025-11-10T12:22:42.960173817Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"aa45d8d6-302e-4967-b351-256da7a22a64"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:42.983995317Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777362 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/a22e67bf-eae3-4636-8ef7-0a9772a483d9/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"GS Road\", \"city\": \"Guwahati\", \"state\": \"Assam\", \"postal_code\": \"781005\", \"country\": \"IN\", \"phone\": \"+919864012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-411.yaml b/user_service/keploy/atg/tests/test-411.yaml new file mode 100755 index 0000000..482f2d5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-411.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-411 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a22e67bf-eae3-4636-8ef7-0a9772a483d9 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:43.783250223Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:43.811816243Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777363 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a22e67bf-eae3-4636-8ef7-0a9772a483d9 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-412.yaml b/user_service/keploy/atg/tests/test-412.yaml new file mode 100755 index 0000000..43c1174 --- /dev/null +++ b/user_service/keploy/atg/tests/test-412.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-412 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "84" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "smita_bbsr", "email": "smita_bbsr@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:45.715383112Z + resp: + status_code: 201 + header: + Content-Length: "115" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"smita_bbsr@example.in","id":"151f3c3f-ac17-4f3d-afe9-22f899357d9d","phone":null,"username":"smita_bbsr"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:45.800933828Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777365 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"smita_bbsr\", \"email\": \"smita_bbsr@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-413.yaml b/user_service/keploy/atg/tests/test-413.yaml new file mode 100755 index 0000000..f4c52fc --- /dev/null +++ b/user_service/keploy/atg/tests/test-413.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-413 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "50" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "smita_bbsr", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:46.621963991Z + resp: + status_code: 200 + header: + Content-Length: "333" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:46 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"smita_bbsr@example.in","id":"151f3c3f-ac17-4f3d-afe9-22f899357d9d","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxNTFmM2MzZi1hYzE3LTRmM2QtYWZlOS0yMmY4OTkzNTdkOWQiLCJ1c2VybmFtZSI6InNtaXRhX2Jic3IiLCJpYXQiOjE3NjI3NzczNjYsImV4cCI6MTc2NTM2OTM2Nn0.Leg4M4qo3MHmP9Abm0o1qN24VzRrQ3cg2ZosvqVln44","username":"smita_bbsr"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:46.702934765Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777366 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"smita_bbsr\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-414.yaml b/user_service/keploy/atg/tests/test-414.yaml new file mode 100755 index 0000000..15af050 --- /dev/null +++ b/user_service/keploy/atg/tests/test-414.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-414 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/151f3c3f-ac17-4f3d-afe9-22f899357d9d/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "155" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Saheed Nagar", "city": "Bhubaneswar", "state": "Odisha", "postal_code": "751007", "country": "IN", "phone": "+919437012345", "is_default": true}' + timestamp: 2025-11-10T12:22:47.451396864Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"3c7d34c2-64ed-4579-9bb4-72a576ab2e47"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:47.479052373Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777367 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/151f3c3f-ac17-4f3d-afe9-22f899357d9d/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Saheed Nagar\", \"city\": \"Bhubaneswar\", \"state\": \"Odisha\", \"postal_code\": \"751007\", \"country\": \"IN\", \"phone\": \"+919437012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-415.yaml b/user_service/keploy/atg/tests/test-415.yaml new file mode 100755 index 0000000..4fcfb19 --- /dev/null +++ b/user_service/keploy/atg/tests/test-415.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-415 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/151f3c3f-ac17-4f3d-afe9-22f899357d9d + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:48.200407121Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:48.231034345Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777368 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/151f3c3f-ac17-4f3d-afe9-22f899357d9d \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-416.yaml b/user_service/keploy/atg/tests/test-416.yaml new file mode 100755 index 0000000..a2976e2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-416.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-416 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "deepak_ranchi", "email": "deepak_ranchi@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:50.231037289Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:50 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"deepak_ranchi@example.in","id":"7c9c0bb4-569d-483f-9ed8-86cb9add8591","phone":null,"username":"deepak_ranchi"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:50.312584727Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777370 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"deepak_ranchi\", \"email\": \"deepak_ranchi@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-417.yaml b/user_service/keploy/atg/tests/test-417.yaml new file mode 100755 index 0000000..b9ec3d5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-417.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-417 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "deepak_ranchi", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:51.129141708Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"deepak_ranchi@example.in","id":"7c9c0bb4-569d-483f-9ed8-86cb9add8591","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3YzljMGJiNC01NjlkLTQ4M2YtOWVkOC04NmNiOWFkZDg1OTEiLCJ1c2VybmFtZSI6ImRlZXBha19yYW5jaGkiLCJpYXQiOjE3NjI3NzczNzEsImV4cCI6MTc2NTM2OTM3MX0.XuuIalwUuzblhCC_NywQ6kUTVUzF-x9zJyUv4tniHBk","username":"deepak_ranchi"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:51.207061897Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777371 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"deepak_ranchi\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-418.yaml b/user_service/keploy/atg/tests/test-418.yaml new file mode 100755 index 0000000..ce4792e --- /dev/null +++ b/user_service/keploy/atg/tests/test-418.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-418 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/7c9c0bb4-569d-483f-9ed8-86cb9add8591/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "151" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Kanke Road", "city": "Ranchi", "state": "Jharkhand", "postal_code": "834008", "country": "IN", "phone": "+919431112345", "is_default": true}' + timestamp: 2025-11-10T12:22:51.885435244Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"6733d6ab-8f6c-44c2-93fc-3f7cb8211ad7"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:51.910046278Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777371 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/7c9c0bb4-569d-483f-9ed8-86cb9add8591/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"Kanke Road\", \"city\": \"Ranchi\", \"state\": \"Jharkhand\", \"postal_code\": \"834008\", \"country\": \"IN\", \"phone\": \"+919431112345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-419.yaml b/user_service/keploy/atg/tests/test-419.yaml new file mode 100755 index 0000000..af79e4b --- /dev/null +++ b/user_service/keploy/atg/tests/test-419.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-419 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/7c9c0bb4-569d-483f-9ed8-86cb9add8591 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:52.689511841Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:52.726274554Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777372 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/7c9c0bb4-569d-483f-9ed8-86cb9add8591 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-42.yaml b/user_service/keploy/atg/tests/test-42.yaml new file mode 100755 index 0000000..f6677e3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-42.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-42 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:22.064449213Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:22.065621743Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776862 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ diff --git a/user_service/keploy/atg/tests/test-420.yaml b/user_service/keploy/atg/tests/test-420.yaml new file mode 100755 index 0000000..d7ef0cf --- /dev/null +++ b/user_service/keploy/atg/tests/test-420.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-420 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "84" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "gaurav_ddn", "email": "gaurav_ddn@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:54.608445035Z + resp: + status_code: 201 + header: + Content-Length: "115" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"gaurav_ddn@example.in","id":"a95e1d27-6e25-4d2e-afdf-c6756e7a6b26","phone":null,"username":"gaurav_ddn"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:54.696639258Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777374 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"gaurav_ddn\", \"email\": \"gaurav_ddn@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-421.yaml b/user_service/keploy/atg/tests/test-421.yaml new file mode 100755 index 0000000..335122e --- /dev/null +++ b/user_service/keploy/atg/tests/test-421.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-421 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "50" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "gaurav_ddn", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:55.441760918Z + resp: + status_code: 200 + header: + Content-Length: "333" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:55 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"gaurav_ddn@example.in","id":"a95e1d27-6e25-4d2e-afdf-c6756e7a6b26","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhOTVlMWQyNy02ZTI1LTRkMmUtYWZkZi1jNjc1NmU3YTZiMjYiLCJ1c2VybmFtZSI6ImdhdXJhdl9kZG4iLCJpYXQiOjE3NjI3NzczNzUsImV4cCI6MTc2NTM2OTM3NX0.FI_ODnoO1P1hY5jEALsor1IId3z8O7SjRWOrdRbPWyE","username":"gaurav_ddn"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:55.512505606Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777375 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"gaurav_ddn\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-422.yaml b/user_service/keploy/atg/tests/test-422.yaml new file mode 100755 index 0000000..5d5b628 --- /dev/null +++ b/user_service/keploy/atg/tests/test-422.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-422 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a95e1d27-6e25-4d2e-afdf-c6756e7a6b26/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "156" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Rajpur Road", "city": "Dehradun", "state": "Uttarakhand", "postal_code": "248001", "country": "IN", "phone": "+919412012345", "is_default": true}' + timestamp: 2025-11-10T12:22:56.353851072Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:56 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"8bd5d485-3e66-43e1-9d78-35736f37b0c4"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:56.379869584Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777376 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/a95e1d27-6e25-4d2e-afdf-c6756e7a6b26/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Rajpur Road\", \"city\": \"Dehradun\", \"state\": \"Uttarakhand\", \"postal_code\": \"248001\", \"country\": \"IN\", \"phone\": \"+919412012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-423.yaml b/user_service/keploy/atg/tests/test-423.yaml new file mode 100755 index 0000000..d8cde06 --- /dev/null +++ b/user_service/keploy/atg/tests/test-423.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-423 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a95e1d27-6e25-4d2e-afdf-c6756e7a6b26 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:22:57.114465682Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:57.147195408Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777377 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a95e1d27-6e25-4d2e-afdf-c6756e7a6b26 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-424.yaml b/user_service/keploy/atg/tests/test-424.yaml new file mode 100755 index 0000000..64d369a --- /dev/null +++ b/user_service/keploy/atg/tests/test-424.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-424 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "chaitra_mysuru", "email": "chaitra_mysuru@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:59.030246705Z + resp: + status_code: 201 + header: + Content-Length: "123" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:59 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"chaitra_mysuru@example.in","id":"0b152bc2-443c-424f-a1eb-5e872f244af0","phone":null,"username":"chaitra_mysuru"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:59.111062709Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777379 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"chaitra_mysuru\", \"email\": \"chaitra_mysuru@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-425.yaml b/user_service/keploy/atg/tests/test-425.yaml new file mode 100755 index 0000000..5d04a57 --- /dev/null +++ b/user_service/keploy/atg/tests/test-425.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-425 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "chaitra_mysuru", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:22:59.806026889Z + resp: + status_code: 200 + header: + Content-Length: "346" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:22:59 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"chaitra_mysuru@example.in","id":"0b152bc2-443c-424f-a1eb-5e872f244af0","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwYjE1MmJjMi00NDNjLTQyNGYtYTFlYi01ZTg3MmYyNDRhZjAiLCJ1c2VybmFtZSI6ImNoYWl0cmFfbXlzdXJ1IiwiaWF0IjoxNzYyNzc3Mzc5LCJleHAiOjE3NjUzNjkzNzl9.hQS6WLK4_IqYN0kVng6-GaxhLuwIFafmzBItO8R40ps","username":"chaitra_mysuru"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:22:59.871579001Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777379 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"chaitra_mysuru\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-426.yaml b/user_service/keploy/atg/tests/test-426.yaml new file mode 100755 index 0000000..02c6682 --- /dev/null +++ b/user_service/keploy/atg/tests/test-426.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-426 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/0b152bc2-443c-424f-a1eb-5e872f244af0/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "153" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Kuvempunagar", "city": "Mysuru", "state": "Karnataka", "postal_code": "570023", "country": "IN", "phone": "+919845012345", "is_default": true}' + timestamp: 2025-11-10T12:23:00.567672033Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:00 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"f8737d26-8010-4838-9d0d-faee0c60c74f"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:00.594791406Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777380 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/0b152bc2-443c-424f-a1eb-5e872f244af0/addresses \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"line1\": \"Kuvempunagar\", \"city\": \"Mysuru\", \"state\": \"Karnataka\", \"postal_code\": \"570023\", \"country\": \"IN\", \"phone\": \"+919845012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-427.yaml b/user_service/keploy/atg/tests/test-427.yaml new file mode 100755 index 0000000..ce6f098 --- /dev/null +++ b/user_service/keploy/atg/tests/test-427.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-427 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/0b152bc2-443c-424f-a1eb-5e872f244af0 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:01.305964201Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:01.337800264Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777381 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/0b152bc2-443c-424f-a1eb-5e872f244af0 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-428.yaml b/user_service/keploy/atg/tests/test-428.yaml new file mode 100755 index 0000000..d9d6fbc --- /dev/null +++ b/user_service/keploy/atg/tests/test-428.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-428 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "farooq_srinagar", "email": "farooq_srinagar@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:03.299977401Z + resp: + status_code: 201 + header: + Content-Length: "125" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"farooq_srinagar@example.in","id":"86dd9463-20ce-4da2-b106-2cf1077bda0b","phone":null,"username":"farooq_srinagar"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:03.385900673Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777383 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"farooq_srinagar\", \"email\": \"farooq_srinagar@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-429.yaml b/user_service/keploy/atg/tests/test-429.yaml new file mode 100755 index 0000000..cfa2bdd --- /dev/null +++ b/user_service/keploy/atg/tests/test-429.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-429 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "farooq_srinagar", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:04.261061468Z + resp: + status_code: 200 + header: + Content-Length: "350" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:04 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"farooq_srinagar@example.in","id":"86dd9463-20ce-4da2-b106-2cf1077bda0b","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4NmRkOTQ2My0yMGNlLTRkYTItYjEwNi0yY2YxMDc3YmRhMGIiLCJ1c2VybmFtZSI6ImZhcm9vcV9zcmluYWdhciIsImlhdCI6MTc2Mjc3NzM4NCwiZXhwIjoxNzY1MzY5Mzg0fQ.SaiL4pdliwHCUuL6pAHydDc5z8Shjl4tTGg44ICQYXQ","username":"farooq_srinagar"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:04.330814315Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777384 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"farooq_srinagar\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-43.yaml b/user_service/keploy/atg/tests/test-43.yaml new file mode 100755 index 0000000..a2a392b --- /dev/null +++ b/user_service/keploy/atg/tests/test-43.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-43 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:25.986586255Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODY2LCJleHAiOjE3NjUzNjg4NjZ9.PoAYpy195riRsnTwmOVJMjYTSR1y8Q3boyQ0Lrv13JE","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:26.04777853Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776866 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-430.yaml b/user_service/keploy/atg/tests/test-430.yaml new file mode 100755 index 0000000..08aabdc --- /dev/null +++ b/user_service/keploy/atg/tests/test-430.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-430 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/86dd9463-20ce-4da2-b106-2cf1077bda0b/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "160" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Lal Chowk", "city": "Srinagar", "state": "Jammu and Kashmir", "postal_code": "190001", "country": "IN", "phone": "+919419012345", "is_default": true}' + timestamp: 2025-11-10T12:23:05.014033523Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"8ca3d49c-0888-4b28-9987-d25e74f145e6"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:05.042394927Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777385 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/86dd9463-20ce-4da2-b106-2cf1077bda0b/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"line1\": \"Lal Chowk\", \"city\": \"Srinagar\", \"state\": \"Jammu and Kashmir\", \"postal_code\": \"190001\", \"country\": \"IN\", \"phone\": \"+919419012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-431.yaml b/user_service/keploy/atg/tests/test-431.yaml new file mode 100755 index 0000000..e45c569 --- /dev/null +++ b/user_service/keploy/atg/tests/test-431.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-431 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/86dd9463-20ce-4da2-b106-2cf1077bda0b + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:05.814257985Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:05.84129722Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777385 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/86dd9463-20ce-4da2-b106-2cf1077bda0b \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-432.yaml b/user_service/keploy/atg/tests/test-432.yaml new file mode 100755 index 0000000..c4d362e --- /dev/null +++ b/user_service/keploy/atg/tests/test-432.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-432 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "88" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "ankit_shimla", "email": "ankit_shimla@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:07.772539657Z + resp: + status_code: 201 + header: + Content-Length: "119" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"ankit_shimla@example.in","id":"2d5b0ab1-6b3a-4b31-a0c1-78d853542c98","phone":null,"username":"ankit_shimla"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:07.855015838Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777387 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"ankit_shimla\", \"email\": \"ankit_shimla@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-433.yaml b/user_service/keploy/atg/tests/test-433.yaml new file mode 100755 index 0000000..8e43ace --- /dev/null +++ b/user_service/keploy/atg/tests/test-433.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-433 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "ankit_shimla", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:08.641546705Z + resp: + status_code: 200 + header: + Content-Length: "340" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"ankit_shimla@example.in","id":"2d5b0ab1-6b3a-4b31-a0c1-78d853542c98","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyZDViMGFiMS02YjNhLTRiMzEtYTBjMS03OGQ4NTM1NDJjOTgiLCJ1c2VybmFtZSI6ImFua2l0X3NoaW1sYSIsImlhdCI6MTc2Mjc3NzM4OCwiZXhwIjoxNzY1MzY5Mzg4fQ.qbw0m_y8__F68VduPTTb1N9Q3IxewTU4eo0rIVIPMn4","username":"ankit_shimla"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:08.711757368Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777388 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"ankit_shimla\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-434.yaml b/user_service/keploy/atg/tests/test-434.yaml new file mode 100755 index 0000000..f4d99d3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-434.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-434 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/2d5b0ab1-6b3a-4b31-a0c1-78d853542c98/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "161" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "The Mall Road", "city": "Shimla", "state": "Himachal Pradesh", "postal_code": "171001", "country": "IN", "phone": "+919418012345", "is_default": true}' + timestamp: 2025-11-10T12:23:09.468308894Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:09 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"60846d3f-1c66-44e2-bd08-d0cc0b390e18"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:09.493514464Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777389 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/2d5b0ab1-6b3a-4b31-a0c1-78d853542c98/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"The Mall Road\", \"city\": \"Shimla\", \"state\": \"Himachal Pradesh\", \"postal_code\": \"171001\", \"country\": \"IN\", \"phone\": \"+919418012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-435.yaml b/user_service/keploy/atg/tests/test-435.yaml new file mode 100755 index 0000000..860b780 --- /dev/null +++ b/user_service/keploy/atg/tests/test-435.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-435 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/2d5b0ab1-6b3a-4b31-a0c1-78d853542c98 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:10.234286652Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:10 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:10.267983881Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777390 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/2d5b0ab1-6b3a-4b31-a0c1-78d853542c98 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-436.yaml b/user_service/keploy/atg/tests/test-436.yaml new file mode 100755 index 0000000..8d32a86 --- /dev/null +++ b/user_service/keploy/atg/tests/test-436.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-436 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "shreya_raipur", "email": "shreya_raipur@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:12.139574828Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"shreya_raipur@example.in","id":"c6513285-696c-4f39-ac7a-116bfb97a272","phone":null,"username":"shreya_raipur"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:12.217963203Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777392 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"shreya_raipur\", \"email\": \"shreya_raipur@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-437.yaml b/user_service/keploy/atg/tests/test-437.yaml new file mode 100755 index 0000000..80506b2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-437.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-437 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "shreya_raipur", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:12.900761327Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"shreya_raipur@example.in","id":"c6513285-696c-4f39-ac7a-116bfb97a272","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjNjUxMzI4NS02OTZjLTRmMzktYWM3YS0xMTZiZmI5N2EyNzIiLCJ1c2VybmFtZSI6InNocmV5YV9yYWlwdXIiLCJpYXQiOjE3NjI3NzczOTIsImV4cCI6MTc2NTM2OTM5Mn0.FSeyaJD0SGiSBWa6g072VLF5bjpxX1HA1CbGxEw2CV0","username":"shreya_raipur"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:12.968353191Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777392 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"shreya_raipur\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-438.yaml b/user_service/keploy/atg/tests/test-438.yaml new file mode 100755 index 0000000..8175186 --- /dev/null +++ b/user_service/keploy/atg/tests/test-438.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-438 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c6513285-696c-4f39-ac7a-116bfb97a272/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "155" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Civil Lines", "city": "Raipur", "state": "Chhattisgarh", "postal_code": "492001", "country": "IN", "phone": "+919425212345", "is_default": true}' + timestamp: 2025-11-10T12:23:13.667549259Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"8fe9dd7c-b34d-4b02-a06a-7d566401dec7"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:13.688977139Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777393 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/c6513285-696c-4f39-ac7a-116bfb97a272/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Civil Lines\", \"city\": \"Raipur\", \"state\": \"Chhattisgarh\", \"postal_code\": \"492001\", \"country\": \"IN\", \"phone\": \"+919425212345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-439.yaml b/user_service/keploy/atg/tests/test-439.yaml new file mode 100755 index 0000000..f146893 --- /dev/null +++ b/user_service/keploy/atg/tests/test-439.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-439 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c6513285-696c-4f39-ac7a-116bfb97a272 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:14.439397708Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:14 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:14.472720259Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777394 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/c6513285-696c-4f39-ac7a-116bfb97a272 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-44.yaml b/user_service/keploy/atg/tests/test-44.yaml new file mode 100755 index 0000000..0d3e42a --- /dev/null +++ b/user_service/keploy/atg/tests/test-44.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-44 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "kavita_list_01", "email": "kavita.list.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:26.773725105Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:26.775248991Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776866 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"kavita_list_01\", \"email\": \"kavita.list.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-440.yaml b/user_service/keploy/atg/tests/test-440.yaml new file mode 100755 index 0000000..191f62b --- /dev/null +++ b/user_service/keploy/atg/tests/test-440.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-440 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "karthik_cbe", "email": "karthik_cbe@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:16.857781349Z + resp: + status_code: 201 + header: + Content-Length: "117" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"karthik_cbe@example.in","id":"c451d32e-5cdf-4ca8-aeeb-0442518719a7","phone":null,"username":"karthik_cbe"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:16.940986344Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777396 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"karthik_cbe\", \"email\": \"karthik_cbe@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-441.yaml b/user_service/keploy/atg/tests/test-441.yaml new file mode 100755 index 0000000..7d35c04 --- /dev/null +++ b/user_service/keploy/atg/tests/test-441.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-441 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "51" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "karthik_cbe", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:17.663925853Z + resp: + status_code: 200 + header: + Content-Length: "336" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"karthik_cbe@example.in","id":"c451d32e-5cdf-4ca8-aeeb-0442518719a7","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjNDUxZDMyZS01Y2RmLTRjYTgtYWVlYi0wNDQyNTE4NzE5YTciLCJ1c2VybmFtZSI6ImthcnRoaWtfY2JlIiwiaWF0IjoxNzYyNzc3Mzk3LCJleHAiOjE3NjUzNjkzOTd9.SuiY6FuTkc5-93v_SE54nA0LlmVcIEjCgeCk3qrVtAI","username":"karthik_cbe"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:17.736569986Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777397 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"karthik_cbe\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-442.yaml b/user_service/keploy/atg/tests/test-442.yaml new file mode 100755 index 0000000..c452248 --- /dev/null +++ b/user_service/keploy/atg/tests/test-442.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-442 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c451d32e-5cdf-4ca8-aeeb-0442518719a7/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "154" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "RS Puram", "city": "Coimbatore", "state": "Tamil Nadu", "postal_code": "641002", "country": "IN", "phone": "+919843012345", "is_default": true}' + timestamp: 2025-11-10T12:23:18.413504609Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:18 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"4f16c0dc-ad54-493d-9caa-7f07512f702c"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:18.439125005Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777398 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/c451d32e-5cdf-4ca8-aeeb-0442518719a7/addresses \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"line1\": \"RS Puram\", \"city\": \"Coimbatore\", \"state\": \"Tamil Nadu\", \"postal_code\": \"641002\", \"country\": \"IN\", \"phone\": \"+919843012345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-443.yaml b/user_service/keploy/atg/tests/test-443.yaml new file mode 100755 index 0000000..ee3c222 --- /dev/null +++ b/user_service/keploy/atg/tests/test-443.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-443 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/c451d32e-5cdf-4ca8-aeeb-0442518719a7 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:19.157342194Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:19 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:19.180477641Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777399 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/c451d32e-5cdf-4ca8-aeeb-0442518719a7 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-444.yaml b/user_service/keploy/atg/tests/test-444.yaml new file mode 100755 index 0000000..7ea8843 --- /dev/null +++ b/user_service/keploy/atg/tests/test-444.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-444 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "meena_madurai", "email": "meena_madurai@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:21.704076156Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"meena_madurai@example.in","id":"7589f9d1-ff0f-4de5-8826-94e379e80c71","phone":null,"username":"meena_madurai"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:21.800963847Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777401 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"meena_madurai\", \"email\": \"meena_madurai@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-445.yaml b/user_service/keploy/atg/tests/test-445.yaml new file mode 100755 index 0000000..c4ffbf8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-445.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-445 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "meena_madurai", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:22.574838361Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"meena_madurai@example.in","id":"7589f9d1-ff0f-4de5-8826-94e379e80c71","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3NTg5ZjlkMS1mZjBmLTRkZTUtODgyNi05NGUzNzllODBjNzEiLCJ1c2VybmFtZSI6Im1lZW5hX21hZHVyYWkiLCJpYXQiOjE3NjI3Nzc0MDIsImV4cCI6MTc2NTM2OTQwMn0.KQ5i4q37OfQNVtTLPAotg4A8OJe2ATZOrz3zIK0m0kA","username":"meena_madurai"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:22.646628251Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777402 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"meena_madurai\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-446.yaml b/user_service/keploy/atg/tests/test-446.yaml new file mode 100755 index 0000000..eca2fb2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-446.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-446 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/7589f9d1-ff0f-4de5-8826-94e379e80c71/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "153" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Anna Nagar", "city": "Madurai", "state": "Tamil Nadu", "postal_code": "625020", "country": "IN", "phone": "+919842112345", "is_default": true}' + timestamp: 2025-11-10T12:23:23.321103256Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"ce31628e-b33b-4dff-8662-bc96f9929894"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:23.346728552Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777403 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/7589f9d1-ff0f-4de5-8826-94e379e80c71/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Anna Nagar\", \"city\": \"Madurai\", \"state\": \"Tamil Nadu\", \"postal_code\": \"625020\", \"country\": \"IN\", \"phone\": \"+919842112345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-447.yaml b/user_service/keploy/atg/tests/test-447.yaml new file mode 100755 index 0000000..2379abc --- /dev/null +++ b/user_service/keploy/atg/tests/test-447.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-447 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/7589f9d1-ff0f-4de5-8826-94e379e80c71 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:24.149883041Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:24 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:24.174362787Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777404 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/7589f9d1-ff0f-4de5-8826-94e379e80c71 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-448.yaml b/user_service/keploy/atg/tests/test-448.yaml new file mode 100755 index 0000000..b3becbc --- /dev/null +++ b/user_service/keploy/atg/tests/test-448.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-448 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sunil_jodhpur", "email": "sunil_jodhpur@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:26.58856181Z + resp: + status_code: 201 + header: + Content-Length: "121" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"sunil_jodhpur@example.in","id":"a1276f9a-46d4-471e-8067-75cb6ea37800","phone":null,"username":"sunil_jodhpur"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:26.6759843Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777406 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"sunil_jodhpur\", \"email\": \"sunil_jodhpur@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-449.yaml b/user_service/keploy/atg/tests/test-449.yaml new file mode 100755 index 0000000..767f329 --- /dev/null +++ b/user_service/keploy/atg/tests/test-449.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-449 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sunil_jodhpur", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:27.524144384Z + resp: + status_code: 200 + header: + Content-Length: "343" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"sunil_jodhpur@example.in","id":"a1276f9a-46d4-471e-8067-75cb6ea37800","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhMTI3NmY5YS00NmQ0LTQ3MWUtODA2Ny03NWNiNmVhMzc4MDAiLCJ1c2VybmFtZSI6InN1bmlsX2pvZGhwdXIiLCJpYXQiOjE3NjI3Nzc0MDcsImV4cCI6MTc2NTM2OTQwN30.u2PejazngBrjSuB_EoeCZoBX7u7PhQ1gisDTSQ1ZJnM","username":"sunil_jodhpur"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:27.618999182Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777407 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"sunil_jodhpur\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-45.yaml b/user_service/keploy/atg/tests/test-45.yaml new file mode 100755 index 0000000..7ed25db --- /dev/null +++ b/user_service/keploy/atg/tests/test-45.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-45 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:27.50659179Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:27.508180827Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776867 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-450.yaml b/user_service/keploy/atg/tests/test-450.yaml new file mode 100755 index 0000000..794f87a --- /dev/null +++ b/user_service/keploy/atg/tests/test-450.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-450 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a1276f9a-46d4-471e-8067-75cb6ea37800/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "152" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Sardarpura", "city": "Jodhpur", "state": "Rajasthan", "postal_code": "342003", "country": "IN", "phone": "+919829112345", "is_default": true}' + timestamp: 2025-11-10T12:23:28.352197447Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:28 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"57e896c2-18ea-4aa2-9703-f064429a1b72"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:28.389165658Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777408 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/a1276f9a-46d4-471e-8067-75cb6ea37800/addresses \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"line1\": \"Sardarpura\", \"city\": \"Jodhpur\", \"state\": \"Rajasthan\", \"postal_code\": \"342003\", \"country\": \"IN\", \"phone\": \"+919829112345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-451.yaml b/user_service/keploy/atg/tests/test-451.yaml new file mode 100755 index 0000000..eb91a7b --- /dev/null +++ b/user_service/keploy/atg/tests/test-451.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-451 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/a1276f9a-46d4-471e-8067-75cb6ea37800 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:29.128570661Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:29.153954789Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777409 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/a1276f9a-46d4-471e-8067-75cb6ea37800 \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-452.yaml b/user_service/keploy/atg/tests/test-452.yaml new file mode 100755 index 0000000..830169b --- /dev/null +++ b/user_service/keploy/atg/tests/test-452.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-452 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "80" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vani_vja", "email": "vani_vja@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:31.270283711Z + resp: + status_code: 201 + header: + Content-Length: "111" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"vani_vja@example.in","id":"96b38460-486f-42f1-8251-da28d33c8749","phone":null,"username":"vani_vja"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:31.371537026Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777411 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"vani_vja\", \"email\": \"vani_vja@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-453.yaml b/user_service/keploy/atg/tests/test-453.yaml new file mode 100755 index 0000000..e4ecdd4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-453.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-453 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "48" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vani_vja", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:32.131843314Z + resp: + status_code: 200 + header: + Content-Length: "326" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"vani_vja@example.in","id":"96b38460-486f-42f1-8251-da28d33c8749","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5NmIzODQ2MC00ODZmLTQyZjEtODI1MS1kYTI4ZDMzYzg3NDkiLCJ1c2VybmFtZSI6InZhbmlfdmphIiwiaWF0IjoxNzYyNzc3NDEyLCJleHAiOjE3NjUzNjk0MTJ9.z9G1Fk1dkXPyFlhzjts4VysJuaj5Y-c6ZMsZDY3fGOc","username":"vani_vja"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:32.203972381Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777412 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"vani_vja\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-454.yaml b/user_service/keploy/atg/tests/test-454.yaml new file mode 100755 index 0000000..d6b26de --- /dev/null +++ b/user_service/keploy/atg/tests/test-454.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-454 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/96b38460-486f-42f1-8251-da28d33c8749/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "161" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Benz Circle", "city": "Vijayawada", "state": "Andhra Pradesh", "postal_code": "520010", "country": "IN", "phone": "+919848112345", "is_default": true}' + timestamp: 2025-11-10T12:23:32.900672561Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"22677a17-3088-4ec3-ad4c-cb8dec1d6cf0"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:32.930878469Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777412 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/96b38460-486f-42f1-8251-da28d33c8749/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Benz Circle\", \"city\": \"Vijayawada\", \"state\": \"Andhra Pradesh\", \"postal_code\": \"520010\", \"country\": \"IN\", \"phone\": \"+919848112345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-455.yaml b/user_service/keploy/atg/tests/test-455.yaml new file mode 100755 index 0000000..f864ad5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-455.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-455 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/96b38460-486f-42f1-8251-da28d33c8749 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:33.816473102Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:33.846456Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777413 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/96b38460-486f-42f1-8251-da28d33c8749 \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-456.yaml b/user_service/keploy/atg/tests/test-456.yaml new file mode 100755 index 0000000..d68159d --- /dev/null +++ b/user_service/keploy/atg/tests/test-456.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-456 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "nair_trivandrum", "email": "nair_trivandrum@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:35.793049993Z + resp: + status_code: 201 + header: + Content-Length: "125" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"nair_trivandrum@example.in","id":"7a640bce-243a-429e-907b-feb7b10dc1fb","phone":null,"username":"nair_trivandrum"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:35.887390234Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777415 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"nair_trivandrum\", \"email\": \"nair_trivandrum@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-457.yaml b/user_service/keploy/atg/tests/test-457.yaml new file mode 100755 index 0000000..8de0785 --- /dev/null +++ b/user_service/keploy/atg/tests/test-457.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-457 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "nair_trivandrum", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:23:36.748621041Z + resp: + status_code: 200 + header: + Content-Length: "350" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"nair_trivandrum@example.in","id":"7a640bce-243a-429e-907b-feb7b10dc1fb","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3YTY0MGJjZS0yNDNhLTQyOWUtOTA3Yi1mZWI3YjEwZGMxZmIiLCJ1c2VybmFtZSI6Im5haXJfdHJpdmFuZHJ1bSIsImlhdCI6MTc2Mjc3NzQxNiwiZXhwIjoxNzY1MzY5NDE2fQ.d9IjTj9nyB_Bhc1S9j_OJ8WvM5q1KhcEzDQlgor2Vhg","username":"nair_trivandrum"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:36.830353269Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777416 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"nair_trivandrum\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-458.yaml b/user_service/keploy/atg/tests/test-458.yaml new file mode 100755 index 0000000..5c6f635 --- /dev/null +++ b/user_service/keploy/atg/tests/test-458.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-458 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/7a640bce-243a-429e-907b-feb7b10dc1fb/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "156" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "Pattom", "city": "Thiruvananthapuram", "state": "Kerala", "postal_code": "695004", "country": "IN", "phone": "+919847112345", "is_default": true}' + timestamp: 2025-11-10T12:23:37.530075575Z + resp: + status_code: 201 + header: + Content-Length: "46" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"id":"d95b3363-0f2f-4d70-98ca-02d2b6576427"} + status_message: Created + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:37.556020529Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777417 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/7a640bce-243a-429e-907b-feb7b10dc1fb/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"line1\": \"Pattom\", \"city\": \"Thiruvananthapuram\", \"state\": \"Kerala\", \"postal_code\": \"695004\", \"country\": \"IN\", \"phone\": \"+919847112345\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-459.yaml b/user_service/keploy/atg/tests/test-459.yaml new file mode 100755 index 0000000..b0af687 --- /dev/null +++ b/user_service/keploy/atg/tests/test-459.yaml @@ -0,0 +1,43 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-459 +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/7a640bce-243a-429e-907b-feb7b10dc1fb + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:23:38.318432761Z + resp: + status_code: 200 + header: + Content-Length: "17" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:23:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"deleted":true} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:23:38.347255021Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777418 +curl: | + curl --request DELETE \ + --url http://localhost:8082/api/v1/users/7a640bce-243a-429e-907b-feb7b10dc1fb \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-46.yaml b/user_service/keploy/atg/tests/test-46.yaml new file mode 100755 index 0000000..3498a70 --- /dev/null +++ b/user_service/keploy/atg/tests/test-46.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-46 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:31.485052226Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODcxLCJleHAiOjE3NjUzNjg4NzF9.56N35-IhpfU1sVLJCTloQHLg88S0hvlyJ16R5YmU9l8","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:31.54398929Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776871 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-460.yaml b/user_service/keploy/atg/tests/test-460.yaml new file mode 100755 index 0000000..95f0771 --- /dev/null +++ b/user_service/keploy/atg/tests/test-460.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-460 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "93" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_01", "email": "productuser_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:01.987189813Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:01.988549052Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777501 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"productuser_01\", \"email\": \"productuser_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-461.yaml b/user_service/keploy/atg/tests/test-461.yaml new file mode 100755 index 0000000..b9152d1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-461.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-461 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:02.731421608Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:02.732832637Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777502 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"productuser_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-462.yaml b/user_service/keploy/atg/tests/test-462.yaml new file mode 100755 index 0000000..f1f3333 --- /dev/null +++ b/user_service/keploy/atg/tests/test-462.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-462 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:03.528281005Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:03 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:03.529603394Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777503 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-463.yaml b/user_service/keploy/atg/tests/test-463.yaml new file mode 100755 index 0000000..7d9662b --- /dev/null +++ b/user_service/keploy/atg/tests/test-463.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-463 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "93" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_02", "email": "productuser_02@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:06.54945855Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:06.550716609Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777506 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"productuser_02\", \"email\": \"productuser_02@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-464.yaml b/user_service/keploy/atg/tests/test-464.yaml new file mode 100755 index 0000000..6f2897c --- /dev/null +++ b/user_service/keploy/atg/tests/test-464.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-464 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_02", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:07.443883644Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:07.445356582Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777507 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"productuser_02\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-465.yaml b/user_service/keploy/atg/tests/test-465.yaml new file mode 100755 index 0000000..6f392f2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-465.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-465 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:08.197199495Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:08.198509914Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777508 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-466.yaml b/user_service/keploy/atg/tests/test-466.yaml new file mode 100755 index 0000000..77347ab --- /dev/null +++ b/user_service/keploy/atg/tests/test-466.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-466 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "93" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_03", "email": "productuser_03@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:12.136279931Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:12.13753343Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777512 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"productuser_03\", \"email\": \"productuser_03@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-467.yaml b/user_service/keploy/atg/tests/test-467.yaml new file mode 100755 index 0000000..66301d1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-467.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-467 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_03", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:12.899848856Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:12.901091135Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777512 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"productuser_03\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-468.yaml b/user_service/keploy/atg/tests/test-468.yaml new file mode 100755 index 0000000..3fa0337 --- /dev/null +++ b/user_service/keploy/atg/tests/test-468.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-468 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:13.718648051Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:13.71979975Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777513 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-469.yaml b/user_service/keploy/atg/tests/test-469.yaml new file mode 100755 index 0000000..5d687ef --- /dev/null +++ b/user_service/keploy/atg/tests/test-469.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-469 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "89" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_01", "email": "orderuser_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:16.935169202Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:16.936258493Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777516 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"orderuser_01\", \"email\": \"orderuser_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-47.yaml b/user_service/keploy/atg/tests/test-47.yaml new file mode 100755 index 0000000..f9a56f3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-47.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-47 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/99999999-9999-9999-9999-999999999999 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:32.221246938Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:32.222619207Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776872 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/orders/99999999-9999-9999-9999-999999999999 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-470.yaml b/user_service/keploy/atg/tests/test-470.yaml new file mode 100755 index 0000000..68c620f --- /dev/null +++ b/user_service/keploy/atg/tests/test-470.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-470 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:17.653432196Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:17.655066071Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777517 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"orderuser_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-471.yaml b/user_service/keploy/atg/tests/test-471.yaml new file mode 100755 index 0000000..ee79d74 --- /dev/null +++ b/user_service/keploy/atg/tests/test-471.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-471 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:18.452378477Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:18 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:18.453853184Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777518 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-472.yaml b/user_service/keploy/atg/tests/test-472.yaml new file mode 100755 index 0000000..1cca10f --- /dev/null +++ b/user_service/keploy/atg/tests/test-472.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-472 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "89" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_02", "email": "orderuser_02@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:22.40089925Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:22.402162579Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777522 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"orderuser_02\", \"email\": \"orderuser_02@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-473.yaml b/user_service/keploy/atg/tests/test-473.yaml new file mode 100755 index 0000000..a7aced7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-473.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-473 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_02", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:23.168334223Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:23.169450604Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777523 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"orderuser_02\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-474.yaml b/user_service/keploy/atg/tests/test-474.yaml new file mode 100755 index 0000000..8861b22 --- /dev/null +++ b/user_service/keploy/atg/tests/test-474.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-474 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:23.945960293Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:23.947084693Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777523 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-475.yaml b/user_service/keploy/atg/tests/test-475.yaml new file mode 100755 index 0000000..8338c09 --- /dev/null +++ b/user_service/keploy/atg/tests/test-475.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-475 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "89" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_03", "email": "orderuser_03@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:29.155477081Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:29.156757171Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777529 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"orderuser_03\", \"email\": \"orderuser_03@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-476.yaml b/user_service/keploy/atg/tests/test-476.yaml new file mode 100755 index 0000000..36e210c --- /dev/null +++ b/user_service/keploy/atg/tests/test-476.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-476 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_03", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:29.974756604Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:29.975881535Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777529 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"orderuser_03\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-477.yaml b/user_service/keploy/atg/tests/test-477.yaml new file mode 100755 index 0000000..6c937e6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-477.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-477 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:30.779719648Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:30.781198545Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777530 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-478.yaml b/user_service/keploy/atg/tests/test-478.yaml new file mode 100755 index 0000000..155815c --- /dev/null +++ b/user_service/keploy/atg/tests/test-478.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-478 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "89" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_04", "email": "orderuser_04@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:34.476164297Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:34.477249448Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777534 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"orderuser_04\", \"email\": \"orderuser_04@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-479.yaml b/user_service/keploy/atg/tests/test-479.yaml new file mode 100755 index 0000000..3f46573 --- /dev/null +++ b/user_service/keploy/atg/tests/test-479.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-479 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_04", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:35.23430259Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:35.235532969Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777535 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"orderuser_04\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-48.yaml b/user_service/keploy/atg/tests/test-48.yaml new file mode 100755 index 0000000..44654e4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-48.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-48 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:33.052952728Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODczLCJleHAiOjE3NjUzNjg4NzN9.9_aCTokUHod2Aj7Vi8nC3JDdl7aofzKdZNp-NNqaVIw","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:33.112609626Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776873 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-480.yaml b/user_service/keploy/atg/tests/test-480.yaml new file mode 100755 index 0000000..b3352f8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-480.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-480 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:36.078493906Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:36.079693026Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777536 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-481.yaml b/user_service/keploy/atg/tests/test-481.yaml new file mode 100755 index 0000000..8998c2d --- /dev/null +++ b/user_service/keploy/atg/tests/test-481.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-481 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "151" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "auserwithaveryverylongandunnecessarilycomplexusernamethatshouldnotbevalidatall", "email": "longuser@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:39.750947228Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:39.752106889Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777539 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"auserwithaveryverylongandunnecessarilycomplexusernamethatshouldnotbevalidatall\", \"email\": \"longuser@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-482.yaml b/user_service/keploy/atg/tests/test-482.yaml new file mode 100755 index 0000000..a213724 --- /dev/null +++ b/user_service/keploy/atg/tests/test-482.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-482 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "89" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_05", "email": "orderuser_05@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:42.046405724Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:42.047701244Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777542 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"orderuser_05\", \"email\": \"orderuser_05@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-483.yaml b/user_service/keploy/atg/tests/test-483.yaml new file mode 100755 index 0000000..d8f5c2c --- /dev/null +++ b/user_service/keploy/atg/tests/test-483.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-483 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_05", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:42.790046499Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:42.791372137Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777542 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"orderuser_05\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-484.yaml b/user_service/keploy/atg/tests/test-484.yaml new file mode 100755 index 0000000..5b904d2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-484.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-484 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:43.608003065Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:43.609173714Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777543 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-485.yaml b/user_service/keploy/atg/tests/test-485.yaml new file mode 100755 index 0000000..40a9197 --- /dev/null +++ b/user_service/keploy/atg/tests/test-485.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-485 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "89" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_06", "email": "orderuser_06@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:47.007132888Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:47.008650964Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777547 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"orderuser_06\", \"email\": \"orderuser_06@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-486.yaml b/user_service/keploy/atg/tests/test-486.yaml new file mode 100755 index 0000000..dec82b2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-486.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-486 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_06", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:47.808294232Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:47.809531383Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777547 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"orderuser_06\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-487.yaml b/user_service/keploy/atg/tests/test-487.yaml new file mode 100755 index 0000000..06aef19 --- /dev/null +++ b/user_service/keploy/atg/tests/test-487.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-487 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:48.567425689Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:48.568717278Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777548 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-488.yaml b/user_service/keploy/atg/tests/test-488.yaml new file mode 100755 index 0000000..64fd156 --- /dev/null +++ b/user_service/keploy/atg/tests/test-488.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-488 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "89" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_07", "email": "orderuser_07@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:51.636220525Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:51.637718962Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777551 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"orderuser_07\", \"email\": \"orderuser_07@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-489.yaml b/user_service/keploy/atg/tests/test-489.yaml new file mode 100755 index 0000000..d34d789 --- /dev/null +++ b/user_service/keploy/atg/tests/test-489.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-489 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "52" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_07", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:52.531432598Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:52.532594768Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777552 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"orderuser_07\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-49.yaml b/user_service/keploy/atg/tests/test-49.yaml new file mode 100755 index 0000000..01dd6f7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-49.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-49 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "deepak_pay_01", "email": "deepak.pay.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:33.786741943Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:33 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:33.787978903Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776873 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"deepak_pay_01\", \"email\": \"deepak.pay.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-490.yaml b/user_service/keploy/atg/tests/test-490.yaml new file mode 100755 index 0000000..fc577c8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-490.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-490 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:53.294455622Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:53.29587928Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777553 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-491.yaml b/user_service/keploy/atg/tests/test-491.yaml new file mode 100755 index 0000000..4c1c1c5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-491.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-491 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "93" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_04", "email": "productuser_04@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:56.289438224Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:56 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:56.290531466Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777556 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"productuser_04\", \"email\": \"productuser_04@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-492.yaml b/user_service/keploy/atg/tests/test-492.yaml new file mode 100755 index 0000000..8ca8848 --- /dev/null +++ b/user_service/keploy/atg/tests/test-492.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-492 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_04", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:25:56.974310549Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:56 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:56.975461331Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777556 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"productuser_04\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-493.yaml b/user_service/keploy/atg/tests/test-493.yaml new file mode 100755 index 0000000..c1b2e26 --- /dev/null +++ b/user_service/keploy/atg/tests/test-493.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-493 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:25:57.779865501Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:25:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:25:57.78104159Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777557 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-494.yaml b/user_service/keploy/atg/tests/test-494.yaml new file mode 100755 index 0000000..4a7833f --- /dev/null +++ b/user_service/keploy/atg/tests/test-494.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-494 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "93" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_05", "email": "productuser_05@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:01.248719288Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:01.250088477Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777561 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"productuser_05\", \"email\": \"productuser_05@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-495.yaml b/user_service/keploy/atg/tests/test-495.yaml new file mode 100755 index 0000000..92de3b6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-495.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-495 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "productuser_05", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:01.981678864Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:01.983027252Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777561 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"productuser_05\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-496.yaml b/user_service/keploy/atg/tests/test-496.yaml new file mode 100755 index 0000000..3a17eb6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-496.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-496 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:02.716117726Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:02.728186436Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777562 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-497.yaml b/user_service/keploy/atg/tests/test-497.yaml new file mode 100755 index 0000000..e09dc52 --- /dev/null +++ b/user_service/keploy/atg/tests/test-497.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-497 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "91" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_08a", "email": "orderuser_08a@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:05.927043375Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:05.92886575Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777565 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"orderuser_08a\", \"email\": \"orderuser_08a@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-498.yaml b/user_service/keploy/atg/tests/test-498.yaml new file mode 100755 index 0000000..bb81db4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-498.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-498 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "91" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_08b", "email": "orderuser_08b@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:06.676314675Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:06.677733333Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777566 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"orderuser_08b\", \"email\": \"orderuser_08b@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-499.yaml b/user_service/keploy/atg/tests/test-499.yaml new file mode 100755 index 0000000..cc202fc --- /dev/null +++ b/user_service/keploy/atg/tests/test-499.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-499 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "orderuser_08a", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:07.435300844Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:07.436493304Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777567 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"orderuser_08a\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-5.yaml b/user_service/keploy/atg/tests/test-5.yaml new file mode 100755 index 0000000..0181065 --- /dev/null +++ b/user_service/keploy/atg/tests/test-5.yaml @@ -0,0 +1,45 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-5 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Content-Length: "118" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vikram_singh_{{$randomInt}}", "email": "vikram.singh.{{$randomInt}}@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:11:27.804788344Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:11:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:11:27.806117111Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776687 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"vikram_singh_{{$randomInt}}\", \"email\": \"vikram.singh.{{$randomInt}}@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-50.yaml b/user_service/keploy/atg/tests/test-50.yaml new file mode 100755 index 0000000..e8f4823 --- /dev/null +++ b/user_service/keploy/atg/tests/test-50.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-50 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:34.690502355Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:34.691724125Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776874 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-500.yaml b/user_service/keploy/atg/tests/test-500.yaml new file mode 100755 index 0000000..ac4a9c5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-500.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-500 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:08.239695135Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:08 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:08.241040294Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777568 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-501.yaml b/user_service/keploy/atg/tests/test-501.yaml new file mode 100755 index 0000000..73b3572 --- /dev/null +++ b/user_service/keploy/atg/tests/test-501.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-501 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:11.402017459Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:11.403231Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777571 +curl: | + curl --request GET \ + --url http://localhost:8082/products \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-502.yaml b/user_service/keploy/atg/tests/test-502.yaml new file mode 100755 index 0000000..11ac74d --- /dev/null +++ b/user_service/keploy/atg/tests/test-502.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-502 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products/some-product-id + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:13.168508469Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:13 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:13.169821228Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777573 +curl: | + curl --request GET \ + --url http://localhost:8082/products/some-product-id \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ diff --git a/user_service/keploy/atg/tests/test-503.yaml b/user_service/keploy/atg/tests/test-503.yaml new file mode 100755 index 0000000..a4aa2c4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-503.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-503 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products/some-product-id/reserve + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:26:15.193505866Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:15 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:15.194713186Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777575 +curl: |- + curl --request POST \ + --url http://localhost:8082/products/some-product-id/reserve \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-504.yaml b/user_service/keploy/atg/tests/test-504.yaml new file mode 100755 index 0000000..19be05f --- /dev/null +++ b/user_service/keploy/atg/tests/test-504.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-504 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products/some-product-id/release + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:26:17.174318821Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:17.175597941Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777577 +curl: |- + curl --request POST \ + --url http://localhost:8082/products/some-product-id/release \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-505.yaml b/user_service/keploy/atg/tests/test-505.yaml new file mode 100755 index 0000000..f9f3ee2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-505.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-505 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/orders + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"userId": "some-user-id", "items": [ { "productId": "some-product-id", "quantity": 1 } ]}' + timestamp: 2025-11-10T12:26:19.045203313Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:19 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:19.04672918Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777579 +curl: |- + curl --request POST \ + --url http://localhost:8082/orders \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"userId\": \"some-user-id\", \"items\": [ { \"productId\": \"some-product-id\", \"quantity\": 1 } ]}" diff --git a/user_service/keploy/atg/tests/test-506.yaml b/user_service/keploy/atg/tests/test-506.yaml new file mode 100755 index 0000000..615a9f4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-506.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-506 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/orders?userId=some-user-id + url_params: + userId: some-user-id + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:20.976024496Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:20.977496783Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777580 +curl: | + curl --request GET \ + --url http://localhost:8082/orders?userId=some-user-id \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-507.yaml b/user_service/keploy/atg/tests/test-507.yaml new file mode 100755 index 0000000..bf04326 --- /dev/null +++ b/user_service/keploy/atg/tests/test-507.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-507 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/orders/some-order-id + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:23.011882034Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:23.012960264Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777583 +curl: | + curl --request GET \ + --url http://localhost:8082/orders/some-order-id \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ diff --git a/user_service/keploy/atg/tests/test-508.yaml b/user_service/keploy/atg/tests/test-508.yaml new file mode 100755 index 0000000..2a7d5ce --- /dev/null +++ b/user_service/keploy/atg/tests/test-508.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-508 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/orders/some-order-id/details + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:25.029878743Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:25.031207371Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777585 +curl: | + curl --request GET \ + --url http://localhost:8082/orders/some-order-id/details \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-509.yaml b/user_service/keploy/atg/tests/test-509.yaml new file mode 100755 index 0000000..5dfab92 --- /dev/null +++ b/user_service/keploy/atg/tests/test-509.yaml @@ -0,0 +1,50 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-509 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/orders/some-order-id/pay + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "0" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:26.832519483Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:26.833811732Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777586 +curl: | + curl --request POST \ + --url http://localhost:8082/orders/some-order-id/pay \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-51.yaml b/user_service/keploy/atg/tests/test-51.yaml new file mode 100755 index 0000000..f93a2a7 --- /dev/null +++ b/user_service/keploy/atg/tests/test-51.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-51 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:38.548544113Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODc4LCJleHAiOjE3NjUzNjg4Nzh9.8ebZlP285GTvSzq63w1cxQSFHB6RUJCUmQVeiLzJkck","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:38.607383969Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776878 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-510.yaml b/user_service/keploy/atg/tests/test-510.yaml new file mode 100755 index 0000000..7c1bf15 --- /dev/null +++ b/user_service/keploy/atg/tests/test-510.yaml @@ -0,0 +1,50 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-510 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/orders/some-order-id/cancel + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "0" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:26:28.559749392Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:28 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:28.561012942Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777588 +curl: | + curl --request POST \ + --url http://localhost:8082/orders/some-order-id/cancel \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ diff --git a/user_service/keploy/atg/tests/test-511.yaml b/user_service/keploy/atg/tests/test-511.yaml new file mode 100755 index 0000000..b51d4e4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-511.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-511 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "91" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "badjsonuser01", "email": "badjsonuser01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:30.54916554Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:30.550330229Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777590 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"badjsonuser01\", \"email\": \"badjsonuser01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-512.yaml b/user_service/keploy/atg/tests/test-512.yaml new file mode 100755 index 0000000..f4b771d --- /dev/null +++ b/user_service/keploy/atg/tests/test-512.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-512 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "badjsonuser01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:31.333974657Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:31.335375944Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777591 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"badjsonuser01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-513.yaml b/user_service/keploy/atg/tests/test-513.yaml new file mode 100755 index 0000000..931a480 --- /dev/null +++ b/user_service/keploy/atg/tests/test-513.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-513 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/orders + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "37" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"userId": "some-user-id", "items": [' + timestamp: 2025-11-10T12:26:32.067515659Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:32.068690949Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777592 +curl: |- + curl --request POST \ + --url http://localhost:8082/orders \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"userId\": \"some-user-id\", \"items\": [" diff --git a/user_service/keploy/atg/tests/test-514.yaml b/user_service/keploy/atg/tests/test-514.yaml new file mode 100755 index 0000000..0d73734 --- /dev/null +++ b/user_service/keploy/atg/tests/test-514.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-514 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "91" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "badjsonuser02", "email": "badjsonuser02@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:34.674696144Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:34 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:34.675805284Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777594 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"badjsonuser02\", \"email\": \"badjsonuser02@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-515.yaml b/user_service/keploy/atg/tests/test-515.yaml new file mode 100755 index 0000000..13f24de --- /dev/null +++ b/user_service/keploy/atg/tests/test-515.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-515 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "badjsonuser02", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:35.514436373Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:35.515733811Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777595 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"badjsonuser02\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-516.yaml b/user_service/keploy/atg/tests/test-516.yaml new file mode 100755 index 0000000..88931ea --- /dev/null +++ b/user_service/keploy/atg/tests/test-516.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-516 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products/some-product-id/reserve + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1,' + timestamp: 2025-11-10T12:26:36.286208047Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:36.287341208Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777596 +curl: |- + curl --request POST \ + --url http://localhost:8082/products/some-product-id/reserve \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"quantity\": 1," diff --git a/user_service/keploy/atg/tests/test-517.yaml b/user_service/keploy/atg/tests/test-517.yaml new file mode 100755 index 0000000..7990e49 --- /dev/null +++ b/user_service/keploy/atg/tests/test-517.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-517 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "91" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "badjsonuser03", "email": "badjsonuser03@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:38.968567077Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:38.969753977Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777598 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"badjsonuser03\", \"email\": \"badjsonuser03@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-518.yaml b/user_service/keploy/atg/tests/test-518.yaml new file mode 100755 index 0000000..599907a --- /dev/null +++ b/user_service/keploy/atg/tests/test-518.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-518 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "badjsonuser03", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:39.719497015Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:39.720857354Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777599 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"badjsonuser03\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-519.yaml b/user_service/keploy/atg/tests/test-519.yaml new file mode 100755 index 0000000..5c5b333 --- /dev/null +++ b/user_service/keploy/atg/tests/test-519.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-519 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products/some-product-id/release + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1,' + timestamp: 2025-11-10T12:26:40.485633549Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:40 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:40.486846038Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777600 +curl: |- + curl --request POST \ + --url http://localhost:8082/products/some-product-id/release \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"quantity\": 1," diff --git a/user_service/keploy/atg/tests/test-52.yaml b/user_service/keploy/atg/tests/test-52.yaml new file mode 100755 index 0000000..b69af44 --- /dev/null +++ b/user_service/keploy/atg/tests/test-52.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-52 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "isha_cancel_01", "email": "isha.cancel.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:39.358466231Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:39.35969229Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776879 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"isha_cancel_01\", \"email\": \"isha.cancel.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-520.yaml b/user_service/keploy/atg/tests/test-520.yaml new file mode 100755 index 0000000..07e1148 --- /dev/null +++ b/user_service/keploy/atg/tests/test-520.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-520 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "99" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "lifecycle_user_01", "email": "lifecycle_user_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:42.969636559Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:42.970921339Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777602 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"lifecycle_user_01\", \"email\": \"lifecycle_user_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-521.yaml b/user_service/keploy/atg/tests/test-521.yaml new file mode 100755 index 0000000..cfc44f8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-521.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-521 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "lifecycle_user_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:43.753244326Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:43 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:43.754507936Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777603 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"lifecycle_user_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-522.yaml b/user_service/keploy/atg/tests/test-522.yaml new file mode 100755 index 0000000..7291812 --- /dev/null +++ b/user_service/keploy/atg/tests/test-522.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-522 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "99" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "wrongpass_user_01", "email": "wrongpass_user_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:47.648038007Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:47.649219918Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777607 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"wrongpass_user_01\", \"email\": \"wrongpass_user_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-523.yaml b/user_service/keploy/atg/tests/test-523.yaml new file mode 100755 index 0000000..ee77b6f --- /dev/null +++ b/user_service/keploy/atg/tests/test-523.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-523 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "62" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "wrongpass_user_01", "password": "wrongpassword"}' + timestamp: 2025-11-10T12:26:48.453462312Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:48.454724311Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777608 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"wrongpass_user_01\", \"password\": \"wrongpassword\"}" diff --git a/user_service/keploy/atg/tests/test-524.yaml b/user_service/keploy/atg/tests/test-524.yaml new file mode 100755 index 0000000..a481590 --- /dev/null +++ b/user_service/keploy/atg/tests/test-524.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-524 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "54" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "ghost_user_999", "password": "password"}' + timestamp: 2025-11-10T12:26:51.321852908Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:51.323061368Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777611 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"ghost_user_999\", \"password\": \"password\"}" diff --git a/user_service/keploy/atg/tests/test-525.yaml b/user_service/keploy/atg/tests/test-525.yaml new file mode 100755 index 0000000..2b237ab --- /dev/null +++ b/user_service/keploy/atg/tests/test-525.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-525 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "99" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "duplicate_user_01", "email": "duplicate_user_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:53.624908068Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:53.626312647Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777613 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"duplicate_user_01\", \"email\": \"duplicate_user_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-526.yaml b/user_service/keploy/atg/tests/test-526.yaml new file mode 100755 index 0000000..fc94cc1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-526.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-526 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "95" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "duplicate_user_01", "email": "another_email@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:54.405319963Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:54 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:54.406371795Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777614 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"duplicate_user_01\", \"email\": \"another_email@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-527.yaml b/user_service/keploy/atg/tests/test-527.yaml new file mode 100755 index 0000000..99cdf32 --- /dev/null +++ b/user_service/keploy/atg/tests/test-527.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-527 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "97" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "unique_user_02", "email": "duplicate_email_02@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:57.893325342Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:57.894466323Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777617 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"unique_user_02\", \"email\": \"duplicate_email_02@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-528.yaml b/user_service/keploy/atg/tests/test-528.yaml new file mode 100755 index 0000000..f165a9d --- /dev/null +++ b/user_service/keploy/atg/tests/test-528.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-528 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "another_user_02", "email": "duplicate_email_02@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:26:58.898654955Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:26:58 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:26:58.899810596Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777618 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"another_user_02\", \"email\": \"duplicate_email_02@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-529.yaml b/user_service/keploy/atg/tests/test-529.yaml new file mode 100755 index 0000000..8ea719f --- /dev/null +++ b/user_service/keploy/atg/tests/test-529.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-529 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "95" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "address_user_01", "email": "address_user_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:01.493888547Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:01.494982798Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777621 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"address_user_01\", \"email\": \"address_user_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-53.yaml b/user_service/keploy/atg/tests/test-53.yaml new file mode 100755 index 0000000..2e11410 --- /dev/null +++ b/user_service/keploy/atg/tests/test-53.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-53 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:14:40.08701679Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:14:40 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:40.0881729Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776880 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-530.yaml b/user_service/keploy/atg/tests/test-530.yaml new file mode 100755 index 0000000..e3c9158 --- /dev/null +++ b/user_service/keploy/atg/tests/test-530.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-530 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "55" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "address_user_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:02.257565091Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:02 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:02.258641552Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777622 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"address_user_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-531.yaml b/user_service/keploy/atg/tests/test-531.yaml new file mode 100755 index 0000000..075b3ad --- /dev/null +++ b/user_service/keploy/atg/tests/test-531.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-531 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "101" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_address_user_01", "email": "no_address_user_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:07.006020523Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:07.007531802Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777627 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"no_address_user_01\", \"email\": \"no_address_user_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-532.yaml b/user_service/keploy/atg/tests/test-532.yaml new file mode 100755 index 0000000..479879a --- /dev/null +++ b/user_service/keploy/atg/tests/test-532.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-532 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "58" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_address_user_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:07.735075627Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:07 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:07.736594775Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777627 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"no_address_user_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-533.yaml b/user_service/keploy/atg/tests/test-533.yaml new file mode 100755 index 0000000..2331e22 --- /dev/null +++ b/user_service/keploy/atg/tests/test-533.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-533 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "99" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "auth_only_user_01", "email": "auth_only_user_01@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:10.880087063Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:10 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:10.881362293Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777630 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"auth_only_user_01\", \"email\": \"auth_only_user_01@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-534.yaml b/user_service/keploy/atg/tests/test-534.yaml new file mode 100755 index 0000000..d2d03f3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-534.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-534 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "auth_only_user_01", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:11.698220526Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:11.699441746Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777631 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"auth_only_user_01\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-535.yaml b/user_service/keploy/atg/tests/test-535.yaml new file mode 100755 index 0000000..34fe318 --- /dev/null +++ b/user_service/keploy/atg/tests/test-535.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-535 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users/invalid-user-id-999/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "99" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 Main St", "city": "Anytown", "state": "CA", "postal_code": "12345", "country": "US"}' + timestamp: 2025-11-10T12:27:12.446220812Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:12.447782689Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777632 +curl: |- + curl --request POST \ + --url http://localhost:8082/users/invalid-user-id-999/addresses \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"line1\": \"123 Main St\", \"city\": \"Anytown\", \"state\": \"CA\", \"postal_code\": \"12345\", \"country\": \"US\"}" diff --git a/user_service/keploy/atg/tests/test-536.yaml b/user_service/keploy/atg/tests/test-536.yaml new file mode 100755 index 0000000..01eb12e --- /dev/null +++ b/user_service/keploy/atg/tests/test-536.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-536 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "56" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"email": "no_user@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:14.687613919Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:14 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:14.688926639Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777634 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"email\": \"no_user@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-537.yaml b/user_service/keploy/atg/tests/test-537.yaml new file mode 100755 index 0000000..22c2c8c --- /dev/null +++ b/user_service/keploy/atg/tests/test-537.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-537 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "60" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_pass_user", "email": "no_pass@example.com"}' + timestamp: 2025-11-10T12:27:17.060863221Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:17 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:17.062747625Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777637 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --data "{\"username\": \"no_pass_user\", \"email\": \"no_pass@example.com\"}" diff --git a/user_service/keploy/atg/tests/test-538.yaml b/user_service/keploy/atg/tests/test-538.yaml new file mode 100755 index 0000000..ba32a13 --- /dev/null +++ b/user_service/keploy/atg/tests/test-538.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-538 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "53" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "no_email_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:19.338692037Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:19 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:19.339967746Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777639 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"no_email_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-539.yaml b/user_service/keploy/atg/tests/test-539.yaml new file mode 100755 index 0000000..3b76abb --- /dev/null +++ b/user_service/keploy/atg/tests/test-539.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-539 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "107" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "product_notfound_user", "email": "product_notfound_user@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:21.739845628Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:21.740966728Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777641 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"product_notfound_user\", \"email\": \"product_notfound_user@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-54.yaml b/user_service/keploy/atg/tests/test-54.yaml new file mode 100755 index 0000000..c2a1048 --- /dev/null +++ b/user_service/keploy/atg/tests/test-54.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-54 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:44.318303458Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:44 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODg0LCJleHAiOjE3NjUzNjg4ODR9.Spk1AS1SaQPlIePntGKCvaJnFBOVw8iA2RRRqCkG8n4","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:44.379708272Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776884 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-540.yaml b/user_service/keploy/atg/tests/test-540.yaml new file mode 100755 index 0000000..373fa9e --- /dev/null +++ b/user_service/keploy/atg/tests/test-540.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-540 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "61" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "product_notfound_user", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:22.424243402Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:22 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:22.425456993Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777642 +curl: |- + curl --request POST \ + --url http://localhost:8082/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"product_notfound_user\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-541.yaml b/user_service/keploy/atg/tests/test-541.yaml new file mode 100755 index 0000000..8c15cfa --- /dev/null +++ b/user_service/keploy/atg/tests/test-541.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-541 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/products/non-existent-product-id-123 + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:27:23.217207426Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:23 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:23.218440265Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777643 +curl: | + curl --request GET \ + --url http://localhost:8082/products/non-existent-product-id-123 \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-542.yaml b/user_service/keploy/atg/tests/test-542.yaml new file mode 100755 index 0000000..fa9d628 --- /dev/null +++ b/user_service/keploy/atg/tests/test-542.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-542 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0 + Content-Length: "105" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "order_lifecycle_user", "email": "order_lifecycle_user@example.com", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:27:26.459926143Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:27:26 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:27:26.461106965Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762777646 +curl: |- + curl --request POST \ + --url http://localhost:8082/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"order_lifecycle_user\", \"email\": \"order_lifecycle_user@example.com\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-55.yaml b/user_service/keploy/atg/tests/test-55.yaml new file mode 100755 index 0000000..1ca54d0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-55.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-55 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "rahul_invalid_01", "email": "rahul.invalid.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:45.114656821Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:45.115928961Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776885 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"rahul_invalid_01\", \"email\": \"rahul.invalid.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-56.yaml b/user_service/keploy/atg/tests/test-56.yaml new file mode 100755 index 0000000..390648c --- /dev/null +++ b/user_service/keploy/atg/tests/test-56.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-56 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:48.018627742Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODg4LCJleHAiOjE3NjUzNjg4ODh9.J1GHPEqaVUSPJNIPbRyqshi4-Kt6foZP7hBqBGTshU8","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:48.086246303Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776888 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-57.yaml b/user_service/keploy/atg/tests/test-57.yaml new file mode 100755 index 0000000..aff6c2c --- /dev/null +++ b/user_service/keploy/atg/tests/test-57.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-57 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "95" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "pooja_login_01", "email": "pooja.login.01@example.in", "password": "newP@ssw0rd"}' + timestamp: 2025-11-10T12:14:48.803188054Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:48.804600882Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776888 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"pooja_login_01\", \"email\": \"pooja.login.01@example.in\", \"password\": \"newP@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-58.yaml b/user_service/keploy/atg/tests/test-58.yaml new file mode 100755 index 0000000..948e7d5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-58.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-58 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "57" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "pooja_login_01", "password": "newP@ssw0rd"}' + timestamp: 2025-11-10T12:14:49.523399037Z + resp: + status_code: 401 + header: + Content-Length: "32" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:49 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Invalid credentials"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:49.537220097Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776889 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"pooja_login_01\", \"password\": \"newP@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-59.yaml b/user_service/keploy/atg/tests/test-59.yaml new file mode 100755 index 0000000..aae2b7a --- /dev/null +++ b/user_service/keploy/atg/tests/test-59.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-59 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:52.720053259Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:52 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODkyLCJleHAiOjE3NjUzNjg4OTJ9.IuTReg9hPvUh1datpSxsTZmxe8PMXg7SdeIeBvjhUM8","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:52.781299036Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776892 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-6.yaml b/user_service/keploy/atg/tests/test-6.yaml new file mode 100755 index 0000000..c858071 --- /dev/null +++ b/user_service/keploy/atg/tests/test-6.yaml @@ -0,0 +1,46 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-6 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/ + header: + Accept-Encoding: gzip + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:12:32.494279392Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:12:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:12:32.495428191Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776752 +curl: | + curl --request POST \ + --url http://localhost:8082/ \ + --header 'Accept-Encoding: gzip' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-60.yaml b/user_service/keploy/atg/tests/test-60.yaml new file mode 100755 index 0000000..a0d6d49 --- /dev/null +++ b/user_service/keploy/atg/tests/test-60.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-60 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "manish_multiaddr_01", "email": "manish.multi.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:53.540025717Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:53.541308607Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776893 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"manish_multiaddr_01\", \"email\": \"manish.multi.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-61.yaml b/user_service/keploy/atg/tests/test-61.yaml new file mode 100755 index 0000000..293f8b6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-61.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-61 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:56.677516746Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:56 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODk2LCJleHAiOjE3NjUzNjg4OTZ9.RswdUlKLNR3gdNCDtstYsuHkcJ2GGd9SrFXLvSPGTI4","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:56.737707832Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776896 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-62.yaml b/user_service/keploy/atg/tests/test-62.yaml new file mode 100755 index 0000000..8a632c4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-62.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-62 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "sneha_noitem_01", "email": "sneha.noitem.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:14:57.419093482Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:14:57 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:14:57.420388042Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776897 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"sneha_noitem_01\", \"email\": \"sneha.noitem.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-63.yaml b/user_service/keploy/atg/tests/test-63.yaml new file mode 100755 index 0000000..301e0c1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-63.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-63 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:00.314268445Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:00 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTAwLCJleHAiOjE3NjUzNjg5MDB9.TvfwHgFlbI5YX7TYnWPr1OoVRNX7Uj-uwDIlqv-fy0g","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:00.373434822Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776900 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-64.yaml b/user_service/keploy/atg/tests/test-64.yaml new file mode 100755 index 0000000..adc0034 --- /dev/null +++ b/user_service/keploy/atg/tests/test-64.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-64 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "92" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "vivek_zeroq_01", "email": "vivek.zeroq.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:01.075828563Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:01.077058063Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776901 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"vivek_zeroq_01\", \"email\": \"vivek.zeroq.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-65.yaml b/user_service/keploy/atg/tests/test-65.yaml new file mode 100755 index 0000000..ce7010a --- /dev/null +++ b/user_service/keploy/atg/tests/test-65.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-65 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:01.887202868Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:01 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:01.888397349Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776901 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-66.yaml b/user_service/keploy/atg/tests/test-66.yaml new file mode 100755 index 0000000..6026b27 --- /dev/null +++ b/user_service/keploy/atg/tests/test-66.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-66 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:05.182271508Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:05 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTA1LCJleHAiOjE3NjUzNjg5MDV9.I1lII4xSu3rNN8T9fyHj39O3HJ34zDEy5OPwb73-ZlI","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:05.240578891Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776905 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-67.yaml b/user_service/keploy/atg/tests/test-67.yaml new file mode 100755 index 0000000..c7e7f6b --- /dev/null +++ b/user_service/keploy/atg/tests/test-67.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-67 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "amit_limit_01", "email": "amit.limit.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:06.099313229Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:06.100714887Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776906 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"amit_limit_01\", \"email\": \"amit.limit.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-68.yaml b/user_service/keploy/atg/tests/test-68.yaml new file mode 100755 index 0000000..f08e968 --- /dev/null +++ b/user_service/keploy/atg/tests/test-68.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-68 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:06.841675909Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:06 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:06.842988089Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776906 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ diff --git a/user_service/keploy/atg/tests/test-69.yaml b/user_service/keploy/atg/tests/test-69.yaml new file mode 100755 index 0000000..ccdba4d --- /dev/null +++ b/user_service/keploy/atg/tests/test-69.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-69 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:11.074451704Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTExLCJleHAiOjE3NjUzNjg5MTF9.Fm7GOp3OT854kT4y-SadnUpGRfwD_Ctl_QScfzF0KSE","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:11.132717508Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776911 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-7.yaml b/user_service/keploy/atg/tests/test-7.yaml new file mode 100755 index 0000000..c1a05cd --- /dev/null +++ b/user_service/keploy/atg/tests/test-7.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-7 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:24.921347946Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:24 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODA0LCJleHAiOjE3NjUzNjg4MDR9.CazMym1y3A_PhEg8zRKzlGj7ZNhOv7IIfeo2HJQcvzo","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:24.99189222Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776804 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-70.yaml b/user_service/keploy/atg/tests/test-70.yaml new file mode 100755 index 0000000..3147795 --- /dev/null +++ b/user_service/keploy/atg/tests/test-70.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-70 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "96" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "geeta_details_01", "email": "geeta.details.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:11.876308314Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:11 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:11.877696991Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776911 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"geeta_details_01\", \"email\": \"geeta.details.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-71.yaml b/user_service/keploy/atg/tests/test-71.yaml new file mode 100755 index 0000000..d4de9ad --- /dev/null +++ b/user_service/keploy/atg/tests/test-71.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-71 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:12.606528766Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:12 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:12.607650925Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776912 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ diff --git a/user_service/keploy/atg/tests/test-72.yaml b/user_service/keploy/atg/tests/test-72.yaml new file mode 100755 index 0000000..64a09d3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-72.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-72 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:16.673281576Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:16 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:16.674392547Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776916 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ diff --git a/user_service/keploy/atg/tests/test-73.yaml b/user_service/keploy/atg/tests/test-73.yaml new file mode 100755 index 0000000..75f74d4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-73.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-73 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:18.653275348Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:18 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:18.654467357Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776918 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ diff --git a/user_service/keploy/atg/tests/test-74.yaml b/user_service/keploy/atg/tests/test-74.yaml new file mode 100755 index 0000000..39991c1 --- /dev/null +++ b/user_service/keploy/atg/tests/test-74.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-74 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:20.644167461Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:20 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTIwLCJleHAiOjE3NjUzNjg5MjB9.VWAfyfbuhW1P5NuR_zVn80W5S7nVTm9BAmmMlhvMO6c","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:20.704215411Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776920 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-75.yaml b/user_service/keploy/atg/tests/test-75.yaml new file mode 100755 index 0000000..6edf5d4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-75.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-75 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "91" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "temp_user_del_01", "email": "temp.del.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:21.413388595Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:21 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:21.414653374Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776921 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"temp_user_del_01\", \"email\": \"temp.del.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-76.yaml b/user_service/keploy/atg/tests/test-76.yaml new file mode 100755 index 0000000..dad91e8 --- /dev/null +++ b/user_service/keploy/atg/tests/test-76.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-76 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:24.601214918Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:24 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTI0LCJleHAiOjE3NjUzNjg5MjR9.q8y0hBCGs3NIvqzRMsLgzVhx_-nv0NCQJ1FJcM4fSb8","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:24.65990145Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776924 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-77.yaml b/user_service/keploy/atg/tests/test-77.yaml new file mode 100755 index 0000000..343cbe0 --- /dev/null +++ b/user_service/keploy/atg/tests/test-77.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-77 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users/99999999-9999-9999-9999-999999999999/addresses + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "149" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"line1": "123 Nowhere St", "city": "Nowhere", "state": "NA", "postal_code": "000000", "country": "IN", "phone": "+910000000000", "is_default": true}' + timestamp: 2025-11-10T12:15:25.477402001Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:25.478731149Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776925 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users/99999999-9999-9999-9999-999999999999/addresses \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"line1\": \"123 Nowhere St\", \"city\": \"Nowhere\", \"state\": \"NA\", \"postal_code\": \"000000\", \"country\": \"IN\", \"phone\": \"+910000000000\", \"is_default\": true}" diff --git a/user_service/keploy/atg/tests/test-78.yaml b/user_service/keploy/atg/tests/test-78.yaml new file mode 100755 index 0000000..8d63cf5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-78.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-78 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:27.300978441Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:27 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTI3LCJleHAiOjE3NjUzNjg5Mjd9.gC3-VTsS8cgAhvqFygdzaq7z1O1C23eg_3TyygGMrdw","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:27.361787624Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776927 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-79.yaml b/user_service/keploy/atg/tests/test-79.yaml new file mode 100755 index 0000000..9bd99b5 --- /dev/null +++ b/user_service/keploy/atg/tests/test-79.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-79 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/99999999-9999-9999-9999-999999999999/reserve + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:15:28.102575612Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:28 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:28.103721372Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776928 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/99999999-9999-9999-9999-999999999999/reserve \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-8.yaml b/user_service/keploy/atg/tests/test-8.yaml new file mode 100755 index 0000000..fcf5752 --- /dev/null +++ b/user_service/keploy/atg/tests/test-8.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-8 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "priya_test_01", "email": "priya.test.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:25.717832137Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:25 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:25.719056026Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776805 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"priya_test_01\", \"email\": \"priya.test.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-80.yaml b/user_service/keploy/atg/tests/test-80.yaml new file mode 100755 index 0000000..bff508c --- /dev/null +++ b/user_service/keploy/atg/tests/test-80.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-80 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:28.93117902Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:28 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTI4LCJleHAiOjE3NjUzNjg5Mjh9.MB6009bZoT-uLgjMDzjJkfxJmVdxw_FM5WTa-NQkXl4","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:28.992226251Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776928 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-81.yaml b/user_service/keploy/atg/tests/test-81.yaml new file mode 100755 index 0000000..01d6086 --- /dev/null +++ b/user_service/keploy/atg/tests/test-81.yaml @@ -0,0 +1,51 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-81 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products/99999999-9999-9999-9999-999999999999/release + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "15" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"quantity": 1}' + timestamp: 2025-11-10T12:15:29.710771443Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:29 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:29.711971153Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776929 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/products/99999999-9999-9999-9999-999999999999/release \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"quantity\": 1}" diff --git a/user_service/keploy/atg/tests/test-82.yaml b/user_service/keploy/atg/tests/test-82.yaml new file mode 100755 index 0000000..5088bc3 --- /dev/null +++ b/user_service/keploy/atg/tests/test-82.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-82 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:30.514382911Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:30 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTMwLCJleHAiOjE3NjUzNjg5MzB9.neCNh47y_tHyGhVdvAJ9UWuz4nQn03y3-yUtWc75BYU","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:30.574316032Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776930 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-83.yaml b/user_service/keploy/atg/tests/test-83.yaml new file mode 100755 index 0000000..c81ecd6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-83.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-83 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "94" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "ritu_cancel2_01", "email": "ritu.cancel2.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:31.281555922Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:31.282790052Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776931 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"ritu_cancel2_01\", \"email\": \"ritu.cancel2.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-84.yaml b/user_service/keploy/atg/tests/test-84.yaml new file mode 100755 index 0000000..2793ee9 --- /dev/null +++ b/user_service/keploy/atg/tests/test-84.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-84 +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/products + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:32.007315324Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:32 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:32.008394135Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776932 +curl: | + curl --request GET \ + --url http://localhost:8082/api/v1/products \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ diff --git a/user_service/keploy/atg/tests/test-85.yaml b/user_service/keploy/atg/tests/test-85.yaml new file mode 100755 index 0000000..c3714d2 --- /dev/null +++ b/user_service/keploy/atg/tests/test-85.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-85 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:35.835508737Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:35 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTM1LCJleHAiOjE3NjUzNjg5MzV9.R29p56FDIN_eg8IWOr73XA8rXbRYPmRXIgbo0rzQRro","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:35.90010569Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776935 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-86.yaml b/user_service/keploy/atg/tests/test-86.yaml new file mode 100755 index 0000000..2b7a25e --- /dev/null +++ b/user_service/keploy/atg/tests/test-86.yaml @@ -0,0 +1,48 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-86 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/99999999-9999-9999-9999-999999999999/pay + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:36.714668558Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:36 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:36.716223324Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776936 +curl: | + curl --request POST \ + --url http://localhost:8082/api/v1/orders/99999999-9999-9999-9999-999999999999/pay \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-87.yaml b/user_service/keploy/atg/tests/test-87.yaml new file mode 100755 index 0000000..8635c22 --- /dev/null +++ b/user_service/keploy/atg/tests/test-87.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-87 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:37.543628062Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:37 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTM3LCJleHAiOjE3NjUzNjg5Mzd9.dLe6vYxI0QAbTySGH_9MAsTG3-au733ACyKWvoF_wXk","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:37.606751506Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776937 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-88.yaml b/user_service/keploy/atg/tests/test-88.yaml new file mode 100755 index 0000000..a253c66 --- /dev/null +++ b/user_service/keploy/atg/tests/test-88.yaml @@ -0,0 +1,48 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-88 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/orders/99999999-9999-9999-9999-999999999999/cancel + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "0" + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: "" + timestamp: 2025-11-10T12:15:38.29138558Z + resp: + status_code: 404 + header: + Content-Length: "207" + Content-Type: text/html; charset=utf-8 + Date: Mon, 10 Nov 2025 12:15:38 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:38.292650629Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776938 +curl: | + curl --request POST \ + --url http://localhost:8082/api/v1/orders/99999999-9999-9999-9999-999999999999/cancel \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Host: localhost:8082' \ diff --git a/user_service/keploy/atg/tests/test-89.yaml b/user_service/keploy/atg/tests/test-89.yaml new file mode 100755 index 0000000..be2b9dd --- /dev/null +++ b/user_service/keploy/atg/tests/test-89.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-89 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:39.122162971Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTM5LCJleHAiOjE3NjUzNjg5Mzl9.0V7aS_vZFT5WyOz2l-se5An6oq18oyRjfn1IlFzcFPE","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:39.182527481Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776939 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-9.yaml b/user_service/keploy/atg/tests/test-9.yaml new file mode 100755 index 0000000..4a31e99 --- /dev/null +++ b/user_service/keploy/atg/tests/test-9.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-9 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:13:31.191420318Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:13:31 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2ODExLCJleHAiOjE3NjUzNjg4MTF9.9q9o-aZvv0OaKRwC0CdfSII109-V6-i3mFKRGwHetyE","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:13:31.251025191Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776811 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-90.yaml b/user_service/keploy/atg/tests/test-90.yaml new file mode 100755 index 0000000..5869d39 --- /dev/null +++ b/user_service/keploy/atg/tests/test-90.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-90 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "86" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "invalidemail_user_01", "email": "invalid-email", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:39.856763334Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:39 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:39.858049892Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776939 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"invalidemail_user_01\", \"email\": \"invalid-email\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-91.yaml b/user_service/keploy/atg/tests/test-91.yaml new file mode 100755 index 0000000..fdacb39 --- /dev/null +++ b/user_service/keploy/atg/tests/test-91.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-91 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:41.935577315Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:41 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTQxLCJleHAiOjE3NjUzNjg5NDF9.VhFe4lrJ1v9Vj16fta71JmFujZha0nT7QVmPTC45OQw","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:41.996120814Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776941 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-92.yaml b/user_service/keploy/atg/tests/test-92.yaml new file mode 100755 index 0000000..41af625 --- /dev/null +++ b/user_service/keploy/atg/tests/test-92.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-92 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "68" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "nopass_user_01", "email": "nopass.user.01@example.in"}' + timestamp: 2025-11-10T12:15:42.777508295Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:42 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:42.778813453Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776942 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"nopass_user_01\", \"email\": \"nopass.user.01@example.in\"}" diff --git a/user_service/keploy/atg/tests/test-93.yaml b/user_service/keploy/atg/tests/test-93.yaml new file mode 100755 index 0000000..3e43258 --- /dev/null +++ b/user_service/keploy/atg/tests/test-93.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-93 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:44.879734512Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:44 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTQ0LCJleHAiOjE3NjUzNjg5NDR9.wv9d-nvvDZu10rc9HpFoTfUblG1EmtGD4QiQzpQxats","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:44.941610808Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776944 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-94.yaml b/user_service/keploy/atg/tests/test-94.yaml new file mode 100755 index 0000000..5dcfb37 --- /dev/null +++ b/user_service/keploy/atg/tests/test-94.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-94 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "61" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"email": "nousername.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:45.737614126Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:45 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:45.738834716Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776945 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"email\": \"nousername.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-95.yaml b/user_service/keploy/atg/tests/test-95.yaml new file mode 100755 index 0000000..ff70f64 --- /dev/null +++ b/user_service/keploy/atg/tests/test-95.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-95 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:47.524367714Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:47 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTQ3LCJleHAiOjE3NjUzNjg5NDd9.VeU5bpJFps-EnyIXqYVARhN5XDiDydNmxMXJK8skSJY","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:47.587939505Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776947 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-96.yaml b/user_service/keploy/atg/tests/test-96.yaml new file mode 100755 index 0000000..b9ff0c4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-96.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-96 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "98" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "missingaddr_user_01", "email": "missing.addr.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:48.268791429Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:48 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:48.270361206Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776948 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --data "{\"username\": \"missingaddr_user_01\", \"email\": \"missing.addr.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-97.yaml b/user_service/keploy/atg/tests/test-97.yaml new file mode 100755 index 0000000..bfd5fd6 --- /dev/null +++ b/user_service/keploy/atg/tests/test-97.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-97 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "45" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "alice", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:50.82365678Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:50 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"alice@example.com","id":"9fdac0ef-7d77-4798-b07f-a7076b80aa63","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmRhYzBlZi03ZDc3LTQ3OTgtYjA3Zi1hNzA3NmI4MGFhNjMiLCJ1c2VybmFtZSI6ImFsaWNlIiwiaWF0IjoxNzYyNzc2OTUwLCJleHAiOjE3NjUzNjg5NTB9.KD8KR5hCQgwPaavzjbg_sJ54-F1atGoHrDJyxZodbws","username":"alice"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:50.886105541Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776950 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --data "{\"username\": \"alice\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-98.yaml b/user_service/keploy/atg/tests/test-98.yaml new file mode 100755 index 0000000..d4107e4 --- /dev/null +++ b/user_service/keploy/atg/tests/test-98.yaml @@ -0,0 +1,47 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-98 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/users + header: + Accept-Encoding: gzip + Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q + Content-Length: "90" + Content-Type: application/json + Host: localhost:8082 + User-Agent: Go-http-client/1.1 + body: '{"username": "noorder_user_01", "email": "no.order.01@example.in", "password": "p@ssw0rd"}' + timestamp: 2025-11-10T12:15:51.706941812Z + resp: + status_code: 401 + header: + Content-Length: "25" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:51 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"error":"Unauthorized"} + status_message: Unauthorized + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:51.708244211Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776951 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/users \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: Go-http-client/1.1' \ + --header 'Accept-Encoding: gzip' \ + --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4ZWY1ODg3Ni04NDE2LTExZjAtYjBhOC1mNmMyOTNhM2UxZWQiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzU2Mzk0MTQxLCJleHAiOjE3NTg5ODYxNDF9.AsSxN-qJ5fx7cff6D4fYqwH0Wd896-4EFHNAkSRQU4Q' \ + --data "{\"username\": \"noorder_user_01\", \"email\": \"no.order.01@example.in\", \"password\": \"p@ssw0rd\"}" diff --git a/user_service/keploy/atg/tests/test-99.yaml b/user_service/keploy/atg/tests/test-99.yaml new file mode 100755 index 0000000..89d008c --- /dev/null +++ b/user_service/keploy/atg/tests/test-99.yaml @@ -0,0 +1,49 @@ +# Generated by Keploy (2-dev) +version: api.keploy.io/v1beta1 +kind: Http +name: test-99 +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:8082/api/v1/login + header: + Accept: '*/*' + Content-Length: "69" + Content-Type: application/json + Host: localhost:8082 + User-Agent: curl/8.5.0 + body: |- + { + "username": "admin", + "password": "admin123" + } + timestamp: 2025-11-10T12:15:53.673729922Z + resp: + status_code: 200 + header: + Content-Length: "317" + Content-Type: application/json + Date: Mon, 10 Nov 2025 12:15:53 GMT + Server: Werkzeug/3.0.3 Python/3.11.14 + body: | + {"email":"admin@example.com","id":"8bd161aa-bb12-11f0-982a-c678de5766ef","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4YmQxNjFhYS1iYjEyLTExZjAtOTgyYS1jNjc4ZGU1NzY2ZWYiLCJ1c2VybmFtZSI6ImFkbWluIiwiaWF0IjoxNzYyNzc2OTUzLCJleHAiOjE3NjUzNjg5NTN9.gjfO5M0E5YzxM6QQLu6RShVQnEsRXUpHSKVExz5kRZ0","username":"admin"} + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2025-11-10T12:15:53.748760435Z + objects: [] + assertions: + noise: + header.Date: [] + created: 1762776953 +curl: |- + curl --request POST \ + --url http://localhost:8082/api/v1/login \ + --header 'Content-Type: application/json' \ + --header 'Host: localhost:8082' \ + --header 'User-Agent: curl/8.5.0' \ + --header 'Accept: */*' \ + --data "{\n \"username\": \"admin\",\n \"password\": \"admin123\"\n }" diff --git a/user_service/keploy/load/reports/20251110_113538_suite-0.json b/user_service/keploy/load/reports/20251110_113538_suite-0.json new file mode 100644 index 0000000..470b3b8 --- /dev/null +++ b/user_service/keploy/load/reports/20251110_113538_suite-0.json @@ -0,0 +1,56 @@ +{ + "test_suite_file": "suite-0.yaml", + "vus": 30, + "duration": "3m", + "rps": 0, + "steps": [ + { + "step_name": "Create_todo", + "total_requests": 0, + "total_failures": 0, + "total_bytes_in": 0, + "total_bytes_out": 0, + "p95_latency": 0, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 500ms", + "severity": "high", + "actual": "0s", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 1%", + "severity": "critical", + "actual": 0, + "pass": true + } + ] + }, + { + "step_name": "Get_todo", + "total_requests": 0, + "total_failures": 0, + "total_bytes_in": 0, + "total_bytes_out": 0, + "p95_latency": 0, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 500ms", + "severity": "high", + "actual": "0s", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 1%", + "severity": "critical", + "actual": 0, + "pass": true + } + ] + } + ] +} diff --git a/user_service/keploy/load/reports/20251110_113651_suite-0.json b/user_service/keploy/load/reports/20251110_113651_suite-0.json new file mode 100644 index 0000000..5ca37b8 --- /dev/null +++ b/user_service/keploy/load/reports/20251110_113651_suite-0.json @@ -0,0 +1,56 @@ +{ + "test_suite_file": "suite-0.yaml", + "vus": 30, + "duration": "3m", + "rps": 0, + "steps": [ + { + "step_name": "Create_todo", + "total_requests": 2993, + "total_failures": 2993, + "total_bytes_in": 146657, + "total_bytes_out": 619551, + "p95_latency": 109742563, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 500ms", + "severity": "high", + "actual": "109.742563ms", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 1%", + "severity": "critical", + "actual": 100, + "pass": false + } + ] + }, + { + "step_name": "Get_todo", + "total_requests": 2993, + "total_failures": 2993, + "total_bytes_in": 0, + "total_bytes_out": 619551, + "p95_latency": 94658354, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 500ms", + "severity": "high", + "actual": "94.658354ms", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 1%", + "severity": "critical", + "actual": 100, + "pass": false + } + ] + } + ] +} diff --git a/user_service/keploy/load/reports/20251110_125123_suite-0.json b/user_service/keploy/load/reports/20251110_125123_suite-0.json new file mode 100644 index 0000000..34bea55 --- /dev/null +++ b/user_service/keploy/load/reports/20251110_125123_suite-0.json @@ -0,0 +1,128 @@ +{ + "test_suite_file": "suite-0.yaml", + "vus": 50, + "duration": "5m", + "rps": 0, + "steps": [ + { + "step_name": "Login_User", + "total_requests": 3759, + "total_failures": 3759, + "total_bytes_in": 221781, + "total_bytes_out": 120288, + "p95_latency": 34372348, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 400ms", + "severity": "high", + "actual": "34.372348ms", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 0.5%", + "severity": "critical", + "actual": 100, + "pass": false + } + ] + }, + { + "step_name": "Create_Address", + "total_requests": 3759, + "total_failures": 3759, + "total_bytes_in": 578886, + "total_bytes_out": 93975, + "p95_latency": 13458436, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 400ms", + "severity": "high", + "actual": "13.458436ms", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 0.5%", + "severity": "critical", + "actual": 100, + "pass": false + } + ] + }, + { + "step_name": "Create_Order", + "total_requests": 3759, + "total_failures": 3759, + "total_bytes_in": 593922, + "total_bytes_out": 778113, + "p95_latency": 13602788, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 400ms", + "severity": "high", + "actual": "13.602788ms", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 0.5%", + "severity": "critical", + "actual": 100, + "pass": false + } + ] + }, + { + "step_name": "Get_Order_Details", + "total_requests": 3759, + "total_failures": 3759, + "total_bytes_in": 0, + "total_bytes_out": 778113, + "p95_latency": 14229255, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 400ms", + "severity": "high", + "actual": "14.229255ms", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 0.5%", + "severity": "critical", + "actual": 100, + "pass": false + } + ] + }, + { + "step_name": "Delete_User", + "total_requests": 3759, + "total_failures": 3759, + "total_bytes_in": 0, + "total_bytes_out": 93975, + "p95_latency": 13584141, + "thresholds": [ + { + "metric": "http_req_duration_p95", + "condition": "< 400ms", + "severity": "high", + "actual": "13.584141ms", + "pass": true + }, + { + "metric": "http_req_failed_rate", + "condition": "<= 0.5%", + "severity": "critical", + "actual": 100, + "pass": false + } + ] + } + ] +} diff --git a/user_service/keploy/testsuite/keploy.yml b/user_service/keploy/testsuite/keploy.yml new file mode 100755 index 0000000..ffcee7e --- /dev/null +++ b/user_service/keploy/testsuite/keploy.yml @@ -0,0 +1,74 @@ +# Generated by Keploy (2-dev) +path: "" +appId: 0 +appName: testsuite +command: "" +templatize: + testSets: [] +port: 0 +e2e: false +dnsPort: 26789 +proxyPort: 16789 +debug: false +disableTele: false +disableANSI: false +containerName: "" +networkName: "" +buildDelay: 30 +test: + selectedTests: {} + globalNoise: + global: {} + test-sets: {} + delay: 5 + host: "" + port: 0 + apiTimeout: 5 + skipCoverage: false + coverageReportPath: "" + ignoreOrdering: true + mongoPassword: default@123 + language: "" + removeUnusedMocks: false + fallBackOnMiss: false + jacocoAgentPath: "" + basePath: "" + mocking: true + ignoredTests: {} + disableLineCoverage: false + disableMockUpload: true + useLocalMock: false + updateTemplate: false + mustPass: false + maxFailAttempts: 5 + maxFlakyChecks: 1 +record: + filters: [] + basePath: "" + recordTimer: 0s + metadata: "" +report: + selectedTestSets: {} +configPath: "" +bypassRules: [] +generateGithubActions: false +keployContainer: keploy-v2 +keployNetwork: keploy-network +cmdType: native +contract: + services: [] + tests: [] + path: "" + download: false + generate: false + driven: consumer + mappings: + servicesMapping: {} + self: s1 +testSuite: + tsPath: keploy/testsuite + tsFile: suite-0.yaml + baseUrl: "" +inCi: false + +# Visit [https://keploy.io/docs/running-keploy/configuration-file/] to learn about using keploy through configration file. diff --git a/user_service/keploy/testsuite/suite-0.yaml b/user_service/keploy/testsuite/suite-0.yaml new file mode 100644 index 0000000..2fb235b --- /dev/null +++ b/user_service/keploy/testsuite/suite-0.yaml @@ -0,0 +1,122 @@ +# suite-1.yaml +version: api.keploy.io/v2beta1 +kind: TestSuite +name: API_Gateway_Ecommerce +spec: + metadata: + description: > + Test login, user address management, and order operations + for the E-commerce API Gateway. + + # Security Configuration + security: + ruleset: strict + severity_threshold: HIGH + allowlist: + headers: ["Server"] + keys: ["data.debug"] + + # Load Testing Configuration + load: + profile: ramping_vus + vus: 50 + duration: 5m + stages: + - duration: 1m + target: 10 + - duration: 2m + target: 30 + - duration: 2m + target: 50 + thresholds: + - metric: http_req_duration_p95 + condition: "< 400ms" + severity: high + - metric: http_req_failed_rate + condition: "<= 0.5%" + severity: critical + + # Test Steps + steps: + - name: Login_User + method: POST + url: /api/v1/login + headers: + Content-Type: application/json + body: | + { + "username": "{{username}}", + "password": "p@ssw0rd" + } + extract: + jwt: token + assert: + - type: status_code + expected_string: "200" + - type: json_path + expression: "$.token" + expected_not_empty: true + + - name: Create_Address + method: POST + url: /api/v1/users/{{user_id}}/addresses + headers: + Content-Type: application/json + Authorization: Bearer {{jwt}} + body: | + { + "line1": "1 Main St", + "city": "NYC", + "state": "NY", + "postal_code": "10001", + "country": "US", + "phone": "+1-555-0000", + "is_default": true + } + extract: + address_id: id + assert: + - type: status_code + expected_string: "201" + + - name: Create_Order + method: POST + url: /api/v1/orders + headers: + Content-Type: application/json + Idempotency-Key: "{{idempotency_key}}" + Authorization: Bearer {{jwt}} + body: | + { + "userId": "{{user_id}}", + "items": [ + { + "productId": "{{product_id}}", + "quantity": 1 + } + ], + "shippingAddressId": "{{address_id}}" + } + extract: + order_id: id + assert: + - type: status_code + expected_string: "201" + + - name: Get_Order_Details + method: GET + url: /api/v1/orders/{{order_id}}/details + headers: + Authorization: Bearer {{jwt}} + assert: + - type: status_code + expected_string: "200" + + - name: Delete_User + method: DELETE + url: /api/v1/users/{{user_id}} + headers: + Authorization: Bearer {{jwt}} + assert: + - type: status_code + expected_string: "204" diff --git a/user_service/keploy/testsuite/ts_reports/20251110112827_report_suite-0.yaml b/user_service/keploy/testsuite/ts_reports/20251110112827_report_suite-0.yaml new file mode 100644 index 0000000..69560a2 --- /dev/null +++ b/user_service/keploy/testsuite/ts_reports/20251110112827_report_suite-0.yaml @@ -0,0 +1,55 @@ +suitename: Todo_CRUD_Operations +totalsteps: 2 +failedsteps: 2 +stepsresult: + - stepname: Create_todo + method: POST + url: /todos + status: failed + statuscode: 404 + header: + Content-Length: + - "207" + Content-Type: + - text/html; charset=utf-8 + Date: + - Mon, 10 Nov 2025 11:28:27 GMT + Server: + - Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ responsetime: 11.777958ms + failurereason: expected status code 201 but got 404 + extractedvars: {} + reqbytes: 49 + resbytes: 207 + - stepname: Get_todo + method: GET + url: /todos/{{todo_id}} + status: failed + statuscode: 404 + header: + Content-Length: + - "207" + Content-Type: + - text/html; charset=utf-8 + Date: + - Mon, 10 Nov 2025 11:28:27 GMT + Server: + - Werkzeug/3.0.3 Python/3.11.14 + body: | + + + 404 Not Found +

Not Found

+

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

+ responsetime: 1.930001ms + failurereason: expected status code 200 but got 404 + extractedvars: {} + reqbytes: 0 + resbytes: 207 +executiontime: 13.812667ms