From 8c94fc9bcc8927dafe959f938e2d3645ae3e3e01 Mon Sep 17 00:00:00 2001 From: HIMANSHU Date: Tue, 14 May 2024 16:25:10 +0530 Subject: [PATCH] Added Postman collection, Keploy tests, CI-CD integration, documentaion update --- .github/workflows/ci.yml | 8 + README.md | 30 +- docker-compose.yml | 30 +- .../reports/test-run-3/test-set-1-report.yaml | 2150 -------- .../reports/test-run-4/test-set-1-report.yaml | 2151 -------- .../reports/test-run-5/test-set-1-report.yaml | 2157 -------- .../reports/test-run-6/test-set-1-report.yaml | 2158 -------- .../reports/test-run-7/test-set-1-report.yaml | 2158 -------- .../reports/test-run-8/test-set-1-report.yaml | 2158 -------- keploy/test-set-1/mocks.yaml | 1189 ----- keploy/test-set-1/tests/test-1.yaml | 86 - keploy/test-set-1/tests/test-2.yaml | 86 - keploy/test-set-1/tests/test-3.yaml | 86 - keploy/test-set-1/tests/test-4.yaml | 86 - keploy/test-set-1/tests/test-5.yaml | 86 - keploy/test-set-1/tests/test-6.yaml | 80 - keploy/test-set-1/tests/test-7.yaml | 80 - keploy/test-set-2/mocks.yaml | 1717 ++++++ .../tests/aggregate-order-amount-test.yaml | 67 + keploy/test-set-2/tests/assign-role-test.yaml | 84 + .../tests/create-role-test.yaml} | 56 +- .../tests/create-store-product-test.yaml | 68 + .../test-set-2/tests/create-store-test.yaml | 68 + .../tests/create-supplier-product-test.yaml | 68 + .../tests/create-supplier-test.yaml | 68 + .../tests/create-unsharded-order-test.yaml | 67 + ...reate-unsharded-referenced-order-test.yaml | 67 + keploy/test-set-2/tests/create-user-test.yaml | 67 + keploy/test-set-2/tests/cron-job-test.yaml | 79 + .../tests/delete-referenced-order-test.yaml | 66 + .../tests/delete-store-product-test.yaml | 66 + .../tests/delete-supplierproduct-test.yaml | 66 + .../tests/delete-unsharded-order-test.yaml | 66 + ...elete-unsharded-referenced-order-test.yaml | 66 + .../fetch-all-referenced-order-test.yaml | 67 + ...h-all-shardedreferencedorderTest-test.yaml | 67 + .../tests/fetch-all-store-products-tests.yaml | 67 + .../tests/fetch-all-store-test.yaml | 67 + .../fetch-all-supplier-product-test.yaml | 67 + .../tests/fetch-all-supplier-test.yaml | 67 + .../tests/fetch-all-unsharder-order-test.yaml | 67 + .../test-set-2/tests/fetch-all-user-test.yaml | 67 + .../fetch-one-referenced-order-test.yaml | 66 + .../tests/fetch-one-store-product-test.yaml | 66 + .../tests/fetch-one-store-test.yaml | 66 + .../tests/fetch-one-supplier-test.yaml | 66 + .../tests/fetch-one-supplierproduct-test.yaml | 66 + .../tests/fetch-one-unsharded-order-test.yaml | 66 + .../test-set-2/tests/fetch-one-user-test.yaml | 66 + ...tchOne-unsharder-Referencedorder-test.yaml | 66 + keploy/test-set-2/tests/login-user-test.yaml | 81 + .../tests/order-fetch-all-test.yaml | 67 + .../tests/order-fetch-one-test.yaml | 66 + .../tests/order-remove-order-test.yaml | 75 + .../test-set-2/tests/order-update-test.yaml | 76 + .../test-set-2/tests/product-delete-test.yaml | 66 + .../tests/product-fetch-one-test.yaml | 66 + .../tests/product-update-product-test.yaml | 67 + .../tests/products-create-test.yaml | 67 + .../tests/products-fetch-all-test.yaml | 66 + .../tests/reference-order-create-test.yaml | 67 + .../test-set-2/tests/remove-store-test.yaml | 66 + .../tests/remove-supplier-test.yaml | 66 + keploy/test-set-2/tests/remove-user-test.yaml | 66 + .../tests/update-referencedOrder-test.yaml | 67 + .../tests/update-store-product-test.yaml | 67 + .../test-set-2/tests/update-store-test.yaml | 67 + .../tests/update-supplier-test.yaml | 67 + .../tests/update-supplierproduct-test.yaml | 67 + .../update-unshardedReferencedOrder-test.yaml | 67 + .../tests/update-unshardedorder-test.yaml | 67 + keploy/test-set-2/tests/update-user-test.yaml | 67 + package.json | 2 +- ...e-Mongo-Collection.postman_collection.json | 4739 +++++++++++++++++ 74 files changed, 10128 insertions(+), 14760 deletions(-) delete mode 100755 keploy/reports/test-run-3/test-set-1-report.yaml delete mode 100755 keploy/reports/test-run-4/test-set-1-report.yaml delete mode 100755 keploy/reports/test-run-5/test-set-1-report.yaml delete mode 100755 keploy/reports/test-run-6/test-set-1-report.yaml delete mode 100755 keploy/reports/test-run-7/test-set-1-report.yaml delete mode 100755 keploy/reports/test-run-8/test-set-1-report.yaml delete mode 100755 keploy/test-set-1/mocks.yaml delete mode 100755 keploy/test-set-1/tests/test-1.yaml delete mode 100755 keploy/test-set-1/tests/test-2.yaml delete mode 100755 keploy/test-set-1/tests/test-3.yaml delete mode 100755 keploy/test-set-1/tests/test-4.yaml delete mode 100755 keploy/test-set-1/tests/test-5.yaml delete mode 100755 keploy/test-set-1/tests/test-6.yaml delete mode 100755 keploy/test-set-1/tests/test-7.yaml create mode 100755 keploy/test-set-2/mocks.yaml create mode 100755 keploy/test-set-2/tests/aggregate-order-amount-test.yaml create mode 100755 keploy/test-set-2/tests/assign-role-test.yaml rename keploy/{test-set-1/tests/test-8.yaml => test-set-2/tests/create-role-test.yaml} (62%) create mode 100755 keploy/test-set-2/tests/create-store-product-test.yaml create mode 100755 keploy/test-set-2/tests/create-store-test.yaml create mode 100755 keploy/test-set-2/tests/create-supplier-product-test.yaml create mode 100755 keploy/test-set-2/tests/create-supplier-test.yaml create mode 100755 keploy/test-set-2/tests/create-unsharded-order-test.yaml create mode 100755 keploy/test-set-2/tests/create-unsharded-referenced-order-test.yaml create mode 100755 keploy/test-set-2/tests/create-user-test.yaml create mode 100755 keploy/test-set-2/tests/cron-job-test.yaml create mode 100755 keploy/test-set-2/tests/delete-referenced-order-test.yaml create mode 100755 keploy/test-set-2/tests/delete-store-product-test.yaml create mode 100755 keploy/test-set-2/tests/delete-supplierproduct-test.yaml create mode 100755 keploy/test-set-2/tests/delete-unsharded-order-test.yaml create mode 100755 keploy/test-set-2/tests/delete-unsharded-referenced-order-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-referenced-order-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-shardedreferencedorderTest-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-store-products-tests.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-store-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-supplier-product-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-supplier-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-unsharder-order-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-all-user-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-one-referenced-order-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-one-store-product-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-one-store-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-one-supplier-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-one-supplierproduct-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-one-unsharded-order-test.yaml create mode 100755 keploy/test-set-2/tests/fetch-one-user-test.yaml create mode 100755 keploy/test-set-2/tests/fetchOne-unsharder-Referencedorder-test.yaml create mode 100755 keploy/test-set-2/tests/login-user-test.yaml create mode 100755 keploy/test-set-2/tests/order-fetch-all-test.yaml create mode 100755 keploy/test-set-2/tests/order-fetch-one-test.yaml create mode 100755 keploy/test-set-2/tests/order-remove-order-test.yaml create mode 100755 keploy/test-set-2/tests/order-update-test.yaml create mode 100755 keploy/test-set-2/tests/product-delete-test.yaml create mode 100755 keploy/test-set-2/tests/product-fetch-one-test.yaml create mode 100755 keploy/test-set-2/tests/product-update-product-test.yaml create mode 100755 keploy/test-set-2/tests/products-create-test.yaml create mode 100755 keploy/test-set-2/tests/products-fetch-all-test.yaml create mode 100755 keploy/test-set-2/tests/reference-order-create-test.yaml create mode 100755 keploy/test-set-2/tests/remove-store-test.yaml create mode 100755 keploy/test-set-2/tests/remove-supplier-test.yaml create mode 100755 keploy/test-set-2/tests/remove-user-test.yaml create mode 100755 keploy/test-set-2/tests/update-referencedOrder-test.yaml create mode 100755 keploy/test-set-2/tests/update-store-product-test.yaml create mode 100755 keploy/test-set-2/tests/update-store-test.yaml create mode 100755 keploy/test-set-2/tests/update-supplier-test.yaml create mode 100755 keploy/test-set-2/tests/update-supplierproduct-test.yaml create mode 100755 keploy/test-set-2/tests/update-unshardedReferencedOrder-test.yaml create mode 100755 keploy/test-set-2/tests/update-unshardedorder-test.yaml create mode 100755 keploy/test-set-2/tests/update-user-test.yaml create mode 100644 postman/Node-Mongo-Collection.postman_collection.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4812553..fa86f44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,17 @@ jobs: with: cache: 'yarn' node-version: ${{ matrix.node-version }} + - name: Install Yarn + run: npm install -g yarn - name: Install dependencies run: yarn install - name: Lint run: yarn lint + - name: Install keploy + run: curl -O https://raw.githubusercontent.com/keploy/keploy/main/keploy.sh && source keploy.sh + - name: Run Keploy test + run: keploy -c "yarn e2eTest" - name: Test run: yarn test + - name: Total Coverage + run: yarn coverage:total \ No newline at end of file diff --git a/README.md b/README.md index 3df2328..3758979 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,6 @@

An enterprise Mongo-Express REST API built using nodejs showcasing - Testing Strategy, mongoDB sharding, models, a REST API Interface, support for Redis, aggregation queries, aggregation caching, circuit-breakers, slack integration, RBAC, rate limited APIs and multi-container queues and schedulers.

- ---

@@ -80,6 +79,7 @@ A basic starter for a web app with node, express and mongoose --> - Autogenerated swagger documentation - Load testing using k6 - Support for i18n + - Support Keploy Test Integration ## Running Load tests @@ -118,7 +118,33 @@ Run the following command to begin seeding - ./seeders/seed.sh - yarn start - open browser to `localhost:9000` (port default to 9000) - +## How to Run Tests +### Running Test with Jest +- To run the test using jest use command below + + `yarn test` + +### Running test with keploy +- Install Keploy using following command + ` curl -O https://raw.githubusercontent.com/keploy/keploy/main/keploy.sh && source keploy.sh` +- To record the test with keploy Use the command below. + + `keploy record -c 'yarn start'` + +- To run the keploy test use following command + + `keploy test -c 'yarn e2eTest'` +- To get Test coverage with keploy use command below + + `yarn coverage:report` + +Note: To run keploy test you must have lima for Mac and WSL for windows. +### Test Coverage +- To get Total coverage which includes unit-test coverage and keploy test coverage use command below: + + `yarn coverage:total` + +Note: To run keploy test you must have lima for Mac and WSL for windows. ## API Documentation Once you've to the server started check out the api documentation at [/api-docs](http://localhost:9000/api-docs) diff --git a/docker-compose.yml b/docker-compose.yml index 6850257..b1a3e44 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,20 +1,20 @@ version: "3" services: - app: - build: - context: . - args: - ENVIRONMENT_NAME: ${ENVIRONMENT_NAME} - dockerfile: Dockerfile - ports: - - "9000:9000" - env_file: - - .env.local - environment: - - REDIS_DOMAIN=redis - - MONGO_BASE_URI=mongo - depends_on: - - mongo + # app: + # build: + # context: . + # args: + # ENVIRONMENT_NAME: ${ENVIRONMENT_NAME} + # dockerfile: Dockerfile + # ports: + # - "9000:9000" + # env_file: + # - .env.local + # environment: + # - REDIS_DOMAIN=redis + # - MONGO_BASE_URI=mongo + # depends_on: + # - mongo mongo: container_name: mongo diff --git a/keploy/reports/test-run-3/test-set-1-report.yaml b/keploy/reports/test-run-3/test-set-1-report.yaml deleted file mode 100755 index cda49f1..0000000 --- a/keploy/reports/test-run-3/test-set-1-report.yaml +++ /dev/null @@ -1,2150 +0,0 @@ -version: api.keploy.io/v1beta1 -name: test-set-1-report -status: FAILED -success: 1 -failure: 7 -total: 8 -tests: - - kind: Http - name: test-set-1 - status: FAILED - started: 1713954963 - completed: 1713954963 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/ - header: - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Cache-Control: max-age=0 - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: document - Sec-Fetch-Mode: navigate - Sec-Fetch-Site: same-origin - Sec-Fetch-User: ?1 - Sec-Gpc: "1" - Upgrade-Insecure-Requests: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.261977234+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 14.431ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.387275343+05:30 - noise: - header.Date: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - actual: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: false - expected: - key: X-Response-Time - value: - - 14.431ms - actual: - key: X-Response-Time - value: - - 3.321ms - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:03 GMT - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713954963 - completed: 1713954963 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-bundle.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"10b5da-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.321523467+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"10b5da-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.660ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516407031+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:03 GMT - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Response-Time - value: - - 2.660ms - actual: - key: X-Response-Time - value: - - 1.908ms - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Etag - value: - - W/"10b5da-18ef5d16688" - actual: - key: Etag - value: - - W/"10b5da-18ef5d16688" - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713954963 - completed: 1713954963 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-2 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui.css - header: - Accept: text/css,*/*;q=0.1 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"2326c-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: style - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325022626+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"2326c-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.655ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488659266+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:03 GMT - - normal: true - expected: - key: Etag - value: - - W/"2326c-18ef5d16688" - actual: - key: Etag - value: - - W/"2326c-18ef5d16688" - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: false - expected: - key: X-Response-Time - value: - - 2.655ms - actual: - key: X-Response-Time - value: - - 7.030ms - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713954963 - completed: 1713954963 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-3 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-standalone-preset.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"52e54-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325877884+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"52e54-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.168ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488826976+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:03 GMT - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Etag - value: - - W/"52e54-18ef5d16688" - actual: - key: Etag - value: - - W/"52e54-18ef5d16688" - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: false - expected: - key: X-Response-Time - value: - - 2.168ms - actual: - key: X-Response-Time - value: - - 2.094ms - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713954963 - completed: 1713954963 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-init.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.326708058+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.347ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517195163+05:30 - noise: - header.Date: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - actual: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: false - expected: - key: X-Response-Time - value: - - 0.347ms - actual: - key: X-Response-Time - value: - - 0.374ms - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:03 GMT - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713954963 - completed: 1713954963 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/favicon-32x32.png - header: - Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"274-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: image - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.407348659+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"274-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.335ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516996661+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:03 GMT - - normal: true - expected: - key: Etag - value: - - W/"274-18ef5d16688" - actual: - key: Etag - value: - - W/"274-18ef5d16688" - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: false - expected: - key: X-Response-Time - value: - - 2.335ms - actual: - key: X-Response-Time - value: - - 1.353ms - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713954963 - completed: 1713954963 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-6 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger.json - header: - Accept: application/json,*/* - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.408256084+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.995ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517101329+05:30 - noise: - header.Date: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - actual: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: false - expected: - key: X-Response-Time - value: - - 0.995ms - actual: - key: X-Response-Time - value: - - 0.807ms - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:03 GMT - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713954963 - completed: 1713954965 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-8 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/users - header: - Accept: application/json - Accept-Encoding: gzip, deflate, br - Connection: keep-alive - Content-Length: "137" - Content-Type: application/json - Host: localhost:9000 - Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5 - User-Agent: PostmanRuntime/7.37.3 - body: |- - { - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" - } - timestamp: 2024-04-24T16:04:10.035935868+05:30 - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Length: "134" - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Content-Type: application/json; charset=utf-8 - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:34:15 GMT - Etag: W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 5482.601ms - X-Xss-Protection: "0" - body: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:04:17.542766152+05:30 - noise: - body.data.email: [] - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Content-Type - value: - - application/json; charset=utf-8 - actual: - key: Content-Type - value: - - application/json; charset=utf-8 - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:34:15 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:36:05 GMT - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: false - expected: - key: Etag - value: - - W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - actual: - key: Etag - value: - - W/"86-IMjvtOSzO7b8LHg55qrr4kqIekM" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Response-Time - value: - - 5482.601ms - actual: - key: X-Response-Time - value: - - 2035.471ms - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Content-Length - value: - - "134" - actual: - key: Content-Length - value: - - "134" - body_result: - - normal: false - type: JSON - expected: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - actual: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e09573123e9440f32e92","__v":0}}' - dep_result: [] -test_set: test-set-1 diff --git a/keploy/reports/test-run-4/test-set-1-report.yaml b/keploy/reports/test-run-4/test-set-1-report.yaml deleted file mode 100755 index 5020285..0000000 --- a/keploy/reports/test-run-4/test-set-1-report.yaml +++ /dev/null @@ -1,2151 +0,0 @@ -version: api.keploy.io/v1beta1 -name: test-set-1-report -status: FAILED -success: 1 -failure: 7 -total: 8 -tests: - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955049 - completed: 1713955049 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/ - header: - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Cache-Control: max-age=0 - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: document - Sec-Fetch-Mode: navigate - Sec-Fetch-Site: same-origin - Sec-Fetch-User: ?1 - Sec-Gpc: "1" - Upgrade-Insecure-Requests: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.261977234+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 14.431ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.387275343+05:30 - noise: - header.Date: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - actual: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: false - expected: - key: X-Response-Time - value: - - 14.431ms - actual: - key: X-Response-Time - value: - - 3.626ms - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:29 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955049 - completed: 1713955049 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-bundle.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"10b5da-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.321523467+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"10b5da-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.660ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516407031+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Etag - value: - - W/"10b5da-18ef5d16688" - actual: - key: Etag - value: - - W/"10b5da-18ef5d16688" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:29 GMT - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Response-Time - value: - - 2.660ms - actual: - key: X-Response-Time - value: - - 2.130ms - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955049 - completed: 1713955049 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-2 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui.css - header: - Accept: text/css,*/*;q=0.1 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"2326c-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: style - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325022626+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"2326c-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.655ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488659266+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: false - expected: - key: X-Response-Time - value: - - 2.655ms - actual: - key: X-Response-Time - value: - - 1.100ms - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Etag - value: - - W/"2326c-18ef5d16688" - actual: - key: Etag - value: - - W/"2326c-18ef5d16688" - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:29 GMT - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955049 - completed: 1713955049 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-3 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-standalone-preset.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"52e54-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325877884+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"52e54-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.168ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488826976+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:29 GMT - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: false - expected: - key: X-Response-Time - value: - - 2.168ms - actual: - key: X-Response-Time - value: - - 1.039ms - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Etag - value: - - W/"52e54-18ef5d16688" - actual: - key: Etag - value: - - W/"52e54-18ef5d16688" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955049 - completed: 1713955049 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-init.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.326708058+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.347ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517195163+05:30 - noise: - header.Date: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: false - expected: - key: X-Response-Time - value: - - 0.347ms - actual: - key: X-Response-Time - value: - - 0.322ms - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:29 GMT - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - actual: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955049 - completed: 1713955049 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/favicon-32x32.png - header: - Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"274-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: image - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.407348659+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"274-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.335ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516996661+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: false - expected: - key: X-Response-Time - value: - - 2.335ms - actual: - key: X-Response-Time - value: - - 0.920ms - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Etag - value: - - W/"274-18ef5d16688" - actual: - key: Etag - value: - - W/"274-18ef5d16688" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:29 GMT - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955049 - completed: 1713955049 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-6 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger.json - header: - Accept: application/json,*/* - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.408256084+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.995ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517101329+05:30 - noise: - header.Date: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: false - expected: - key: X-Response-Time - value: - - 0.995ms - actual: - key: X-Response-Time - value: - - 0.795ms - - normal: true - expected: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - actual: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:29 GMT - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955049 - completed: 1713955051 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-8 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/users - header: - Accept: application/json - Accept-Encoding: gzip, deflate, br - Connection: keep-alive - Content-Length: "137" - Content-Type: application/json - Host: localhost:9000 - Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5 - User-Agent: PostmanRuntime/7.37.3 - body: |- - { - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" - } - timestamp: 2024-04-24T16:04:10.035935868+05:30 - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Length: "134" - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Content-Type: application/json; charset=utf-8 - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:34:15 GMT - Etag: W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 5482.601ms - X-Xss-Protection: "0" - body: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:04:17.542766152+05:30 - noise: - body.data._id: [] - body.data.email: [] - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Content-Type - value: - - application/json; charset=utf-8 - actual: - key: Content-Type - value: - - application/json; charset=utf-8 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:34:15 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:37:31 GMT - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Content-Length - value: - - "134" - actual: - key: Content-Length - value: - - "134" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: false - expected: - key: Etag - value: - - W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - actual: - key: Etag - value: - - W/"86-Ajkkw2IQxQ2mHxLqCg8qfHPr9fY" - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Response-Time - value: - - 5482.601ms - actual: - key: X-Response-Time - value: - - 2035.187ms - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - body_result: - - normal: true - type: JSON - expected: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - actual: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e0ebf6815fd00262e132","__v":0}}' - dep_result: [] -test_set: test-set-1 diff --git a/keploy/reports/test-run-5/test-set-1-report.yaml b/keploy/reports/test-run-5/test-set-1-report.yaml deleted file mode 100755 index b33cd36..0000000 --- a/keploy/reports/test-run-5/test-set-1-report.yaml +++ /dev/null @@ -1,2157 +0,0 @@ -version: api.keploy.io/v1beta1 -name: test-set-1-report -status: FAILED -success: 7 -failure: 1 -total: 8 -tests: - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955151 - completed: 1713955151 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/ - header: - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Cache-Control: max-age=0 - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: document - Sec-Fetch-Mode: navigate - Sec-Fetch-Site: same-origin - Sec-Fetch-User: ?1 - Sec-Gpc: "1" - Upgrade-Insecure-Requests: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.261977234+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 14.431ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.387275343+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Response-Time - value: - - 14.431ms - actual: - key: X-Response-Time - value: - - 3.216ms - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:11 GMT - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - actual: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955151 - completed: 1713955151 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-bundle.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"10b5da-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.321523467+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"10b5da-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.660ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516407031+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:11 GMT - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: X-Response-Time - value: - - 2.660ms - actual: - key: X-Response-Time - value: - - 2.235ms - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Etag - value: - - W/"10b5da-18ef5d16688" - actual: - key: Etag - value: - - W/"10b5da-18ef5d16688" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955151 - completed: 1713955151 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-2 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui.css - header: - Accept: text/css,*/*;q=0.1 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"2326c-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: style - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325022626+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"2326c-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.655ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488659266+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Etag - value: - - W/"2326c-18ef5d16688" - actual: - key: Etag - value: - - W/"2326c-18ef5d16688" - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:11 GMT - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Response-Time - value: - - 2.655ms - actual: - key: X-Response-Time - value: - - 0.838ms - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955151 - completed: 1713955151 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-3 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-standalone-preset.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"52e54-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325877884+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"52e54-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.168ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488826976+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Response-Time - value: - - 2.168ms - actual: - key: X-Response-Time - value: - - 4.814ms - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:11 GMT - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Etag - value: - - W/"52e54-18ef5d16688" - actual: - key: Etag - value: - - W/"52e54-18ef5d16688" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955151 - completed: 1713955151 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-init.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.326708058+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.347ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517195163+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:11 GMT - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - actual: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Response-Time - value: - - 0.347ms - actual: - key: X-Response-Time - value: - - 0.303ms - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955151 - completed: 1713955151 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/favicon-32x32.png - header: - Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"274-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: image - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.407348659+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"274-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.335ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516996661+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Response-Time - value: - - 2.335ms - actual: - key: X-Response-Time - value: - - 0.979ms - - normal: true - expected: - key: Etag - value: - - W/"274-18ef5d16688" - actual: - key: Etag - value: - - W/"274-18ef5d16688" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:11 GMT - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955151 - completed: 1713955151 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-6 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger.json - header: - Accept: application/json,*/* - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.408256084+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.995ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517101329+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:11 GMT - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - actual: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Response-Time - value: - - 0.995ms - actual: - key: X-Response-Time - value: - - 0.717ms - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: FAILED - started: 1713955151 - completed: 1713955153 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-8 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/users - header: - Accept: application/json - Accept-Encoding: gzip, deflate, br - Connection: keep-alive - Content-Length: "137" - Content-Type: application/json - Host: localhost:9000 - Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5 - User-Agent: PostmanRuntime/7.37.3 - body: |- - { - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" - } - timestamp: 2024-04-24T16:04:10.035935868+05:30 - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Length: "134" - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Content-Type: application/json; charset=utf-8 - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:34:15 GMT - Etag: W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 5482.601ms - X-Xss-Protection: "0" - body: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:04:17.542766152+05:30 - noise: - body.data._id: [] - body.data.email: [] - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: false - expected: - key: Etag - value: - - W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - actual: - key: Etag - value: - - W/"86-WEo1HoieY4FoWAuRoeF6UHvHVzo" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Response-Time - value: - - 5482.601ms - actual: - key: X-Response-Time - value: - - 2035.998ms - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Content-Length - value: - - "134" - actual: - key: Content-Length - value: - - "134" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Content-Type - value: - - application/json; charset=utf-8 - actual: - key: Content-Type - value: - - application/json; charset=utf-8 - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:34:15 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:13 GMT - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - body_result: - - normal: true - type: JSON - expected: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - actual: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e1514b944991c39d5a19","__v":0}}' - dep_result: [] -test_set: test-set-1 diff --git a/keploy/reports/test-run-6/test-set-1-report.yaml b/keploy/reports/test-run-6/test-set-1-report.yaml deleted file mode 100755 index 84649fb..0000000 --- a/keploy/reports/test-run-6/test-set-1-report.yaml +++ /dev/null @@ -1,2158 +0,0 @@ -version: api.keploy.io/v1beta1 -name: test-set-1-report -status: PASSED -success: 8 -failure: 0 -total: 8 -tests: - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955188 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/ - header: - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Cache-Control: max-age=0 - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: document - Sec-Fetch-Mode: navigate - Sec-Fetch-Site: same-origin - Sec-Fetch-User: ?1 - Sec-Gpc: "1" - Upgrade-Insecure-Requests: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.261977234+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 14.431ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.387275343+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - actual: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:48 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Response-Time - value: - - 14.431ms - actual: - key: X-Response-Time - value: - - 3.360ms - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955188 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-bundle.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"10b5da-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.321523467+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"10b5da-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.660ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516407031+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Response-Time - value: - - 2.660ms - actual: - key: X-Response-Time - value: - - 1.875ms - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Etag - value: - - W/"10b5da-18ef5d16688" - actual: - key: Etag - value: - - W/"10b5da-18ef5d16688" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:48 GMT - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955188 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-2 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui.css - header: - Accept: text/css,*/*;q=0.1 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"2326c-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: style - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325022626+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"2326c-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.655ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488659266+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:48 GMT - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Response-Time - value: - - 2.655ms - actual: - key: X-Response-Time - value: - - 1.269ms - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Etag - value: - - W/"2326c-18ef5d16688" - actual: - key: Etag - value: - - W/"2326c-18ef5d16688" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955188 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-3 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-standalone-preset.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"52e54-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325877884+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"52e54-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.168ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488826976+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:48 GMT - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Etag - value: - - W/"52e54-18ef5d16688" - actual: - key: Etag - value: - - W/"52e54-18ef5d16688" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Response-Time - value: - - 2.168ms - actual: - key: X-Response-Time - value: - - 1.360ms - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955188 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-init.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.326708058+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.347ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517195163+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:48 GMT - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Response-Time - value: - - 0.347ms - actual: - key: X-Response-Time - value: - - 0.338ms - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - actual: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955188 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/favicon-32x32.png - header: - Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"274-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: image - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.407348659+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"274-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.335ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516996661+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:48 GMT - - normal: true - expected: - key: Etag - value: - - W/"274-18ef5d16688" - actual: - key: Etag - value: - - W/"274-18ef5d16688" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Response-Time - value: - - 2.335ms - actual: - key: X-Response-Time - value: - - 1.465ms - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955188 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-6 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger.json - header: - Accept: application/json,*/* - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.408256084+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.995ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517101329+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - actual: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Response-Time - value: - - 0.995ms - actual: - key: X-Response-Time - value: - - 0.783ms - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:48 GMT - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955188 - completed: 1713955190 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-8 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/users - header: - Accept: application/json - Accept-Encoding: gzip, deflate, br - Connection: keep-alive - Content-Length: "137" - Content-Type: application/json - Host: localhost:9000 - Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5 - User-Agent: PostmanRuntime/7.37.3 - body: |- - { - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" - } - timestamp: 2024-04-24T16:04:10.035935868+05:30 - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Length: "134" - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Content-Type: application/json; charset=utf-8 - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:34:15 GMT - Etag: W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 5482.601ms - X-Xss-Protection: "0" - body: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:04:17.542766152+05:30 - noise: - body.data._id: [] - body.data.email: [] - header.Date: [] - header.Etag: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: X-Response-Time - value: - - 5482.601ms - actual: - key: X-Response-Time - value: - - 2041.525ms - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:34:15 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:39:50 GMT - - normal: true - expected: - key: Etag - value: - - W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - actual: - key: Etag - value: - - W/"86-eyALtKxwvWABYyFNleAr4FWQKhc" - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Content-Length - value: - - "134" - actual: - key: Content-Length - value: - - "134" - - normal: true - expected: - key: Content-Type - value: - - application/json; charset=utf-8 - actual: - key: Content-Type - value: - - application/json; charset=utf-8 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - body_result: - - normal: true - type: JSON - expected: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - actual: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e176405920e1f2c86c99","__v":0}}' - dep_result: [] -test_set: test-set-1 diff --git a/keploy/reports/test-run-7/test-set-1-report.yaml b/keploy/reports/test-run-7/test-set-1-report.yaml deleted file mode 100755 index 4268806..0000000 --- a/keploy/reports/test-run-7/test-set-1-report.yaml +++ /dev/null @@ -1,2158 +0,0 @@ -version: api.keploy.io/v1beta1 -name: test-set-1-report -status: PASSED -success: 8 -failure: 0 -total: 8 -tests: - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955367 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/ - header: - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Cache-Control: max-age=0 - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: document - Sec-Fetch-Mode: navigate - Sec-Fetch-Site: same-origin - Sec-Fetch-User: ?1 - Sec-Gpc: "1" - Upgrade-Insecure-Requests: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.261977234+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 14.431ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.387275343+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - actual: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Response-Time - value: - - 14.431ms - actual: - key: X-Response-Time - value: - - 4.101ms - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:47 GMT - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955367 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-bundle.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"10b5da-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.321523467+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"10b5da-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.660ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516407031+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Etag - value: - - W/"10b5da-18ef5d16688" - actual: - key: Etag - value: - - W/"10b5da-18ef5d16688" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Response-Time - value: - - 2.660ms - actual: - key: X-Response-Time - value: - - 2.133ms - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:47 GMT - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955367 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-2 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui.css - header: - Accept: text/css,*/*;q=0.1 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"2326c-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: style - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325022626+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"2326c-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.655ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488659266+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Etag - value: - - W/"2326c-18ef5d16688" - actual: - key: Etag - value: - - W/"2326c-18ef5d16688" - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Response-Time - value: - - 2.655ms - actual: - key: X-Response-Time - value: - - 1.550ms - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:47 GMT - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955367 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-3 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-standalone-preset.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"52e54-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325877884+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"52e54-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.168ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488826976+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Response-Time - value: - - 2.168ms - actual: - key: X-Response-Time - value: - - 2.060ms - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:47 GMT - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Etag - value: - - W/"52e54-18ef5d16688" - actual: - key: Etag - value: - - W/"52e54-18ef5d16688" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955367 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-init.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.326708058+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.347ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517195163+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:47 GMT - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - actual: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Response-Time - value: - - 0.347ms - actual: - key: X-Response-Time - value: - - 0.367ms - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955367 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/favicon-32x32.png - header: - Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"274-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: image - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.407348659+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"274-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.335ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516996661+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Etag - value: - - W/"274-18ef5d16688" - actual: - key: Etag - value: - - W/"274-18ef5d16688" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:47 GMT - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Response-Time - value: - - 2.335ms - actual: - key: X-Response-Time - value: - - 1.143ms - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955367 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-6 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger.json - header: - Accept: application/json,*/* - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.408256084+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.995ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517101329+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:47 GMT - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - actual: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Response-Time - value: - - 0.995ms - actual: - key: X-Response-Time - value: - - 0.839ms - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1713955367 - completed: 1713955369 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-8 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/users - header: - Accept: application/json - Accept-Encoding: gzip, deflate, br - Connection: keep-alive - Content-Length: "137" - Content-Type: application/json - Host: localhost:9000 - Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5 - User-Agent: PostmanRuntime/7.37.3 - body: |- - { - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" - } - timestamp: 2024-04-24T16:04:10.035935868+05:30 - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Length: "134" - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Content-Type: application/json; charset=utf-8 - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:34:15 GMT - Etag: W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 5482.601ms - X-Xss-Protection: "0" - body: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:04:17.542766152+05:30 - noise: - body.data._id: [] - body.data.email: [] - header.Date: [] - header.Etag: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Etag - value: - - W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - actual: - key: Etag - value: - - W/"86-8uGT1YHHskcGwKbc+37xmMhr2LM" - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Response-Time - value: - - 5482.601ms - actual: - key: X-Response-Time - value: - - 2039.200ms - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Content-Length - value: - - "134" - actual: - key: Content-Length - value: - - "134" - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Content-Type - value: - - application/json; charset=utf-8 - actual: - key: Content-Type - value: - - application/json; charset=utf-8 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:34:15 GMT - actual: - key: Date - value: - - Wed, 24 Apr 2024 10:42:49 GMT - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - body_result: - - normal: true - type: JSON - expected: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - actual: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e2294e0b036c685c09fc","__v":0}}' - dep_result: [] -test_set: test-set-1 diff --git a/keploy/reports/test-run-8/test-set-1-report.yaml b/keploy/reports/test-run-8/test-set-1-report.yaml deleted file mode 100755 index fbadfe2..0000000 --- a/keploy/reports/test-run-8/test-set-1-report.yaml +++ /dev/null @@ -1,2158 +0,0 @@ -version: api.keploy.io/v1beta1 -name: test-set-1-report -status: PASSED -success: 8 -failure: 0 -total: 8 -tests: - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374885 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-1 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/ - header: - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Cache-Control: max-age=0 - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: document - Sec-Fetch-Mode: navigate - Sec-Fetch-Site: same-origin - Sec-Fetch-User: ?1 - Sec-Gpc: "1" - Upgrade-Insecure-Requests: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.261977234+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 14.431ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.387275343+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Response-Time - value: - - 14.431ms - actual: - key: X-Response-Time - value: - - 3.582ms - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:45 GMT - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - actual: - key: Etag - value: - - W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374885 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-4 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-bundle.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"10b5da-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.321523467+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"10b5da-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.660ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516407031+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:45 GMT - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Response-Time - value: - - 2.660ms - actual: - key: X-Response-Time - value: - - 1.820ms - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Etag - value: - - W/"10b5da-18ef5d16688" - actual: - key: Etag - value: - - W/"10b5da-18ef5d16688" - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374885 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-2 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui.css - header: - Accept: text/css,*/*;q=0.1 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"2326c-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: style - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325022626+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"2326c-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.655ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488659266+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Response-Time - value: - - 2.655ms - actual: - key: X-Response-Time - value: - - 1.576ms - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:45 GMT - - normal: true - expected: - key: Etag - value: - - W/"2326c-18ef5d16688" - actual: - key: Etag - value: - - W/"2326c-18ef5d16688" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374885 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-3 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-standalone-preset.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"52e54-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325877884+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"52e54-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.168ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488826976+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:45 GMT - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Etag - value: - - W/"52e54-18ef5d16688" - actual: - key: Etag - value: - - W/"52e54-18ef5d16688" - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Response-Time - value: - - 2.168ms - actual: - key: X-Response-Time - value: - - 1.185ms - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374885 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-7 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-init.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.326708058+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.347ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517195163+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:45 GMT - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Response-Time - value: - - 0.347ms - actual: - key: X-Response-Time - value: - - 0.465ms - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - actual: - key: Etag - value: - - W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374885 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-5 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/favicon-32x32.png - header: - Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"274-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: image - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.407348659+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"274-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.335ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516996661+05:30 - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - actual: - key: Last-Modified - value: - - Fri, 19 Apr 2024 10:05:25 GMT - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:45 GMT - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Response-Time - value: - - 2.335ms - actual: - key: X-Response-Time - value: - - 1.455ms - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: Accept-Ranges - value: - - bytes - actual: - key: Accept-Ranges - value: - - bytes - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Etag - value: - - W/"274-18ef5d16688" - actual: - key: Etag - value: - - W/"274-18ef5d16688" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Cache-Control - value: - - public, max-age=0 - actual: - key: Cache-Control - value: - - public, max-age=0 - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374885 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-6 - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger.json - header: - Accept: application/json,*/* - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.408256084+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.995ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517101329+05:30 - noise: - header.Date: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 304 - actual: 304 - headers_result: - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: X-Response-Time - value: - - 0.995ms - actual: - key: X-Response-Time - value: - - 0.987ms - - normal: true - expected: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - actual: - key: Etag - value: - - W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:33:57 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:45 GMT - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - body_result: - - normal: true - type: PLAIN - expected: "" - actual: "" - dep_result: [] - - kind: Http - name: test-set-1 - status: PASSED - started: 1714374885 - completed: 1714374888 - test_case_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1 - mock_path: /Users/himanshu/wednesday-repos/node-mongo-express/keploy/test-set-1/mocks.yaml - test_case_id: test-8 - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/users - header: - Accept: application/json - Accept-Encoding: gzip, deflate, br - Connection: keep-alive - Content-Length: "137" - Content-Type: application/json - Host: localhost:9000 - Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5 - User-Agent: PostmanRuntime/7.37.3 - body: |- - { - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" - } - timestamp: 2024-04-24T16:04:10.035935868+05:30 - resp: - status_code: 200 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Length: "134" - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Content-Type: application/json; charset=utf-8 - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:34:15 GMT - Etag: W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 5482.601ms - X-Xss-Protection: "0" - body: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - status_message: OK - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:04:17.542766152+05:30 - noise: - body.data._id: [] - body.data.email: [] - header.Date: [] - header.Etag: [] - header.X-Response-Time: [] - result: - status_code: - normal: true - expected: 200 - actual: 200 - headers_result: - - normal: true - expected: - key: X-Frame-Options - value: - - SAMEORIGIN - actual: - key: X-Frame-Options - value: - - SAMEORIGIN - - normal: true - expected: - key: Content-Length - value: - - "134" - actual: - key: Content-Length - value: - - "134" - - normal: true - expected: - key: Cross-Origin-Resource-Policy - value: - - same-origin - actual: - key: Cross-Origin-Resource-Policy - value: - - same-origin - - normal: true - expected: - key: Connection - value: - - keep-alive - actual: - key: Connection - value: - - keep-alive - - normal: true - expected: - key: Date - value: - - Wed, 24 Apr 2024 10:34:15 GMT - actual: - key: Date - value: - - Mon, 29 Apr 2024 07:14:48 GMT - - normal: true - expected: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - actual: - key: Strict-Transport-Security - value: - - max-age=15552000; includeSubDomains - - normal: true - expected: - key: Keep-Alive - value: - - timeout=5 - actual: - key: Keep-Alive - value: - - timeout=5 - - normal: true - expected: - key: X-Permitted-Cross-Domain-Policies - value: - - none - actual: - key: X-Permitted-Cross-Domain-Policies - value: - - none - - normal: true - expected: - key: X-Download-Options - value: - - noopen - actual: - key: X-Download-Options - value: - - noopen - - normal: true - expected: - key: Access-Control-Allow-Origin - value: - - '*' - actual: - key: Access-Control-Allow-Origin - value: - - '*' - - normal: true - expected: - key: X-Xss-Protection - value: - - "0" - actual: - key: X-Xss-Protection - value: - - "0" - - normal: true - expected: - key: Cross-Origin-Opener-Policy - value: - - same-origin - actual: - key: Cross-Origin-Opener-Policy - value: - - same-origin - - normal: true - expected: - key: X-Dns-Prefetch-Control - value: - - "off" - actual: - key: X-Dns-Prefetch-Control - value: - - "off" - - normal: true - expected: - key: Etag - value: - - W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" - actual: - key: Etag - value: - - W/"86-4KUZ/bw/kbCiVTX+7meL+wm5n/Y" - - normal: true - expected: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - actual: - key: Content-Security-Policy - value: - - 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - - normal: true - expected: - key: Content-Type - value: - - application/json; charset=utf-8 - actual: - key: Content-Type - value: - - application/json; charset=utf-8 - - normal: true - expected: - key: X-Response-Time - value: - - 5482.601ms - actual: - key: X-Response-Time - value: - - 2042.407ms - - normal: true - expected: - key: Origin-Agent-Cluster - value: - - ?1 - actual: - key: Origin-Agent-Cluster - value: - - ?1 - - normal: true - expected: - key: Referrer-Policy - value: - - no-referrer - actual: - key: Referrer-Policy - value: - - no-referrer - - normal: true - expected: - key: X-Content-Type-Options - value: - - nosniff - actual: - key: X-Content-Type-Options - value: - - nosniff - - normal: true - expected: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - actual: - key: Cross-Origin-Embedder-Policy - value: - - require-corp - - normal: true - expected: - key: Expect-Ct - value: - - max-age=0 - actual: - key: Expect-Ct - value: - - max-age=0 - body_result: - - normal: true - type: JSON - expected: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' - actual: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"662f48e8e725081eb0ae7767","__v":0}}' - dep_result: [] -test_set: test-set-1 diff --git a/keploy/test-set-1/mocks.yaml b/keploy/test-set-1/mocks.yaml deleted file mode 100755 index 6b4bec0..0000000 --- a/keploy/test-set-1/mocks.yaml +++ /dev/null @@ -1,1189 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Mongo -name: mock-0 -spec: - metadata: - operation: '{ OpQuery flags: [SecondaryOK], fullCollectionName: admin.$cmd, numberToSkip: 0, numberToReturn: -1, query: {"ismaster": true,"helloOk": true,"client": {"driver": {"name": "nodejs|Mongoose","version": "4.3.1"},"os": {"type": "Linux","name": "linux","architecture": "arm64","version": "6.5.0-27-generic"},"platform": "Node.js v14.17.6, LE (unified)","version": "4.3.1|6.2.4"},"compression": ["none"],"loadBalanced": false}, returnFieldsSelector: }' - type: config - requests: - - header: - length: 346 - requestId: 1 - responseTo: 0 - Opcode: 2004 - message: - flags: 4 - collection_name: admin.$cmd - number_to_skip: 0 - number_to_return: -1 - query: '{"ismaster":true,"helloOk":true,"client":{"driver":{"name":"nodejs|Mongoose","version":"4.3.1"},"os":{"type":"Linux","name":"linux","architecture":"arm64","version":"6.5.0-27-generic"},"platform":"Node.js v14.17.6, LE (unified)","version":"4.3.1|6.2.4"},"compression":["none"],"loadBalanced":false}' - return_fields_selector: "" - responses: - - header: - length: 329 - requestId: 10208 - responseTo: 1 - Opcode: 1 - message: - response_flags: 8 - cursor_id: 0 - starting_from: 0 - number_returned: 1 - documents: - - '{"helloOk":true,"ismaster":true,"topologyVersion":{"processId":{"$oid":"6625ff0f9d0279066097c670"},"counter":{"$numberLong":"0"}},"maxBsonObjectSize":{"$numberInt":"16777216"},"maxMessageSizeBytes":{"$numberInt":"48000000"},"maxWriteBatchSize":{"$numberInt":"100000"},"localTime":{"$date":{"$numberLong":"1713954825016"}},"logicalSessionTimeoutMinutes":{"$numberInt":"30"},"connectionId":{"$numberInt":"128"},"minWireVersion":{"$numberInt":"0"},"maxWireVersion":{"$numberInt":"21"},"readOnly":false,"ok":{"$numberDouble":"1.0"}}' - read_delay: 62042 - created: 1713954825 - reqTimestampMock: 2024-04-24T16:03:45.016223512+05:30 - resTimestampMock: 2024-04-24T16:03:45.016450348+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Mongo -name: mock-1 -spec: - metadata: - operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"create":"products","lsid":{"id":{"$binary":{"base64":"tSuP5PqgT+GU04zX8XGwmw==","subType":"04"}}},"$db":"ecommerce"} }], checksum: 0 }' - requests: - - header: - length: 102 - requestId: 3 - responseTo: 0 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"create":"products","lsid":{"id":{"$binary":{"base64":"tSuP5PqgT+GU04zX8XGwmw==","subType":"04"}}},"$db":"ecommerce"} }' - checksum: 0 - read_delay: 1356138 - responses: - - header: - length: 38 - requestId: 10210 - responseTo: 3 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"ok":{"$numberDouble":"1.0"}} }' - checksum: 0 - read_delay: 696965 - created: 1713954825 - reqTimestampMock: 2024-04-24T16:03:45.033629056+05:30 - resTimestampMock: 2024-04-24T16:03:45.034397271+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-2 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjENCiQ0DQppbmZvDQo= - genericresponses: - - origin: server - message: - - type: binary - data: JDUzODkNCiMgU2VydmVyDQpyZWRpc192ZXJzaW9uOjcuMi40DQpyZWRpc19naXRfc2hhMTowMDAwMDAwMA0KcmVkaXNfZ2l0X2RpcnR5OjANCnJlZGlzX2J1aWxkX2lkOjdkM2NhOTlkZGU2YjU2YzYNCnJlZGlzX21vZGU6c3RhbmRhbG9uZQ0Kb3M6TGludXggNi41LjAtMjctZ2VuZXJpYyBhYXJjaDY0DQphcmNoX2JpdHM6NjQNCm1vbm90b25pY19jbG9jazpQT1NJWCBjbG9ja19nZXR0aW1lDQptdWx0aXBsZXhpbmdfYXBpOmVwb2xsDQphdG9taWN2YXJfYXBpOmMxMS1idWlsdGluDQpnY2NfdmVyc2lvbjoxMy4yLjENCnByb2Nlc3NfaWQ6MQ0KcHJvY2Vzc19zdXBlcnZpc2VkOm5vDQpydW5faWQ6ODFlY2VhMTYxMWVlNWNkYWU2YmM4Mjk0MTczMjUwMGZiMWU5N2JiNA0KdGNwX3BvcnQ6NjM3OQ0Kc2VydmVyX3RpbWVfdXNlYzoxNzEzOTU0ODI1MDE1NTUwDQp1cHRpbWVfaW5fc2Vjb25kczoxODg2NjYNCnVwdGltZV9pbl9kYXlzOjINCmh6OjEwDQpjb25maWd1cmVkX2h6OjEwDQpscnVfY2xvY2s6MjY3ODc5Mg0KZXhlY3V0YWJsZTovZGF0YS9yZWRpcy1zZXJ2ZXINCmNvbmZpZ19maWxlOg0KaW9fdGhyZWFkc19hY3RpdmU6MA0KbGlzdGVuZXIwOm5hbWU9dGNwLGJpbmQ9cmVkaXMscG9ydD02Mzc5DQoNCiMgQ2xpZW50cw0KY29ubmVjdGVkX2NsaWVudHM6Mw0KY2x1c3Rlcl9jb25uZWN0aW9uczowDQptYXhjbGllbnRzOjEwMDAwDQpjbGllbnRfcmVjZW50X21heF9pbnB1dF9idWZmZXI6MA0KY2xpZW50X3JlY2VudF9tYXhfb3V0cHV0X2J1ZmZlcjowDQpibG9ja2VkX2NsaWVudHM6MA0KdHJhY2tpbmdfY2xpZW50czowDQpjbGllbnRzX2luX3RpbWVvdXRfdGFibGU6MA0KdG90YWxfYmxvY2tpbmdfa2V5czowDQp0b3RhbF9ibG9ja2luZ19rZXlzX29uX25va2V5OjANCg0KIyBNZW1vcnkNCnVzZWRfbWVtb3J5OjE3MTA4MzINCnVzZWRfbWVtb3J5X2h1bWFuOjEuNjNNDQp1c2VkX21lbW9yeV9yc3M6ODkwODgwMA0KdXNlZF9tZW1vcnlfcnNzX2h1bWFuOjguNTBNDQp1c2VkX21lbW9yeV9wZWFrOjE4ODQyNDgNCnVzZWRfbWVtb3J5X3BlYWtfaHVtYW46MS44ME0NCnVzZWRfbWVtb3J5X3BlYWtfcGVyYzo5MC44MCUNCnVzZWRfbWVtb3J5X292ZXJoZWFkOjkyMDc1Mg0KdXNlZF9tZW1vcnlfc3RhcnR1cDo4OTg2MzINCnVzZWRfbWVtb3J5X2RhdGFzZXQ6NzkwMDgwDQp1c2VkX21lbW9yeV9kYXRhc2V0X3BlcmM6OTcuMjglDQphbGxvY2F0b3JfYWxsb2NhdGVkOjIwMjkyMzINCmFsbG9jYXRvcl9hY3RpdmU6OTUwMjcyMA0KYWxsb2NhdG9yX3Jlc2lkZW50OjExMDc1NTg0DQp0b3RhbF9zeXN0ZW1fbWVtb3J5OjQwOTM5NjQyODgNCnRvdGFsX3N5c3RlbV9tZW1vcnlfaHVtYW46My44MUcNCnVzZWRfbWVtb3J5X2x1YTo3OTg3Mg0KdXNlZF9tZW1vcnlfdm1fZXZhbDo3OTg3Mg0KdXNlZF9tZW1vcnlfbHVhX2h1bWFuOjc4LjAwSw0KdXNlZF9tZW1vcnlfc2NyaXB0c19ldmFsOjIxMzI4DQpudW1iZXJfb2ZfY2FjaGVkX3NjcmlwdHM6Ng0KbnVtYmVyX29mX2Z1bmN0aW9uczowDQpudW1iZXJfb2ZfbGlicmFyaWVzOjANCnVzZWRfbWVtb3J5X3ZtX2Z1bmN0aW9uczozMjc2OA0KdXNlZF9tZW1vcnlfdm1fdG90YWw6MTEyNjQwDQp1c2VkX21lbW9yeV92bV90b3RhbF9odW1hbjoxMTAuMDBLDQp1c2VkX21lbW9yeV9mdW5jdGlvbnM6MTg0DQp1c2VkX21lbW9yeV9zY3JpcHRzOjIxNTEyDQp1c2VkX21lbW9yeV9zY3JpcHRzX2h1bWFuOjIxLjAxSw0KbWF4bWVtb3J5OjANCm1heG1lbW9yeV9odW1hbjowQg0KbWF4bWVtb3J5X3BvbGljeTpub2V2aWN0aW9uDQphbGxvY2F0b3JfZnJhZ19yYXRpbzo0LjY4DQphbGxvY2F0b3JfZnJhZ19ieXRlczo3NDczNDg4DQphbGxvY2F0b3JfcnNzX3JhdGlvOjEuMTcNCmFsbG9jYXRvcl9yc3NfYnl0ZXM6MTU3Mjg2NA0KcnNzX292ZXJoZWFkX3JhdGlvOjAuODANCnJzc19vdmVyaGVhZF9ieXRlczotMjE2Njc4NA0KbWVtX2ZyYWdtZW50YXRpb25fcmF0aW86NS41OQ0KbWVtX2ZyYWdtZW50YXRpb25fYnl0ZXM6NzMxNDM3Ng0KbWVtX25vdF9jb3VudGVkX2Zvcl9ldmljdDowDQptZW1fcmVwbGljYXRpb25fYmFja2xvZzowDQptZW1fdG90YWxfcmVwbGljYXRpb25fYnVmZmVyczowDQptZW1fY2xpZW50c19zbGF2ZXM6MA0KbWVtX2NsaWVudHNfbm9ybWFsOjANCm1lbV9jbHVzdGVyX2xpbmtzOjANCm1lbV9hb2ZfYnVmZmVyOjANCm1lbV9hbGxvY2F0b3I6amVtYWxsb2MtNS4zLjANCmFjdGl2ZV9kZWZyYWdfcnVubmluZzowDQpsYXp5ZnJlZV9wZW5kaW5nX29iamVjdHM6MA0KbGF6eWZyZWVkX29iamVjdHM6MA0KDQojIFBlcnNpc3RlbmNlDQpsb2FkaW5nOjANCmFzeW5jX2xvYWRpbmc6MA0KY3VycmVudF9jb3dfcGVhazowDQpjdXJyZW50X2Nvd19zaXplOjANCmN1cnJlbnRfY293X3NpemVfYWdlOjANCmN1cnJlbnRfZm9ya19wZXJjOjAuMDANCmN1cnJlbnRfc2F2ZV9rZXlzX3Byb2Nlc3NlZDowDQpjdXJyZW50X3NhdmVfa2V5c190b3RhbDowDQpyZGJfY2hhbmdlc19zaW5jZV9sYXN0X3NhdmU6MTkNCnJkYl9iZ3NhdmVfaW5fcHJvZ3Jlc3M6MA0KcmRiX2xhc3Rfc2F2ZV90aW1lOjE3MTM5NTM5MTYNCnJkYl9sYXN0X2Jnc2F2ZV9zdGF0dXM6b2sNCnJkYl9sYXN0X2Jnc2F2ZV90aW1lX3NlYzowDQpyZGJfY3VycmVudF9iZ3NhdmVfdGltZV9zZWM6LTENCnJkYl9zYXZlczo0MA0KcmRiX2xhc3RfY293X3NpemU6NjUxMjY0DQpyZGJfbGFzdF9sb2FkX2tleXNfZXhwaXJlZDowDQpyZGJfbGFzdF9sb2FkX2tleXNfbG9hZGVkOjQNCmFvZl9lbmFibGVkOjANCmFvZl9yZXdyaXRlX2luX3Byb2dyZXNzOjANCmFvZl9yZXdyaXRlX3NjaGVkdWxlZDowDQphb2ZfbGFzdF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfY3VycmVudF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfbGFzdF9iZ3Jld3JpdGVfc3RhdHVzOm9rDQphb2ZfcmV3cml0ZXM6MA0KYW9mX3Jld3JpdGVzX2NvbnNlY3V0aXZlX2ZhaWx1cmVzOjANCmFvZl9sYXN0X3dyaXRlX3N0YXR1czpvaw0KYW9mX2xhc3RfY293X3NpemU6MA0KbW9kdWxlX2ZvcmtfaW5fcHJvZ3Jlc3M6MA0KbW9kdWxlX2ZvcmtfbGFzdF9jb3dfc2l6ZTowDQoNCiMgU3RhdHMNCnRvdGFsX2Nvbm5lY3Rpb25zX3JlY2VpdmVkOjI4Nw0KdG90YWxfY29tbWFuZHNfcHJvY2Vzc2VkOjk0NDgwDQppbnN0YW50YW5lb3VzX29wc19wZXJfc2VjOjANCnRvdGFsX25ldF9pbnB1dF9ieXRlczo5MTYxODE4DQp0b3RhbF9uZXRfb3V0cHV0X2J5dGVzOjE2NDkxMDENCnRvdGFsX25ldF9yZXBsX2lucHV0X2J5dGVzOjANCnRvdGFsX25ldF9yZXBsX291dHB1dF9ieXRlczowDQppbnN0YW50YW5lb3VzX2lucHV0X2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19vdXRwdXRfa2JwczowLjAwDQppbnN0YW50YW5lb3VzX2lucHV0X3JlcGxfa2JwczowLjAwDQppbnN0YW50YW5lb3VzX291dHB1dF9yZXBsX2ticHM6MC4wMA0KcmVqZWN0ZWRfY29ubmVjdGlvbnM6MA0Kc3luY19mdWxsOjANCnN5bmNfcGFydGlhbF9vazowDQpzeW5jX3BhcnRpYWxfZXJyOjANCmV4cGlyZWRfa2V5czoyNDI2DQpleHBpcmVkX3N0YWxlX3BlcmM6MC4wMA0KZXhwaXJlZF90aW1lX2NhcF9yZWFjaGVkX2NvdW50OjANCmV4cGlyZV9jeWNsZV9jcHVfbWlsbGlzZWNvbmRzOjM2MjINCmV2aWN0ZWRfa2V5czowDQpldmljdGVkX2NsaWVudHM6MA0KdG90YWxfZXZpY3Rpb25fZXhjZWVkZWRfdGltZTowDQpjdXJyZW50X2V2aWN0aW9uX2V4Y2VlZGVkX3RpbWU6MA0Ka2V5c3BhY2VfaGl0czoxODY1Mg0Ka2V5c3BhY2VfbWlzc2VzOjI1MjIwDQpwdWJzdWJfY2hhbm5lbHM6MA0KcHVic3ViX3BhdHRlcm5zOjANCnB1YnN1YnNoYXJkX2NoYW5uZWxzOjANCmxhdGVzdF9mb3JrX3VzZWM6NTMwMg0KdG90YWxfZm9ya3M6NDANCm1pZ3JhdGVfY2FjaGVkX3NvY2tldHM6MA0Kc2xhdmVfZXhwaXJlc190cmFja2VkX2tleXM6MA0KYWN0aXZlX2RlZnJhZ19oaXRzOjANCmFjdGl2ZV9kZWZyYWdfbWlzc2VzOjANCmFjdGl2ZV9kZWZyYWdfa2V5X2hpdHM6MA0KYWN0aXZlX2RlZnJhZ19rZXlfbWlzc2VzOjANCnRvdGFsX2FjdGl2ZV9kZWZyYWdfdGltZTowDQpjdXJyZW50X2FjdGl2ZV9kZWZyYWdfdGltZTowDQp0cmFja2luZ190b3RhbF9rZXlzOjANCnRyYWNraW5nX3RvdGFsX2l0ZW1zOjANCnRyYWNraW5nX3RvdGFsX3ByZWZpeGVzOjANCnVuZXhwZWN0ZWRfZXJyb3JfcmVwbGllczowDQp0b3RhbF9lcnJvcl9yZXBsaWVzOjEwDQpkdW1wX3BheWxvYWRfc2FuaXRpemF0aW9uczowDQp0b3RhbF9yZWFkc19wcm9jZXNzZWQ6Mzk0MjYNCnRvdGFsX3dyaXRlc19wcm9jZXNzZWQ6NDgwNjANCmlvX3RocmVhZGVkX3JlYWRzX3Byb2Nlc3NlZDowDQppb190aHJlYWRlZF93cml0ZXNfcHJvY2Vzc2VkOjANCnJlcGx5X2J1ZmZlcl9zaHJpbmtzOjI4NQ0KcmVwbHlfYnVmZmVyX2V4cGFuZHM6MA0KZXZlbnRsb29wX2N5Y2xlczo4NjU4NTgNCmV2ZW50bG9vcF9kdXJhdGlvbl9zdW06MjU4MjQ3OTg5DQpldmVudGxvb3BfZHVyYXRpb25fY21kX3N1bTo0MTM0MjA3DQppbnN0YW50YW5lb3VzX2V2ZW50bG9vcF9jeWNsZXNfcGVyX3NlYzo5DQppbnN0YW50YW5lb3VzX2V2ZW50bG9vcF9kdXJhdGlvbl91c2VjOjEwNQ0KYWNsX2FjY2Vzc19kZW5pZWRfYXV0aDowDQphY2xfYWNjZXNzX2RlbmllZF9jbWQ6MA0KYWNsX2FjY2Vzc19kZW5pZWRfa2V5OjANCmFjbF9hY2Nlc3NfZGVuaWVkX2NoYW5uZWw6MA0KDQojIFJlcGxpY2F0aW9uDQpyb2xlOm1hc3Rlcg0KY29ubmVjdGVkX3NsYXZlczowDQptYXN0ZXJfZmFpbG92ZXJfc3RhdGU6bm8tZmFpbG92ZXINCm1hc3Rlcl9yZXBsaWQ6ZGNjMThkZWY4N2I3Mzc2NzkzYjhhNDYyNmM0YmMyZGI4MDE1MDhmNg0KbWFzdGVyX3JlcGxpZDI6MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMA0KbWFzdGVyX3JlcGxfb2Zmc2V0OjANCnNlY29uZF9yZXBsX29mZnNldDotMQ0KcmVwbF9iYWNrbG9nX2FjdGl2ZTowDQpyZXBsX2JhY2tsb2dfc2l6ZToxMDQ4NTc2DQpyZXBsX2JhY2tsb2dfZmlyc3RfYnl0ZV9vZmZzZXQ6MA0KcmVwbF9iYWNrbG9nX2hpc3RsZW46MA0KDQojIENQVQ0KdXNlZF9jcHVfc3lzOjE1Ny4zNjY2NTANCnVzZWRfY3B1X3VzZXI6MTYyLjc0MDkzOA0KdXNlZF9jcHVfc3lzX2NoaWxkcmVuOjAuMTU2MjkyDQp1c2VkX2NwdV91c2VyX2NoaWxkcmVuOjAuMDY0NTA3DQp1c2VkX2NwdV9zeXNfbWFpbl90aHJlYWQ6MTU3LjM0ODM0OA0KdXNlZF9jcHVfdXNlcl9tYWluX3RocmVhZDoxNjIuNzMyODU0DQoNCiMgTW9kdWxlcw0KDQojIEVycm9yc3RhdHMNCmVycm9yc3RhdF9OT1NDUklQVDpjb3VudD0xMA0KDQojIENsdXN0ZXINCmNsdXN0ZXJfZW5hYmxlZDowDQoNCiMgS2V5c3BhY2UNCmRiMDprZXlzPTEwLGV4cGlyZXM9MixhdmdfdHRsPTEzOTk1DQoNCg== - reqtimestampmock: 2024-04-24T16:03:45.015076709+05:30 - restimestampmock: 2024-04-24T16:03:45.015887467+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Mongo -name: mock-3 -spec: - metadata: - operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"create":"orders","lsid":{"id":{"$binary":{"base64":"tSuP5PqgT+GU04zX8XGwmw==","subType":"04"}}},"$db":"ecommerce"} }], checksum: 0 }' - requests: - - header: - length: 100 - requestId: 5 - responseTo: 0 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"create":"orders","lsid":{"id":{"$binary":{"base64":"tSuP5PqgT+GU04zX8XGwmw==","subType":"04"}}},"$db":"ecommerce"} }' - checksum: 0 - read_delay: 14565475 - responses: - - header: - length: 38 - requestId: 10212 - responseTo: 5 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"ok":{"$numberDouble":"1.0"}} }' - checksum: 0 - read_delay: 622423 - created: 1713954825 - reqTimestampMock: 2024-04-24T16:03:45.055644061+05:30 - resTimestampMock: 2024-04-24T16:03:45.056337609+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-4 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQ0DQp6YWRkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cmVwZWF0DQokMTMNCjE3MTM5ODM0MDAwMDANCiQyNA0KX19kZWZhdWx0X186Ojo6MCAwICogKiAqDQo= - genericresponses: - - origin: server - message: - - type: binary - data: OjANCg== - reqtimestampmock: 2024-04-24T16:03:45.055657394+05:30 - restimestampmock: 2024-04-24T16:03:45.055666144+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-5 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjENCiQ0DQppbmZvDQo= - genericresponses: - - origin: server - message: - - type: binary - data: JDUzODkNCiMgU2VydmVyDQpyZWRpc192ZXJzaW9uOjcuMi40DQpyZWRpc19naXRfc2hhMTowMDAwMDAwMA0KcmVkaXNfZ2l0X2RpcnR5OjANCnJlZGlzX2J1aWxkX2lkOjdkM2NhOTlkZGU2YjU2YzYNCnJlZGlzX21vZGU6c3RhbmRhbG9uZQ0Kb3M6TGludXggNi41LjAtMjctZ2VuZXJpYyBhYXJjaDY0DQphcmNoX2JpdHM6NjQNCm1vbm90b25pY19jbG9jazpQT1NJWCBjbG9ja19nZXR0aW1lDQptdWx0aXBsZXhpbmdfYXBpOmVwb2xsDQphdG9taWN2YXJfYXBpOmMxMS1idWlsdGluDQpnY2NfdmVyc2lvbjoxMy4yLjENCnByb2Nlc3NfaWQ6MQ0KcHJvY2Vzc19zdXBlcnZpc2VkOm5vDQpydW5faWQ6ODFlY2VhMTYxMWVlNWNkYWU2YmM4Mjk0MTczMjUwMGZiMWU5N2JiNA0KdGNwX3BvcnQ6NjM3OQ0Kc2VydmVyX3RpbWVfdXNlYzoxNzEzOTU0ODI1MDE0MDI2DQp1cHRpbWVfaW5fc2Vjb25kczoxODg2NjYNCnVwdGltZV9pbl9kYXlzOjINCmh6OjEwDQpjb25maWd1cmVkX2h6OjEwDQpscnVfY2xvY2s6MjY3ODc5Mg0KZXhlY3V0YWJsZTovZGF0YS9yZWRpcy1zZXJ2ZXINCmNvbmZpZ19maWxlOg0KaW9fdGhyZWFkc19hY3RpdmU6MA0KbGlzdGVuZXIwOm5hbWU9dGNwLGJpbmQ9cmVkaXMscG9ydD02Mzc5DQoNCiMgQ2xpZW50cw0KY29ubmVjdGVkX2NsaWVudHM6Mg0KY2x1c3Rlcl9jb25uZWN0aW9uczowDQptYXhjbGllbnRzOjEwMDAwDQpjbGllbnRfcmVjZW50X21heF9pbnB1dF9idWZmZXI6MA0KY2xpZW50X3JlY2VudF9tYXhfb3V0cHV0X2J1ZmZlcjowDQpibG9ja2VkX2NsaWVudHM6MA0KdHJhY2tpbmdfY2xpZW50czowDQpjbGllbnRzX2luX3RpbWVvdXRfdGFibGU6MA0KdG90YWxfYmxvY2tpbmdfa2V5czowDQp0b3RhbF9ibG9ja2luZ19rZXlzX29uX25va2V5OjANCg0KIyBNZW1vcnkNCnVzZWRfbWVtb3J5OjE2NzI2NDANCnVzZWRfbWVtb3J5X2h1bWFuOjEuNjBNDQp1c2VkX21lbW9yeV9yc3M6ODkwODgwMA0KdXNlZF9tZW1vcnlfcnNzX2h1bWFuOjguNTBNDQp1c2VkX21lbW9yeV9wZWFrOjE4ODQyNDgNCnVzZWRfbWVtb3J5X3BlYWtfaHVtYW46MS44ME0NCnVzZWRfbWVtb3J5X3BlYWtfcGVyYzo4OC43NyUNCnVzZWRfbWVtb3J5X292ZXJoZWFkOjkyMDc1Mg0KdXNlZF9tZW1vcnlfc3RhcnR1cDo4OTg2MzINCnVzZWRfbWVtb3J5X2RhdGFzZXQ6NzUxODg4DQp1c2VkX21lbW9yeV9kYXRhc2V0X3BlcmM6OTcuMTQlDQphbGxvY2F0b3JfYWxsb2NhdGVkOjIwMjkyMzINCmFsbG9jYXRvcl9hY3RpdmU6OTUwMjcyMA0KYWxsb2NhdG9yX3Jlc2lkZW50OjExMDc1NTg0DQp0b3RhbF9zeXN0ZW1fbWVtb3J5OjQwOTM5NjQyODgNCnRvdGFsX3N5c3RlbV9tZW1vcnlfaHVtYW46My44MUcNCnVzZWRfbWVtb3J5X2x1YTo3OTg3Mg0KdXNlZF9tZW1vcnlfdm1fZXZhbDo3OTg3Mg0KdXNlZF9tZW1vcnlfbHVhX2h1bWFuOjc4LjAwSw0KdXNlZF9tZW1vcnlfc2NyaXB0c19ldmFsOjIxMzI4DQpudW1iZXJfb2ZfY2FjaGVkX3NjcmlwdHM6Ng0KbnVtYmVyX29mX2Z1bmN0aW9uczowDQpudW1iZXJfb2ZfbGlicmFyaWVzOjANCnVzZWRfbWVtb3J5X3ZtX2Z1bmN0aW9uczozMjc2OA0KdXNlZF9tZW1vcnlfdm1fdG90YWw6MTEyNjQwDQp1c2VkX21lbW9yeV92bV90b3RhbF9odW1hbjoxMTAuMDBLDQp1c2VkX21lbW9yeV9mdW5jdGlvbnM6MTg0DQp1c2VkX21lbW9yeV9zY3JpcHRzOjIxNTEyDQp1c2VkX21lbW9yeV9zY3JpcHRzX2h1bWFuOjIxLjAxSw0KbWF4bWVtb3J5OjANCm1heG1lbW9yeV9odW1hbjowQg0KbWF4bWVtb3J5X3BvbGljeTpub2V2aWN0aW9uDQphbGxvY2F0b3JfZnJhZ19yYXRpbzo0LjY4DQphbGxvY2F0b3JfZnJhZ19ieXRlczo3NDczNDg4DQphbGxvY2F0b3JfcnNzX3JhdGlvOjEuMTcNCmFsbG9jYXRvcl9yc3NfYnl0ZXM6MTU3Mjg2NA0KcnNzX292ZXJoZWFkX3JhdGlvOjAuODANCnJzc19vdmVyaGVhZF9ieXRlczotMjE2Njc4NA0KbWVtX2ZyYWdtZW50YXRpb25fcmF0aW86NS41OQ0KbWVtX2ZyYWdtZW50YXRpb25fYnl0ZXM6NzMxNDM3Ng0KbWVtX25vdF9jb3VudGVkX2Zvcl9ldmljdDowDQptZW1fcmVwbGljYXRpb25fYmFja2xvZzowDQptZW1fdG90YWxfcmVwbGljYXRpb25fYnVmZmVyczowDQptZW1fY2xpZW50c19zbGF2ZXM6MA0KbWVtX2NsaWVudHNfbm9ybWFsOjANCm1lbV9jbHVzdGVyX2xpbmtzOjANCm1lbV9hb2ZfYnVmZmVyOjANCm1lbV9hbGxvY2F0b3I6amVtYWxsb2MtNS4zLjANCmFjdGl2ZV9kZWZyYWdfcnVubmluZzowDQpsYXp5ZnJlZV9wZW5kaW5nX29iamVjdHM6MA0KbGF6eWZyZWVkX29iamVjdHM6MA0KDQojIFBlcnNpc3RlbmNlDQpsb2FkaW5nOjANCmFzeW5jX2xvYWRpbmc6MA0KY3VycmVudF9jb3dfcGVhazowDQpjdXJyZW50X2Nvd19zaXplOjANCmN1cnJlbnRfY293X3NpemVfYWdlOjANCmN1cnJlbnRfZm9ya19wZXJjOjAuMDANCmN1cnJlbnRfc2F2ZV9rZXlzX3Byb2Nlc3NlZDowDQpjdXJyZW50X3NhdmVfa2V5c190b3RhbDowDQpyZGJfY2hhbmdlc19zaW5jZV9sYXN0X3NhdmU6MTkNCnJkYl9iZ3NhdmVfaW5fcHJvZ3Jlc3M6MA0KcmRiX2xhc3Rfc2F2ZV90aW1lOjE3MTM5NTM5MTYNCnJkYl9sYXN0X2Jnc2F2ZV9zdGF0dXM6b2sNCnJkYl9sYXN0X2Jnc2F2ZV90aW1lX3NlYzowDQpyZGJfY3VycmVudF9iZ3NhdmVfdGltZV9zZWM6LTENCnJkYl9zYXZlczo0MA0KcmRiX2xhc3RfY293X3NpemU6NjUxMjY0DQpyZGJfbGFzdF9sb2FkX2tleXNfZXhwaXJlZDowDQpyZGJfbGFzdF9sb2FkX2tleXNfbG9hZGVkOjQNCmFvZl9lbmFibGVkOjANCmFvZl9yZXdyaXRlX2luX3Byb2dyZXNzOjANCmFvZl9yZXdyaXRlX3NjaGVkdWxlZDowDQphb2ZfbGFzdF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfY3VycmVudF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfbGFzdF9iZ3Jld3JpdGVfc3RhdHVzOm9rDQphb2ZfcmV3cml0ZXM6MA0KYW9mX3Jld3JpdGVzX2NvbnNlY3V0aXZlX2ZhaWx1cmVzOjANCmFvZl9sYXN0X3dyaXRlX3N0YXR1czpvaw0KYW9mX2xhc3RfY293X3NpemU6MA0KbW9kdWxlX2ZvcmtfaW5fcHJvZ3Jlc3M6MA0KbW9kdWxlX2ZvcmtfbGFzdF9jb3dfc2l6ZTowDQoNCiMgU3RhdHMNCnRvdGFsX2Nvbm5lY3Rpb25zX3JlY2VpdmVkOjI4Ng0KdG90YWxfY29tbWFuZHNfcHJvY2Vzc2VkOjk0NDc5DQppbnN0YW50YW5lb3VzX29wc19wZXJfc2VjOjANCnRvdGFsX25ldF9pbnB1dF9ieXRlczo5MTYxODA0DQp0b3RhbF9uZXRfb3V0cHV0X2J5dGVzOjE2MzgzMDUNCnRvdGFsX25ldF9yZXBsX2lucHV0X2J5dGVzOjANCnRvdGFsX25ldF9yZXBsX291dHB1dF9ieXRlczowDQppbnN0YW50YW5lb3VzX2lucHV0X2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19vdXRwdXRfa2JwczowLjAwDQppbnN0YW50YW5lb3VzX2lucHV0X3JlcGxfa2JwczowLjAwDQppbnN0YW50YW5lb3VzX291dHB1dF9yZXBsX2ticHM6MC4wMA0KcmVqZWN0ZWRfY29ubmVjdGlvbnM6MA0Kc3luY19mdWxsOjANCnN5bmNfcGFydGlhbF9vazowDQpzeW5jX3BhcnRpYWxfZXJyOjANCmV4cGlyZWRfa2V5czoyNDI2DQpleHBpcmVkX3N0YWxlX3BlcmM6MC4wMA0KZXhwaXJlZF90aW1lX2NhcF9yZWFjaGVkX2NvdW50OjANCmV4cGlyZV9jeWNsZV9jcHVfbWlsbGlzZWNvbmRzOjM2MjINCmV2aWN0ZWRfa2V5czowDQpldmljdGVkX2NsaWVudHM6MA0KdG90YWxfZXZpY3Rpb25fZXhjZWVkZWRfdGltZTowDQpjdXJyZW50X2V2aWN0aW9uX2V4Y2VlZGVkX3RpbWU6MA0Ka2V5c3BhY2VfaGl0czoxODY1Mg0Ka2V5c3BhY2VfbWlzc2VzOjI1MjIwDQpwdWJzdWJfY2hhbm5lbHM6MA0KcHVic3ViX3BhdHRlcm5zOjANCnB1YnN1YnNoYXJkX2NoYW5uZWxzOjANCmxhdGVzdF9mb3JrX3VzZWM6NTMwMg0KdG90YWxfZm9ya3M6NDANCm1pZ3JhdGVfY2FjaGVkX3NvY2tldHM6MA0Kc2xhdmVfZXhwaXJlc190cmFja2VkX2tleXM6MA0KYWN0aXZlX2RlZnJhZ19oaXRzOjANCmFjdGl2ZV9kZWZyYWdfbWlzc2VzOjANCmFjdGl2ZV9kZWZyYWdfa2V5X2hpdHM6MA0KYWN0aXZlX2RlZnJhZ19rZXlfbWlzc2VzOjANCnRvdGFsX2FjdGl2ZV9kZWZyYWdfdGltZTowDQpjdXJyZW50X2FjdGl2ZV9kZWZyYWdfdGltZTowDQp0cmFja2luZ190b3RhbF9rZXlzOjANCnRyYWNraW5nX3RvdGFsX2l0ZW1zOjANCnRyYWNraW5nX3RvdGFsX3ByZWZpeGVzOjANCnVuZXhwZWN0ZWRfZXJyb3JfcmVwbGllczowDQp0b3RhbF9lcnJvcl9yZXBsaWVzOjEwDQpkdW1wX3BheWxvYWRfc2FuaXRpemF0aW9uczowDQp0b3RhbF9yZWFkc19wcm9jZXNzZWQ6Mzk0MjUNCnRvdGFsX3dyaXRlc19wcm9jZXNzZWQ6NDgwNTgNCmlvX3RocmVhZGVkX3JlYWRzX3Byb2Nlc3NlZDowDQppb190aHJlYWRlZF93cml0ZXNfcHJvY2Vzc2VkOjANCnJlcGx5X2J1ZmZlcl9zaHJpbmtzOjI4NQ0KcmVwbHlfYnVmZmVyX2V4cGFuZHM6MA0KZXZlbnRsb29wX2N5Y2xlczo4NjU4NTYNCmV2ZW50bG9vcF9kdXJhdGlvbl9zdW06MjU4MjQ3NjA5DQpldmVudGxvb3BfZHVyYXRpb25fY21kX3N1bTo0MTM0MDg0DQppbnN0YW50YW5lb3VzX2V2ZW50bG9vcF9jeWNsZXNfcGVyX3NlYzo5DQppbnN0YW50YW5lb3VzX2V2ZW50bG9vcF9kdXJhdGlvbl91c2VjOjEwNQ0KYWNsX2FjY2Vzc19kZW5pZWRfYXV0aDowDQphY2xfYWNjZXNzX2RlbmllZF9jbWQ6MA0KYWNsX2FjY2Vzc19kZW5pZWRfa2V5OjANCmFjbF9hY2Nlc3NfZGVuaWVkX2NoYW5uZWw6MA0KDQojIFJlcGxpY2F0aW9uDQpyb2xlOm1hc3Rlcg0KY29ubmVjdGVkX3NsYXZlczowDQptYXN0ZXJfZmFpbG92ZXJfc3RhdGU6bm8tZmFpbG92ZXINCm1hc3Rlcl9yZXBsaWQ6ZGNjMThkZWY4N2I3Mzc2NzkzYjhhNDYyNmM0YmMyZGI4MDE1MDhmNg0KbWFzdGVyX3JlcGxpZDI6MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMA0KbWFzdGVyX3JlcGxfb2Zmc2V0OjANCnNlY29uZF9yZXBsX29mZnNldDotMQ0KcmVwbF9iYWNrbG9nX2FjdGl2ZTowDQpyZXBsX2JhY2tsb2dfc2l6ZToxMDQ4NTc2DQpyZXBsX2JhY2tsb2dfZmlyc3RfYnl0ZV9vZmZzZXQ6MA0KcmVwbF9iYWNrbG9nX2hpc3RsZW46MA0KDQojIENQVQ0KdXNlZF9jcHVfc3lzOjE1Ny4zNjY1NjYNCnVzZWRfY3B1X3VzZXI6MTYyLjc0MDg1MQ0KdXNlZF9jcHVfc3lzX2NoaWxkcmVuOjAuMTU2MjkyDQp1c2VkX2NwdV91c2VyX2NoaWxkcmVuOjAuMDY0NTA3DQp1c2VkX2NwdV9zeXNfbWFpbl90aHJlYWQ6MTU3LjM0ODI2NA0KdXNlZF9jcHVfdXNlcl9tYWluX3RocmVhZDoxNjIuNzMyNzY3DQoNCiMgTW9kdWxlcw0KDQojIEVycm9yc3RhdHMNCmVycm9yc3RhdF9OT1NDUklQVDpjb3VudD0xMA0KDQojIENsdXN0ZXINCmNsdXN0ZXJfZW5hYmxlZDowDQoNCiMgS2V5c3BhY2UNCmRiMDprZXlzPTEwLGV4cGlyZXM9MixhdmdfdHRsPTEzOTk1DQoNCg== - reqtimestampmock: 2024-04-24T16:03:45.013591695+05:30 - restimestampmock: 2024-04-24T16:03:45.014468203+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-6 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjIwDQokNw0KZXZhbHNoYQ0KJDQwDQo4ZjU1YWU0YTNiZTQyOWM2ZDM4YzVkNWRiM2U4MGVkZjg5MTk3YjY0DQokMQ0KNg0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIyDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmlkDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDI4DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnByaW9yaXR5DQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokNTMNCnJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzEzOTgzNDAwMDAwDQokMTENCl9fZGVmYXVsdF9fDQokMg0Ke30NCiQyMjENCnsicmVwZWF0Ijp7ImNvdW50IjoxLCJrZXkiOiJfX2RlZmF1bHRfXzo6OjowIDAgKiAqICoiLCJjcm9uIjoiMCAwICogKiAqIn0sImpvYklkIjoicmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTM5ODM0MDAwMDAiLCJkZWxheSI6Mjg1NzQ5NDUsInRpbWVzdGFtcCI6MTcxMzk1NDgyNTA1NSwicHJldk1pbGxpcyI6MTcxMzk4MzQwMDAwMCwiYXR0ZW1wdHMiOjF9DQokMTMNCjE3MTM5NTQ4MjUwNTUNCiQ4DQoyODU3NDk0NQ0KJDEzDQoxNzEzOTgzNDAwMDAwDQokMQ0KMA0KJDUNCkxQVVNIDQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDUzDQpyZXBlYXQ6MjhmZDc3NzRlNjcxMTQyNjBkY2FlMTllMDEzMTU3ZGQ6MTcxMzk4MzQwMDAwMA0K - reqtimestampmock: 2024-04-24T16:03:45.058943843+05:30 - restimestampmock: 2024-04-24T16:03:45.058949384+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-7 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODI1MDU3DQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:03:45.058409171+05:30 - restimestampmock: 2024-04-24T16:03:45.058420337+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-8 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODI1MDU4DQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:03:45.058943843+05:30 - restimestampmock: 2024-04-24T16:03:45.058949384+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-9 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODI1MDU5DQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:03:45.059989019+05:30 - restimestampmock: 2024-04-24T16:03:45.059998686+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-10 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjMNCiQ2DQpjbGllbnQNCiQ3DQpzZXRuYW1lDQokMjENCmJ1bGw6YzJOb1pXUjFiR1ZLYjJJPQ0K - genericresponses: - - origin: server - message: - - type: binary - data: K09LDQo= - reqtimestampmock: 2024-04-24T16:03:45.030509734+05:30 - restimestampmock: 2024-04-24T16:03:45.031281533+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-11 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjMNCiQ2DQpjbGllbnQNCiQ3DQpzZXRuYW1lDQokMjUNCmJ1bGw6WVdkbmNtVm5ZWFJsUTJobFkycz0NCg== - genericresponses: - - origin: server - message: - - type: binary - data: K09LDQo= - reqtimestampmock: 2024-04-24T16:03:45.030357941+05:30 - restimestampmock: 2024-04-24T16:03:45.031255533+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-12 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOnN0YWxsZWQNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6YWN0aXZlDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6ZmFpbGVkDQokMzANCmJ1bGw6c2NoZWR1bGVKb2I6c3RhbGxlZC1jaGVjaw0KJDI4DQpidWxsOnNjaGVkdWxlSm9iOm1ldGEtcGF1c2VkDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6cGF1c2VkDQokMQ0KMQ0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODI1MDU5DQokNQ0KMzAwMDANCg== - genericresponses: - - origin: server - message: - - type: binary - data: KjINCiowDQoqMA0K - reqtimestampmock: 2024-04-24T16:03:45.059486764+05:30 - restimestampmock: 2024-04-24T16:03:45.059493098+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-13 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnN0YWxsZWQNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZmFpbGVkDQokMzMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6c3RhbGxlZC1jaGVjaw0KJDMxDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOm1ldGEtcGF1c2VkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cGF1c2VkDQokMQ0KMQ0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODI1MDYzDQokNQ0KMzAwMDANCg== - genericresponses: - - origin: server - message: - - type: binary - data: KjINCiowDQoqMA0K - reqtimestampmock: 2024-04-24T16:03:45.064285228+05:30 - restimestampmock: 2024-04-24T16:03:45.064294644+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-14 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:03:50.077281645+05:30 - restimestampmock: 2024-04-24T16:03:50.077344354+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-15 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:03:50.077579981+05:30 - restimestampmock: 2024-04-24T16:03:50.077626232+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-16 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODMwMDY2DQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:03:50.076537305+05:30 - restimestampmock: 2024-04-24T16:03:50.076630264+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-17 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODMwMDcwDQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:03:50.077929151+05:30 - restimestampmock: 2024-04-24T16:03:50.07798961+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-18 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:03:55.092561219+05:30 - restimestampmock: 2024-04-24T16:03:55.092938848+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-19 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:03:55.096003794+05:30 - restimestampmock: 2024-04-24T16:03:55.096053128+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Mongo -name: mock-20 -spec: - metadata: - operation: '{ OpMsg flags: 65536, sections: [{ SectionSingle msg: {"hello":true,"maxAwaitTimeMS":{"$numberInt":"10000"},"topologyVersion":{"processId":{"$oid":"6625ff0f9d0279066097c670"},"counter":{"$numberLong":"0"}},"$db":"admin"} }], checksum: 0 }' - type: config - requests: - - header: - length: 131 - requestId: 6 - responseTo: 0 - Opcode: 2013 - message: - flagBits: 65536 - sections: - - '{ SectionSingle msg: {"hello":true,"maxAwaitTimeMS":{"$numberInt":"10000"},"topologyVersion":{"processId":{"$oid":"6625ff0f9d0279066097c670"},"counter":{"$numberLong":"0"}},"$db":"admin"} }' - checksum: 0 - read_delay: 509035015 - responses: - - header: - length: 313 - requestId: 10213 - responseTo: 6 - Opcode: 2013 - message: - flagBits: 2 - sections: - - '{ SectionSingle msg: {"isWritablePrimary":true,"topologyVersion":{"processId":{"$oid":"6625ff0f9d0279066097c670"},"counter":{"$numberLong":"0"}},"maxBsonObjectSize":{"$numberInt":"16777216"},"maxMessageSizeBytes":{"$numberInt":"48000000"},"maxWriteBatchSize":{"$numberInt":"100000"},"localTime":{"$date":{"$numberLong":"1713954835532"}},"logicalSessionTimeoutMinutes":{"$numberInt":"30"},"connectionId":{"$numberInt":"128"},"minWireVersion":{"$numberInt":"0"},"maxWireVersion":{"$numberInt":"21"},"readOnly":false,"ok":{"$numberDouble":"1.0"}} }' - checksum: 0 - read_delay: 10018784459 - created: 1713954835 - reqTimestampMock: 2024-04-24T16:03:45.525588072+05:30 - resTimestampMock: 2024-04-24T16:03:55.544751785+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-21 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODM1MDg4DQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:03:55.095722125+05:30 - restimestampmock: 2024-04-24T16:03:55.09578375+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-22 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODM1MDgwDQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:03:55.09244401+05:30 - restimestampmock: 2024-04-24T16:03:55.092514802+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-23 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:00.100642655+05:30 - restimestampmock: 2024-04-24T16:04:00.100664863+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-24 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:00.100836448+05:30 - restimestampmock: 2024-04-24T16:04:00.100853157+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-25 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODQwMDk2DQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:04:00.100552779+05:30 - restimestampmock: 2024-04-24T16:04:00.100603404+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-26 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODQwMDk2DQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:04:00.100785489+05:30 - restimestampmock: 2024-04-24T16:04:00.100804698+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-27 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:05.117882485+05:30 - restimestampmock: 2024-04-24T16:04:05.117906152+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-28 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:05.117785443+05:30 - restimestampmock: 2024-04-24T16:04:05.117809568+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Mongo -name: mock-29 -spec: - metadata: - operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"ismaster":{"$numberInt":"1"},"$db":"admin"} }], checksum: 0 }' - type: config - requests: - - header: - length: 55 - requestId: 8 - responseTo: 0 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"ismaster":{"$numberInt":"1"},"$db":"admin"} }' - checksum: 0 - read_delay: 10026933673 - responses: - - header: - length: 304 - requestId: 10216 - responseTo: 8 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"ismaster":true,"topologyVersion":{"processId":{"$oid":"6625ff0f9d0279066097c670"},"counter":{"$numberLong":"0"}},"maxBsonObjectSize":{"$numberInt":"16777216"},"maxMessageSizeBytes":{"$numberInt":"48000000"},"maxWriteBatchSize":{"$numberInt":"100000"},"localTime":{"$date":{"$numberLong":"1713954845585"}},"logicalSessionTimeoutMinutes":{"$numberInt":"30"},"connectionId":{"$numberInt":"131"},"minWireVersion":{"$numberInt":"0"},"maxWireVersion":{"$numberInt":"21"},"readOnly":false,"ok":{"$numberDouble":"1.0"}} }' - checksum: 0 - read_delay: 2609233 - created: 1713954845 - reqTimestampMock: 2024-04-24T16:04:05.584177494+05:30 - resTimestampMock: 2024-04-24T16:04:05.587030104+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-30 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODQ1MTEzDQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:04:05.117729151+05:30 - restimestampmock: 2024-04-24T16:04:05.117780526+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-31 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODQ1MTA5DQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:04:05.117813485+05:30 - restimestampmock: 2024-04-24T16:04:05.117835568+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-32 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:10.125130242+05:30 - restimestampmock: 2024-04-24T16:04:10.125149118+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-33 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:10.127655599+05:30 - restimestampmock: 2024-04-24T16:04:10.127683808+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Http -name: mock-34 -spec: - metadata: - name: Http - operation: POST - type: HTTP_CLIENT - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: /oauth/token - header: - Accept: application/json - Accept-Encoding: gzip, deflate - Auth0-Client: eyJuYW1lIjoibm9kZS1hdXRoMCIsInZlcnNpb24iOiIyLjQwLjAiLCJlbnYiOnsibm9kZSI6IjE0LjE3LjYifX0 - Connection: close - Content-Length: "228" - Content-Type: application/json - User-Agent: node.js/14.17.6 - body: '{"grant_type":"client_credentials","client_id":"JMHGCT557kUY4PNSabgf8oYzhGqTmR4t","client_secret":"t0ku9Odo6o8HzM5jSvEOiktOXRlH7fdO8FpB39QNf5xTbJzVSU2oIIBuYDLeVpZ9","audience":"https://dev-ymn41teowxlc7tqf.us.auth0.com/api/v2/"}' - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 200 - header: - Alt-Svc: h3=":443"; ma=86400 - Cache-Control: no-store - Cf-Cache-Status: DYNAMIC - Cf-Ray: 879570828bb7f30b-BOM - Content-Encoding: gzip - Content-Length: "8617" - Content-Type: application/json - Date: Wed, 24 Apr 2024 10:34:12 GMT - Pragma: no-cache - Server: cloudflare - Set-Cookie: did=s%3Av0%3A30e6a750-0226-11ef-ba13-b1b6ce699218.1ttfqVsidbqKbhfbq%2Fz1Q86An4NHK4nVlG5yP8bPMSs; Max-Age=31557600; Path=/; Expires=Thu, 24 Apr 2025 16:34:12 GMT; HttpOnly; Secure; SameSite=None,did_compat=s%3Av0%3A30e6a750-0226-11ef-ba13-b1b6ce699218.1ttfqVsidbqKbhfbq%2Fz1Q86An4NHK4nVlG5yP8bPMSs; Max-Age=31557600; Path=/; Expires=Thu, 24 Apr 2025 16:34:12 GMT; HttpOnly; Secure - Strict-Transport-Security: max-age=31536000; includeSubDomains - Vary: Accept-Encoding, Origin - X-Auth0-Dl: "12" - X-Auth0-Requestid: 0694a7d74e132c314f3d - X-Content-Type-Options: nosniff - X-Ratelimit-Limit: "300" - X-Ratelimit-Remaining: "299" - X-Ratelimit-Reset: "1713954853" - body: '{"access_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IjFzeHNVTkptNnVZa1RPcHVOa0RQSCJ9.eyJpc3MiOiJodHRwczovL2Rldi15bW40MXRlb3d4bGM3dHFmLnVzLmF1dGgwLmNvbS8iLCJzdWIiOiJKTUhHQ1Q1NTdrVVk0UE5TYWJnZjhvWXpoR3FUbVI0dEBjbGllbnRzIiwiYXVkIjoiaHR0cHM6Ly9kZXYteW1uNDF0ZW93eGxjN3RxZi51cy5hdXRoMC5jb20vYXBpL3YyLyIsImlhdCI6MTcxMzk1NDg1MiwiZXhwIjoxNzE0MDQxMjUyLCJzY29wZSI6InJlYWQ6Y2xpZW50X2dyYW50cyBjcmVhdGU6Y2xpZW50X2dyYW50cyBkZWxldGU6Y2xpZW50X2dyYW50cyB1cGRhdGU6Y2xpZW50X2dyYW50cyByZWFkOnVzZXJzIHVwZGF0ZTp1c2VycyBkZWxldGU6dXNlcnMgY3JlYXRlOnVzZXJzIHJlYWQ6dXNlcnNfYXBwX21ldGFkYXRhIHVwZGF0ZTp1c2Vyc19hcHBfbWV0YWRhdGEgZGVsZXRlOnVzZXJzX2FwcF9tZXRhZGF0YSBjcmVhdGU6dXNlcnNfYXBwX21ldGFkYXRhIHJlYWQ6dXNlcl9jdXN0b21fYmxvY2tzIGNyZWF0ZTp1c2VyX2N1c3RvbV9ibG9ja3MgZGVsZXRlOnVzZXJfY3VzdG9tX2Jsb2NrcyBjcmVhdGU6dXNlcl90aWNrZXRzIHJlYWQ6Y2xpZW50cyB1cGRhdGU6Y2xpZW50cyBkZWxldGU6Y2xpZW50cyBjcmVhdGU6Y2xpZW50cyByZWFkOmNsaWVudF9rZXlzIHVwZGF0ZTpjbGllbnRfa2V5cyBkZWxldGU6Y2xpZW50X2tleXMgY3JlYXRlOmNsaWVudF9rZXlzIHJlYWQ6Y29ubmVjdGlvbnMgdXBkYXRlOmNvbm5lY3Rpb25zIGRlbGV0ZTpjb25uZWN0aW9ucyBjcmVhdGU6Y29ubmVjdGlvbnMgcmVhZDpyZXNvdXJjZV9zZXJ2ZXJzIHVwZGF0ZTpyZXNvdXJjZV9zZXJ2ZXJzIGRlbGV0ZTpyZXNvdXJjZV9zZXJ2ZXJzIGNyZWF0ZTpyZXNvdXJjZV9zZXJ2ZXJzIHJlYWQ6ZGV2aWNlX2NyZWRlbnRpYWxzIHVwZGF0ZTpkZXZpY2VfY3JlZGVudGlhbHMgZGVsZXRlOmRldmljZV9jcmVkZW50aWFscyBjcmVhdGU6ZGV2aWNlX2NyZWRlbnRpYWxzIHJlYWQ6cnVsZXMgdXBkYXRlOnJ1bGVzIGRlbGV0ZTpydWxlcyBjcmVhdGU6cnVsZXMgcmVhZDpydWxlc19jb25maWdzIHVwZGF0ZTpydWxlc19jb25maWdzIGRlbGV0ZTpydWxlc19jb25maWdzIHJlYWQ6aG9va3MgdXBkYXRlOmhvb2tzIGRlbGV0ZTpob29rcyBjcmVhdGU6aG9va3MgcmVhZDphY3Rpb25zIHVwZGF0ZTphY3Rpb25zIGRlbGV0ZTphY3Rpb25zIGNyZWF0ZTphY3Rpb25zIHJlYWQ6ZW1haWxfcHJvdmlkZXIgdXBkYXRlOmVtYWlsX3Byb3ZpZGVyIGRlbGV0ZTplbWFpbF9wcm92aWRlciBjcmVhdGU6ZW1haWxfcHJvdmlkZXIgYmxhY2tsaXN0OnRva2VucyByZWFkOnN0YXRzIHJlYWQ6aW5zaWdodHMgcmVhZDp0ZW5hbnRfc2V0dGluZ3MgdXBkYXRlOnRlbmFudF9zZXR0aW5ncyByZWFkOmxvZ3MgcmVhZDpsb2dzX3VzZXJzIHJlYWQ6c2hpZWxkcyBjcmVhdGU6c2hpZWxkcyB1cGRhdGU6c2hpZWxkcyBkZWxldGU6c2hpZWxkcyByZWFkOmFub21hbHlfYmxvY2tzIGRlbGV0ZTphbm9tYWx5X2Jsb2NrcyB1cGRhdGU6dHJpZ2dlcnMgcmVhZDp0cmlnZ2VycyByZWFkOmdyYW50cyBkZWxldGU6Z3JhbnRzIHJlYWQ6Z3VhcmRpYW5fZmFjdG9ycyB1cGRhdGU6Z3VhcmRpYW5fZmFjdG9ycyByZWFkOmd1YXJkaWFuX2Vucm9sbG1lbnRzIGRlbGV0ZTpndWFyZGlhbl9lbnJvbGxtZW50cyBjcmVhdGU6Z3VhcmRpYW5fZW5yb2xsbWVudF90aWNrZXRzIHJlYWQ6dXNlcl9pZHBfdG9rZW5zIGNyZWF0ZTpwYXNzd29yZHNfY2hlY2tpbmdfam9iIGRlbGV0ZTpwYXNzd29yZHNfY2hlY2tpbmdfam9iIHJlYWQ6Y3VzdG9tX2RvbWFpbnMgZGVsZXRlOmN1c3RvbV9kb21haW5zIGNyZWF0ZTpjdXN0b21fZG9tYWlucyB1cGRhdGU6Y3VzdG9tX2RvbWFpbnMgcmVhZDplbWFpbF90ZW1wbGF0ZXMgY3JlYXRlOmVtYWlsX3RlbXBsYXRlcyB1cGRhdGU6ZW1haWxfdGVtcGxhdGVzIHJlYWQ6bWZhX3BvbGljaWVzIHVwZGF0ZTptZmFfcG9saWNpZXMgcmVhZDpyb2xlcyBjcmVhdGU6cm9sZXMgZGVsZXRlOnJvbGVzIHVwZGF0ZTpyb2xlcyByZWFkOnByb21wdHMgdXBkYXRlOnByb21wdHMgcmVhZDpicmFuZGluZyB1cGRhdGU6YnJhbmRpbmcgZGVsZXRlOmJyYW5kaW5nIHJlYWQ6bG9nX3N0cmVhbXMgY3JlYXRlOmxvZ19zdHJlYW1zIGRlbGV0ZTpsb2dfc3RyZWFtcyB1cGRhdGU6bG9nX3N0cmVhbXMgY3JlYXRlOnNpZ25pbmdfa2V5cyByZWFkOnNpZ25pbmdfa2V5cyB1cGRhdGU6c2lnbmluZ19rZXlzIHJlYWQ6bGltaXRzIHVwZGF0ZTpsaW1pdHMgY3JlYXRlOnJvbGVfbWVtYmVycyByZWFkOnJvbGVfbWVtYmVycyBkZWxldGU6cm9sZV9tZW1iZXJzIHJlYWQ6ZW50aXRsZW1lbnRzIHJlYWQ6YXR0YWNrX3Byb3RlY3Rpb24gdXBkYXRlOmF0dGFja19wcm90ZWN0aW9uIHJlYWQ6b3JnYW5pemF0aW9uc19zdW1tYXJ5IGNyZWF0ZTphdXRoZW50aWNhdGlvbl9tZXRob2RzIHJlYWQ6YXV0aGVudGljYXRpb25fbWV0aG9kcyB1cGRhdGU6YXV0aGVudGljYXRpb25fbWV0aG9kcyBkZWxldGU6YXV0aGVudGljYXRpb25fbWV0aG9kcyByZWFkOm9yZ2FuaXphdGlvbnMgdXBkYXRlOm9yZ2FuaXphdGlvbnMgY3JlYXRlOm9yZ2FuaXphdGlvbnMgZGVsZXRlOm9yZ2FuaXphdGlvbnMgY3JlYXRlOm9yZ2FuaXphdGlvbl9tZW1iZXJzIHJlYWQ6b3JnYW5pemF0aW9uX21lbWJlcnMgZGVsZXRlOm9yZ2FuaXphdGlvbl9tZW1iZXJzIGNyZWF0ZTpvcmdhbml6YXRpb25fY29ubmVjdGlvbnMgcmVhZDpvcmdhbml6YXRpb25fY29ubmVjdGlvbnMgdXBkYXRlOm9yZ2FuaXphdGlvbl9jb25uZWN0aW9ucyBkZWxldGU6b3JnYW5pemF0aW9uX2Nvbm5lY3Rpb25zIGNyZWF0ZTpvcmdhbml6YXRpb25fbWVtYmVyX3JvbGVzIHJlYWQ6b3JnYW5pemF0aW9uX21lbWJlcl9yb2xlcyBkZWxldGU6b3JnYW5pemF0aW9uX21lbWJlcl9yb2xlcyBjcmVhdGU6b3JnYW5pemF0aW9uX2ludml0YXRpb25zIHJlYWQ6b3JnYW5pemF0aW9uX2ludml0YXRpb25zIGRlbGV0ZTpvcmdhbml6YXRpb25faW52aXRhdGlvbnMgZGVsZXRlOnBob25lX3Byb3ZpZGVycyBjcmVhdGU6cGhvbmVfcHJvdmlkZXJzIHJlYWQ6cGhvbmVfcHJvdmlkZXJzIHVwZGF0ZTpwaG9uZV9wcm92aWRlcnMgZGVsZXRlOnBob25lX3RlbXBsYXRlcyBjcmVhdGU6cGhvbmVfdGVtcGxhdGVzIHJlYWQ6cGhvbmVfdGVtcGxhdGVzIHVwZGF0ZTpwaG9uZV90ZW1wbGF0ZXMgY3JlYXRlOmVuY3J5cHRpb25fa2V5cyByZWFkOmVuY3J5cHRpb25fa2V5cyB1cGRhdGU6ZW5jcnlwdGlvbl9rZXlzIGRlbGV0ZTplbmNyeXB0aW9uX2tleXMgcmVhZDpzZXNzaW9ucyBkZWxldGU6c2Vzc2lvbnMgcmVhZDpyZWZyZXNoX3Rva2VucyBkZWxldGU6cmVmcmVzaF90b2tlbnMgY3JlYXRlOnNlbGZfc2VydmljZV9wcm9maWxlcyByZWFkOnNlbGZfc2VydmljZV9wcm9maWxlcyB1cGRhdGU6c2VsZl9zZXJ2aWNlX3Byb2ZpbGVzIGRlbGV0ZTpzZWxmX3NlcnZpY2VfcHJvZmlsZXMgY3JlYXRlOnNzb19hY2Nlc3NfdGlja2V0cyByZWFkOmNsaWVudF9jcmVkZW50aWFscyBjcmVhdGU6Y2xpZW50X2NyZWRlbnRpYWxzIHVwZGF0ZTpjbGllbnRfY3JlZGVudGlhbHMgZGVsZXRlOmNsaWVudF9jcmVkZW50aWFscyIsImd0eSI6ImNsaWVudC1jcmVkZW50aWFscyIsImF6cCI6IkpNSEdDVDU1N2tVWTRQTlNhYmdmOG9ZemhHcVRtUjR0In0.Z81E3Zunkt8eXzgsgzvXDNi5bZpVSH4_KqxG1d4gSLBkbtwlNlqFYgqEVij8_GUwcWXdKpcSXbYmK9zFPkObjlk9EL5mGl4qAE0bz14bgTQLgNU9L-JKYgS3rtOevDFcWlTkv9kJDLMi_iB77xlyrbB6xCxn9zROLYe8JqBKzE3tbVtGaS4kXKtkI2pa8YrRzz-4BdZITwkYnD_3TtnzgESW39HOtPr-KYkY7dDL5J7lgX20ICHtaIY6kzn3Ws08y4tryz_3uWVEgK5CT8jMhLtwJOMf8gYd7iedg1obXXDhNH-d1yUbSsalAkpAbP431MsTPhqyiACKkpaE2hpYRw","scope":"read:client_grants create:client_grants delete:client_grants update:client_grants read:users update:users delete:users create:users read:users_app_metadata update:users_app_metadata delete:users_app_metadata create:users_app_metadata read:user_custom_blocks create:user_custom_blocks delete:user_custom_blocks create:user_tickets read:clients update:clients delete:clients create:clients read:client_keys update:client_keys delete:client_keys create:client_keys read:connections update:connections delete:connections create:connections read:resource_servers update:resource_servers delete:resource_servers create:resource_servers read:device_credentials update:device_credentials delete:device_credentials create:device_credentials read:rules update:rules delete:rules create:rules read:rules_configs update:rules_configs delete:rules_configs read:hooks update:hooks delete:hooks create:hooks read:actions update:actions delete:actions create:actions read:email_provider update:email_provider delete:email_provider create:email_provider blacklist:tokens read:stats read:insights read:tenant_settings update:tenant_settings read:logs read:logs_users read:shields create:shields update:shields delete:shields read:anomaly_blocks delete:anomaly_blocks update:triggers read:triggers read:grants delete:grants read:guardian_factors update:guardian_factors read:guardian_enrollments delete:guardian_enrollments create:guardian_enrollment_tickets read:user_idp_tokens create:passwords_checking_job delete:passwords_checking_job read:custom_domains delete:custom_domains create:custom_domains update:custom_domains read:email_templates create:email_templates update:email_templates read:mfa_policies update:mfa_policies read:roles create:roles delete:roles update:roles read:prompts update:prompts read:branding update:branding delete:branding read:log_streams create:log_streams delete:log_streams update:log_streams create:signing_keys read:signing_keys update:signing_keys read:limits update:limits create:role_members read:role_members delete:role_members read:entitlements read:attack_protection update:attack_protection read:organizations_summary create:authentication_methods read:authentication_methods update:authentication_methods delete:authentication_methods read:organizations update:organizations create:organizations delete:organizations create:organization_members read:organization_members delete:organization_members create:organization_connections read:organization_connections update:organization_connections delete:organization_connections create:organization_member_roles read:organization_member_roles delete:organization_member_roles create:organization_invitations read:organization_invitations delete:organization_invitations delete:phone_providers create:phone_providers read:phone_providers update:phone_providers delete:phone_templates create:phone_templates read:phone_templates update:phone_templates create:encryption_keys read:encryption_keys update:encryption_keys delete:encryption_keys read:sessions delete:sessions read:refresh_tokens delete:refresh_tokens create:self_service_profiles read:self_service_profiles update:self_service_profiles delete:self_service_profiles create:sso_access_tickets read:client_credentials create:client_credentials update:client_credentials delete:client_credentials","expires_in":86400,"token_type":"Bearer"}' - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - objects: [] - created: 1713954852 - reqTimestampMock: 2024-04-24T16:04:12.822187746+05:30 - resTimestampMock: 2024-04-24T16:04:12.822187746+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-35 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODUwMTIyDQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:04:15.077905686+05:30 - restimestampmock: 2024-04-24T16:04:15.077973562+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-36 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODUwMTIzDQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:04:10.125180451+05:30 - restimestampmock: 2024-04-24T16:04:10.125210785+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-37 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnN0YWxsZWQNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZmFpbGVkDQokMzMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6c3RhbGxlZC1jaGVjaw0KJDMxDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOm1ldGEtcGF1c2VkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cGF1c2VkDQokMQ0KMQ0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODU1MDc1DQokNQ0KMzAwMDANCg== - genericresponses: - - origin: server - message: - - type: binary - data: KjINCiowDQoqMA0K - reqtimestampmock: 2024-04-24T16:04:15.079738786+05:30 - restimestampmock: 2024-04-24T16:04:15.079792329+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-38 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOnN0YWxsZWQNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6YWN0aXZlDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6ZmFpbGVkDQokMzANCmJ1bGw6c2NoZWR1bGVKb2I6c3RhbGxlZC1jaGVjaw0KJDI4DQpidWxsOnNjaGVkdWxlSm9iOm1ldGEtcGF1c2VkDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6cGF1c2VkDQokMQ0KMQ0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODU1MDczDQokNQ0KMzAwMDANCg== - genericresponses: - - origin: server - message: - - type: binary - data: KjINCiowDQoqMA0K - reqtimestampmock: 2024-04-24T16:04:15.077905686+05:30 - restimestampmock: 2024-04-24T16:04:15.077973562+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-39 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:15.179808672+05:30 - restimestampmock: 2024-04-24T16:04:15.179976881+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-40 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:15.179808672+05:30 - restimestampmock: 2024-04-24T16:04:15.180034424+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Http -name: mock-41 -spec: - metadata: - name: Http - operation: POST - type: HTTP_CLIENT - req: - method: POST - proto_major: 1 - proto_minor: 1 - url: /api/v2/users - header: - Accept: application/json - Accept-Encoding: gzip, deflate - Auth0-Client: eyJuYW1lIjoibm9kZS1hdXRoMCIsInZlcnNpb24iOiIyLjQwLjAiLCJlbnYiOnsibm9kZSI6IjE0LjE3LjYifX0 - Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IjFzeHNVTkptNnVZa1RPcHVOa0RQSCJ9.eyJpc3MiOiJodHRwczovL2Rldi15bW40MXRlb3d4bGM3dHFmLnVzLmF1dGgwLmNvbS8iLCJzdWIiOiJKTUhHQ1Q1NTdrVVk0UE5TYWJnZjhvWXpoR3FUbVI0dEBjbGllbnRzIiwiYXVkIjoiaHR0cHM6Ly9kZXYteW1uNDF0ZW93eGxjN3RxZi51cy5hdXRoMC5jb20vYXBpL3YyLyIsImlhdCI6MTcxMzk1NDg1MiwiZXhwIjoxNzE0MDQxMjUyLCJzY29wZSI6InJlYWQ6Y2xpZW50X2dyYW50cyBjcmVhdGU6Y2xpZW50X2dyYW50cyBkZWxldGU6Y2xpZW50X2dyYW50cyB1cGRhdGU6Y2xpZW50X2dyYW50cyByZWFkOnVzZXJzIHVwZGF0ZTp1c2VycyBkZWxldGU6dXNlcnMgY3JlYXRlOnVzZXJzIHJlYWQ6dXNlcnNfYXBwX21ldGFkYXRhIHVwZGF0ZTp1c2Vyc19hcHBfbWV0YWRhdGEgZGVsZXRlOnVzZXJzX2FwcF9tZXRhZGF0YSBjcmVhdGU6dXNlcnNfYXBwX21ldGFkYXRhIHJlYWQ6dXNlcl9jdXN0b21fYmxvY2tzIGNyZWF0ZTp1c2VyX2N1c3RvbV9ibG9ja3MgZGVsZXRlOnVzZXJfY3VzdG9tX2Jsb2NrcyBjcmVhdGU6dXNlcl90aWNrZXRzIHJlYWQ6Y2xpZW50cyB1cGRhdGU6Y2xpZW50cyBkZWxldGU6Y2xpZW50cyBjcmVhdGU6Y2xpZW50cyByZWFkOmNsaWVudF9rZXlzIHVwZGF0ZTpjbGllbnRfa2V5cyBkZWxldGU6Y2xpZW50X2tleXMgY3JlYXRlOmNsaWVudF9rZXlzIHJlYWQ6Y29ubmVjdGlvbnMgdXBkYXRlOmNvbm5lY3Rpb25zIGRlbGV0ZTpjb25uZWN0aW9ucyBjcmVhdGU6Y29ubmVjdGlvbnMgcmVhZDpyZXNvdXJjZV9zZXJ2ZXJzIHVwZGF0ZTpyZXNvdXJjZV9zZXJ2ZXJzIGRlbGV0ZTpyZXNvdXJjZV9zZXJ2ZXJzIGNyZWF0ZTpyZXNvdXJjZV9zZXJ2ZXJzIHJlYWQ6ZGV2aWNlX2NyZWRlbnRpYWxzIHVwZGF0ZTpkZXZpY2VfY3JlZGVudGlhbHMgZGVsZXRlOmRldmljZV9jcmVkZW50aWFscyBjcmVhdGU6ZGV2aWNlX2NyZWRlbnRpYWxzIHJlYWQ6cnVsZXMgdXBkYXRlOnJ1bGVzIGRlbGV0ZTpydWxlcyBjcmVhdGU6cnVsZXMgcmVhZDpydWxlc19jb25maWdzIHVwZGF0ZTpydWxlc19jb25maWdzIGRlbGV0ZTpydWxlc19jb25maWdzIHJlYWQ6aG9va3MgdXBkYXRlOmhvb2tzIGRlbGV0ZTpob29rcyBjcmVhdGU6aG9va3MgcmVhZDphY3Rpb25zIHVwZGF0ZTphY3Rpb25zIGRlbGV0ZTphY3Rpb25zIGNyZWF0ZTphY3Rpb25zIHJlYWQ6ZW1haWxfcHJvdmlkZXIgdXBkYXRlOmVtYWlsX3Byb3ZpZGVyIGRlbGV0ZTplbWFpbF9wcm92aWRlciBjcmVhdGU6ZW1haWxfcHJvdmlkZXIgYmxhY2tsaXN0OnRva2VucyByZWFkOnN0YXRzIHJlYWQ6aW5zaWdodHMgcmVhZDp0ZW5hbnRfc2V0dGluZ3MgdXBkYXRlOnRlbmFudF9zZXR0aW5ncyByZWFkOmxvZ3MgcmVhZDpsb2dzX3VzZXJzIHJlYWQ6c2hpZWxkcyBjcmVhdGU6c2hpZWxkcyB1cGRhdGU6c2hpZWxkcyBkZWxldGU6c2hpZWxkcyByZWFkOmFub21hbHlfYmxvY2tzIGRlbGV0ZTphbm9tYWx5X2Jsb2NrcyB1cGRhdGU6dHJpZ2dlcnMgcmVhZDp0cmlnZ2VycyByZWFkOmdyYW50cyBkZWxldGU6Z3JhbnRzIHJlYWQ6Z3VhcmRpYW5fZmFjdG9ycyB1cGRhdGU6Z3VhcmRpYW5fZmFjdG9ycyByZWFkOmd1YXJkaWFuX2Vucm9sbG1lbnRzIGRlbGV0ZTpndWFyZGlhbl9lbnJvbGxtZW50cyBjcmVhdGU6Z3VhcmRpYW5fZW5yb2xsbWVudF90aWNrZXRzIHJlYWQ6dXNlcl9pZHBfdG9rZW5zIGNyZWF0ZTpwYXNzd29yZHNfY2hlY2tpbmdfam9iIGRlbGV0ZTpwYXNzd29yZHNfY2hlY2tpbmdfam9iIHJlYWQ6Y3VzdG9tX2RvbWFpbnMgZGVsZXRlOmN1c3RvbV9kb21haW5zIGNyZWF0ZTpjdXN0b21fZG9tYWlucyB1cGRhdGU6Y3VzdG9tX2RvbWFpbnMgcmVhZDplbWFpbF90ZW1wbGF0ZXMgY3JlYXRlOmVtYWlsX3RlbXBsYXRlcyB1cGRhdGU6ZW1haWxfdGVtcGxhdGVzIHJlYWQ6bWZhX3BvbGljaWVzIHVwZGF0ZTptZmFfcG9saWNpZXMgcmVhZDpyb2xlcyBjcmVhdGU6cm9sZXMgZGVsZXRlOnJvbGVzIHVwZGF0ZTpyb2xlcyByZWFkOnByb21wdHMgdXBkYXRlOnByb21wdHMgcmVhZDpicmFuZGluZyB1cGRhdGU6YnJhbmRpbmcgZGVsZXRlOmJyYW5kaW5nIHJlYWQ6bG9nX3N0cmVhbXMgY3JlYXRlOmxvZ19zdHJlYW1zIGRlbGV0ZTpsb2dfc3RyZWFtcyB1cGRhdGU6bG9nX3N0cmVhbXMgY3JlYXRlOnNpZ25pbmdfa2V5cyByZWFkOnNpZ25pbmdfa2V5cyB1cGRhdGU6c2lnbmluZ19rZXlzIHJlYWQ6bGltaXRzIHVwZGF0ZTpsaW1pdHMgY3JlYXRlOnJvbGVfbWVtYmVycyByZWFkOnJvbGVfbWVtYmVycyBkZWxldGU6cm9sZV9tZW1iZXJzIHJlYWQ6ZW50aXRsZW1lbnRzIHJlYWQ6YXR0YWNrX3Byb3RlY3Rpb24gdXBkYXRlOmF0dGFja19wcm90ZWN0aW9uIHJlYWQ6b3JnYW5pemF0aW9uc19zdW1tYXJ5IGNyZWF0ZTphdXRoZW50aWNhdGlvbl9tZXRob2RzIHJlYWQ6YXV0aGVudGljYXRpb25fbWV0aG9kcyB1cGRhdGU6YXV0aGVudGljYXRpb25fbWV0aG9kcyBkZWxldGU6YXV0aGVudGljYXRpb25fbWV0aG9kcyByZWFkOm9yZ2FuaXphdGlvbnMgdXBkYXRlOm9yZ2FuaXphdGlvbnMgY3JlYXRlOm9yZ2FuaXphdGlvbnMgZGVsZXRlOm9yZ2FuaXphdGlvbnMgY3JlYXRlOm9yZ2FuaXphdGlvbl9tZW1iZXJzIHJlYWQ6b3JnYW5pemF0aW9uX21lbWJlcnMgZGVsZXRlOm9yZ2FuaXphdGlvbl9tZW1iZXJzIGNyZWF0ZTpvcmdhbml6YXRpb25fY29ubmVjdGlvbnMgcmVhZDpvcmdhbml6YXRpb25fY29ubmVjdGlvbnMgdXBkYXRlOm9yZ2FuaXphdGlvbl9jb25uZWN0aW9ucyBkZWxldGU6b3JnYW5pemF0aW9uX2Nvbm5lY3Rpb25zIGNyZWF0ZTpvcmdhbml6YXRpb25fbWVtYmVyX3JvbGVzIHJlYWQ6b3JnYW5pemF0aW9uX21lbWJlcl9yb2xlcyBkZWxldGU6b3JnYW5pemF0aW9uX21lbWJlcl9yb2xlcyBjcmVhdGU6b3JnYW5pemF0aW9uX2ludml0YXRpb25zIHJlYWQ6b3JnYW5pemF0aW9uX2ludml0YXRpb25zIGRlbGV0ZTpvcmdhbml6YXRpb25faW52aXRhdGlvbnMgZGVsZXRlOnBob25lX3Byb3ZpZGVycyBjcmVhdGU6cGhvbmVfcHJvdmlkZXJzIHJlYWQ6cGhvbmVfcHJvdmlkZXJzIHVwZGF0ZTpwaG9uZV9wcm92aWRlcnMgZGVsZXRlOnBob25lX3RlbXBsYXRlcyBjcmVhdGU6cGhvbmVfdGVtcGxhdGVzIHJlYWQ6cGhvbmVfdGVtcGxhdGVzIHVwZGF0ZTpwaG9uZV90ZW1wbGF0ZXMgY3JlYXRlOmVuY3J5cHRpb25fa2V5cyByZWFkOmVuY3J5cHRpb25fa2V5cyB1cGRhdGU6ZW5jcnlwdGlvbl9rZXlzIGRlbGV0ZTplbmNyeXB0aW9uX2tleXMgcmVhZDpzZXNzaW9ucyBkZWxldGU6c2Vzc2lvbnMgcmVhZDpyZWZyZXNoX3Rva2VucyBkZWxldGU6cmVmcmVzaF90b2tlbnMgY3JlYXRlOnNlbGZfc2VydmljZV9wcm9maWxlcyByZWFkOnNlbGZfc2VydmljZV9wcm9maWxlcyB1cGRhdGU6c2VsZl9zZXJ2aWNlX3Byb2ZpbGVzIGRlbGV0ZTpzZWxmX3NlcnZpY2VfcHJvZmlsZXMgY3JlYXRlOnNzb19hY2Nlc3NfdGlja2V0cyByZWFkOmNsaWVudF9jcmVkZW50aWFscyBjcmVhdGU6Y2xpZW50X2NyZWRlbnRpYWxzIHVwZGF0ZTpjbGllbnRfY3JlZGVudGlhbHMgZGVsZXRlOmNsaWVudF9jcmVkZW50aWFscyIsImd0eSI6ImNsaWVudC1jcmVkZW50aWFscyIsImF6cCI6IkpNSEdDVDU1N2tVWTRQTlNhYmdmOG9ZemhHcVRtUjR0In0.Z81E3Zunkt8eXzgsgzvXDNi5bZpVSH4_KqxG1d4gSLBkbtwlNlqFYgqEVij8_GUwcWXdKpcSXbYmK9zFPkObjlk9EL5mGl4qAE0bz14bgTQLgNU9L-JKYgS3rtOevDFcWlTkv9kJDLMi_iB77xlyrbB6xCxn9zROLYe8JqBKzE3tbVtGaS4kXKtkI2pa8YrRzz-4BdZITwkYnD_3TtnzgESW39HOtPr-KYkY7dDL5J7lgX20ICHtaIY6kzn3Ws08y4tryz_3uWVEgK5CT8jMhLtwJOMf8gYd7iedg1obXXDhNH-d1yUbSsalAkpAbP431MsTPhqyiACKkpaE2hpYRw - Connection: close - Content-Length: "98" - Content-Type: application/json - User-Agent: node.js/14.17.6 - body: '{"connection":"Username-Password-Authentication","email":"3@gmail.com","password":"Raj@123456789"}' - timestamp: 0001-01-01T00:00:00Z - resp: - status_code: 201 - header: - Access-Control-Expose-Headers: WWW-Authenticate,Server-Authorization - Alt-Svc: h3=":443"; ma=86400 - Cache-Control: no-cache - Cf-Cache-Status: DYNAMIC - Cf-Ray: 87957093d8772dff-BOM - Content-Length: "477" - Content-Type: application/json; charset=utf-8 - Date: Wed, 24 Apr 2024 10:34:15 GMT - Server: cloudflare - Strict-Transport-Security: max-age=31536000; includeSubDomains - Vary: origin, Accept-Encoding - X-Auth0-Dl: "20" - X-Content-Type-Options: nosniff - X-Ratelimit-Limit: "10" - X-Ratelimit-Remaining: "9" - X-Ratelimit-Reset: "1713954856" - body: '{"created_at":"2024-04-24T10:34:15.363Z","email":"3@gmail.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6628e027e51cf81977d25eec","provider":"auth0","isSocial":false}],"name":"3@gmail.com","nickname":"3","picture":"https://s.gravatar.com/avatar/64816ea33f7601f986214b562941da93?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2F3.png","updated_at":"2024-04-24T10:34:15.363Z","user_id":"auth0|6628e027e51cf81977d25eec"}' - status_message: "" - proto_major: 0 - proto_minor: 0 - timestamp: 0001-01-01T00:00:00Z - objects: [] - created: 1713954855 - reqTimestampMock: 2024-04-24T16:04:15.493368159+05:30 - resTimestampMock: 2024-04-24T16:04:15.493368159+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Mongo -name: mock-42 -spec: - metadata: - operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"insert":"users","documents":[{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","authId":"auth0|6628e027e51cf81977d25eec","role":"SUPER_ADMIN","_id":{"$oid":"6628e027b16d7879ac569043"},"__v":{"$numberInt":"0"}}],"ordered":true,"lsid":{"id":{"$binary":{"base64":"tSuP5PqgT+GU04zX8XGwmw==","subType":"04"}}},"$db":"ecommerce"} }], checksum: 0 }' - requests: - - header: - length: 289 - requestId: 9 - responseTo: 0 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"insert":"users","documents":[{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","authId":"auth0|6628e027e51cf81977d25eec","role":"SUPER_ADMIN","_id":{"$oid":"6628e027b16d7879ac569043"},"__v":{"$numberInt":"0"}}],"ordered":true,"lsid":{"id":{"$binary":{"base64":"tSuP5PqgT+GU04zX8XGwmw==","subType":"04"}}},"$db":"ecommerce"} }' - checksum: 0 - read_delay: 30457319821 - responses: - - header: - length: 45 - requestId: 10217 - responseTo: 9 - Opcode: 2013 - message: - flagBits: 0 - sections: - - '{ SectionSingle msg: {"n":{"$numberInt":"1"},"ok":{"$numberDouble":"1.0"}} }' - checksum: 0 - read_delay: 2639483 - created: 1713954855 - reqTimestampMock: 2024-04-24T16:04:15.513778973+05:30 - resTimestampMock: 2024-04-24T16:04:15.51654929+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-43 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODU1MTI1DQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:04:15.127363436+05:30 - restimestampmock: 2024-04-24T16:04:15.127385353+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-44 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODU1MTI2DQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:04:15.12743377+05:30 - restimestampmock: 2024-04-24T16:04:15.127455478+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-45 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:20.261901832+05:30 - restimestampmock: 2024-04-24T16:04:20.261987958+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-46 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= - genericresponses: - - origin: server - message: - - type: binary - data: Ki0xDQo= - reqtimestampmock: 2024-04-24T16:04:20.261921624+05:30 - restimestampmock: 2024-04-24T16:04:20.262000083+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-47 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjENCiQ0DQppbmZvDQo= - genericresponses: - - origin: server - message: - - type: binary - data: JDUzODkNCiMgU2VydmVyDQpyZWRpc192ZXJzaW9uOjcuMi40DQpyZWRpc19naXRfc2hhMTowMDAwMDAwMA0KcmVkaXNfZ2l0X2RpcnR5OjANCnJlZGlzX2J1aWxkX2lkOjdkM2NhOTlkZGU2YjU2YzYNCnJlZGlzX21vZGU6c3RhbmRhbG9uZQ0Kb3M6TGludXggNi41LjAtMjctZ2VuZXJpYyBhYXJjaDY0DQphcmNoX2JpdHM6NjQNCm1vbm90b25pY19jbG9jazpQT1NJWCBjbG9ja19nZXR0aW1lDQptdWx0aXBsZXhpbmdfYXBpOmVwb2xsDQphdG9taWN2YXJfYXBpOmMxMS1idWlsdGluDQpnY2NfdmVyc2lvbjoxMy4yLjENCnByb2Nlc3NfaWQ6MQ0KcHJvY2Vzc19zdXBlcnZpc2VkOm5vDQpydW5faWQ6ODFlY2VhMTYxMWVlNWNkYWU2YmM4Mjk0MTczMjUwMGZiMWU5N2JiNA0KdGNwX3BvcnQ6NjM3OQ0Kc2VydmVyX3RpbWVfdXNlYzoxNzEzOTU0ODI1MDEzODU4DQp1cHRpbWVfaW5fc2Vjb25kczoxODg2NjYNCnVwdGltZV9pbl9kYXlzOjINCmh6OjEwDQpjb25maWd1cmVkX2h6OjEwDQpscnVfY2xvY2s6MjY3ODc5Mg0KZXhlY3V0YWJsZTovZGF0YS9yZWRpcy1zZXJ2ZXINCmNvbmZpZ19maWxlOg0KaW9fdGhyZWFkc19hY3RpdmU6MA0KbGlzdGVuZXIwOm5hbWU9dGNwLGJpbmQ9cmVkaXMscG9ydD02Mzc5DQoNCiMgQ2xpZW50cw0KY29ubmVjdGVkX2NsaWVudHM6Mg0KY2x1c3Rlcl9jb25uZWN0aW9uczowDQptYXhjbGllbnRzOjEwMDAwDQpjbGllbnRfcmVjZW50X21heF9pbnB1dF9idWZmZXI6MA0KY2xpZW50X3JlY2VudF9tYXhfb3V0cHV0X2J1ZmZlcjowDQpibG9ja2VkX2NsaWVudHM6MA0KdHJhY2tpbmdfY2xpZW50czowDQpjbGllbnRzX2luX3RpbWVvdXRfdGFibGU6MA0KdG90YWxfYmxvY2tpbmdfa2V5czowDQp0b3RhbF9ibG9ja2luZ19rZXlzX29uX25va2V5OjANCg0KIyBNZW1vcnkNCnVzZWRfbWVtb3J5OjE2NTIxNjgNCnVzZWRfbWVtb3J5X2h1bWFuOjEuNThNDQp1c2VkX21lbW9yeV9yc3M6ODkwODgwMA0KdXNlZF9tZW1vcnlfcnNzX2h1bWFuOjguNTBNDQp1c2VkX21lbW9yeV9wZWFrOjE4ODQyNDgNCnVzZWRfbWVtb3J5X3BlYWtfaHVtYW46MS44ME0NCnVzZWRfbWVtb3J5X3BlYWtfcGVyYzo4Ny42OCUNCnVzZWRfbWVtb3J5X292ZXJoZWFkOjkyMDc1Mg0KdXNlZF9tZW1vcnlfc3RhcnR1cDo4OTg2MzINCnVzZWRfbWVtb3J5X2RhdGFzZXQ6NzMxNDE2DQp1c2VkX21lbW9yeV9kYXRhc2V0X3BlcmM6OTcuMDYlDQphbGxvY2F0b3JfYWxsb2NhdGVkOjIwMjkyMzINCmFsbG9jYXRvcl9hY3RpdmU6OTUwMjcyMA0KYWxsb2NhdG9yX3Jlc2lkZW50OjExMDc1NTg0DQp0b3RhbF9zeXN0ZW1fbWVtb3J5OjQwOTM5NjQyODgNCnRvdGFsX3N5c3RlbV9tZW1vcnlfaHVtYW46My44MUcNCnVzZWRfbWVtb3J5X2x1YTo3OTg3Mg0KdXNlZF9tZW1vcnlfdm1fZXZhbDo3OTg3Mg0KdXNlZF9tZW1vcnlfbHVhX2h1bWFuOjc4LjAwSw0KdXNlZF9tZW1vcnlfc2NyaXB0c19ldmFsOjIxMzI4DQpudW1iZXJfb2ZfY2FjaGVkX3NjcmlwdHM6Ng0KbnVtYmVyX29mX2Z1bmN0aW9uczowDQpudW1iZXJfb2ZfbGlicmFyaWVzOjANCnVzZWRfbWVtb3J5X3ZtX2Z1bmN0aW9uczozMjc2OA0KdXNlZF9tZW1vcnlfdm1fdG90YWw6MTEyNjQwDQp1c2VkX21lbW9yeV92bV90b3RhbF9odW1hbjoxMTAuMDBLDQp1c2VkX21lbW9yeV9mdW5jdGlvbnM6MTg0DQp1c2VkX21lbW9yeV9zY3JpcHRzOjIxNTEyDQp1c2VkX21lbW9yeV9zY3JpcHRzX2h1bWFuOjIxLjAxSw0KbWF4bWVtb3J5OjANCm1heG1lbW9yeV9odW1hbjowQg0KbWF4bWVtb3J5X3BvbGljeTpub2V2aWN0aW9uDQphbGxvY2F0b3JfZnJhZ19yYXRpbzo0LjY4DQphbGxvY2F0b3JfZnJhZ19ieXRlczo3NDczNDg4DQphbGxvY2F0b3JfcnNzX3JhdGlvOjEuMTcNCmFsbG9jYXRvcl9yc3NfYnl0ZXM6MTU3Mjg2NA0KcnNzX292ZXJoZWFkX3JhdGlvOjAuODANCnJzc19vdmVyaGVhZF9ieXRlczotMjE2Njc4NA0KbWVtX2ZyYWdtZW50YXRpb25fcmF0aW86NS41OQ0KbWVtX2ZyYWdtZW50YXRpb25fYnl0ZXM6NzMxNDM3Ng0KbWVtX25vdF9jb3VudGVkX2Zvcl9ldmljdDowDQptZW1fcmVwbGljYXRpb25fYmFja2xvZzowDQptZW1fdG90YWxfcmVwbGljYXRpb25fYnVmZmVyczowDQptZW1fY2xpZW50c19zbGF2ZXM6MA0KbWVtX2NsaWVudHNfbm9ybWFsOjANCm1lbV9jbHVzdGVyX2xpbmtzOjANCm1lbV9hb2ZfYnVmZmVyOjANCm1lbV9hbGxvY2F0b3I6amVtYWxsb2MtNS4zLjANCmFjdGl2ZV9kZWZyYWdfcnVubmluZzowDQpsYXp5ZnJlZV9wZW5kaW5nX29iamVjdHM6MA0KbGF6eWZyZWVkX29iamVjdHM6MA0KDQojIFBlcnNpc3RlbmNlDQpsb2FkaW5nOjANCmFzeW5jX2xvYWRpbmc6MA0KY3VycmVudF9jb3dfcGVhazowDQpjdXJyZW50X2Nvd19zaXplOjANCmN1cnJlbnRfY293X3NpemVfYWdlOjANCmN1cnJlbnRfZm9ya19wZXJjOjAuMDANCmN1cnJlbnRfc2F2ZV9rZXlzX3Byb2Nlc3NlZDowDQpjdXJyZW50X3NhdmVfa2V5c190b3RhbDowDQpyZGJfY2hhbmdlc19zaW5jZV9sYXN0X3NhdmU6MTkNCnJkYl9iZ3NhdmVfaW5fcHJvZ3Jlc3M6MA0KcmRiX2xhc3Rfc2F2ZV90aW1lOjE3MTM5NTM5MTYNCnJkYl9sYXN0X2Jnc2F2ZV9zdGF0dXM6b2sNCnJkYl9sYXN0X2Jnc2F2ZV90aW1lX3NlYzowDQpyZGJfY3VycmVudF9iZ3NhdmVfdGltZV9zZWM6LTENCnJkYl9zYXZlczo0MA0KcmRiX2xhc3RfY293X3NpemU6NjUxMjY0DQpyZGJfbGFzdF9sb2FkX2tleXNfZXhwaXJlZDowDQpyZGJfbGFzdF9sb2FkX2tleXNfbG9hZGVkOjQNCmFvZl9lbmFibGVkOjANCmFvZl9yZXdyaXRlX2luX3Byb2dyZXNzOjANCmFvZl9yZXdyaXRlX3NjaGVkdWxlZDowDQphb2ZfbGFzdF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfY3VycmVudF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfbGFzdF9iZ3Jld3JpdGVfc3RhdHVzOm9rDQphb2ZfcmV3cml0ZXM6MA0KYW9mX3Jld3JpdGVzX2NvbnNlY3V0aXZlX2ZhaWx1cmVzOjANCmFvZl9sYXN0X3dyaXRlX3N0YXR1czpvaw0KYW9mX2xhc3RfY293X3NpemU6MA0KbW9kdWxlX2ZvcmtfaW5fcHJvZ3Jlc3M6MA0KbW9kdWxlX2ZvcmtfbGFzdF9jb3dfc2l6ZTowDQoNCiMgU3RhdHMNCnRvdGFsX2Nvbm5lY3Rpb25zX3JlY2VpdmVkOjI4Ng0KdG90YWxfY29tbWFuZHNfcHJvY2Vzc2VkOjk0NDc4DQppbnN0YW50YW5lb3VzX29wc19wZXJfc2VjOjANCnRvdGFsX25ldF9pbnB1dF9ieXRlczo5MTYxNzkwDQp0b3RhbF9uZXRfb3V0cHV0X2J5dGVzOjE2MzgzMDUNCnRvdGFsX25ldF9yZXBsX2lucHV0X2J5dGVzOjANCnRvdGFsX25ldF9yZXBsX291dHB1dF9ieXRlczowDQppbnN0YW50YW5lb3VzX2lucHV0X2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19vdXRwdXRfa2JwczowLjAwDQppbnN0YW50YW5lb3VzX2lucHV0X3JlcGxfa2JwczowLjAwDQppbnN0YW50YW5lb3VzX291dHB1dF9yZXBsX2ticHM6MC4wMA0KcmVqZWN0ZWRfY29ubmVjdGlvbnM6MA0Kc3luY19mdWxsOjANCnN5bmNfcGFydGlhbF9vazowDQpzeW5jX3BhcnRpYWxfZXJyOjANCmV4cGlyZWRfa2V5czoyNDI2DQpleHBpcmVkX3N0YWxlX3BlcmM6MC4wMA0KZXhwaXJlZF90aW1lX2NhcF9yZWFjaGVkX2NvdW50OjANCmV4cGlyZV9jeWNsZV9jcHVfbWlsbGlzZWNvbmRzOjM2MjINCmV2aWN0ZWRfa2V5czowDQpldmljdGVkX2NsaWVudHM6MA0KdG90YWxfZXZpY3Rpb25fZXhjZWVkZWRfdGltZTowDQpjdXJyZW50X2V2aWN0aW9uX2V4Y2VlZGVkX3RpbWU6MA0Ka2V5c3BhY2VfaGl0czoxODY1Mg0Ka2V5c3BhY2VfbWlzc2VzOjI1MjIwDQpwdWJzdWJfY2hhbm5lbHM6MA0KcHVic3ViX3BhdHRlcm5zOjANCnB1YnN1YnNoYXJkX2NoYW5uZWxzOjANCmxhdGVzdF9mb3JrX3VzZWM6NTMwMg0KdG90YWxfZm9ya3M6NDANCm1pZ3JhdGVfY2FjaGVkX3NvY2tldHM6MA0Kc2xhdmVfZXhwaXJlc190cmFja2VkX2tleXM6MA0KYWN0aXZlX2RlZnJhZ19oaXRzOjANCmFjdGl2ZV9kZWZyYWdfbWlzc2VzOjANCmFjdGl2ZV9kZWZyYWdfa2V5X2hpdHM6MA0KYWN0aXZlX2RlZnJhZ19rZXlfbWlzc2VzOjANCnRvdGFsX2FjdGl2ZV9kZWZyYWdfdGltZTowDQpjdXJyZW50X2FjdGl2ZV9kZWZyYWdfdGltZTowDQp0cmFja2luZ190b3RhbF9rZXlzOjANCnRyYWNraW5nX3RvdGFsX2l0ZW1zOjANCnRyYWNraW5nX3RvdGFsX3ByZWZpeGVzOjANCnVuZXhwZWN0ZWRfZXJyb3JfcmVwbGllczowDQp0b3RhbF9lcnJvcl9yZXBsaWVzOjEwDQpkdW1wX3BheWxvYWRfc2FuaXRpemF0aW9uczowDQp0b3RhbF9yZWFkc19wcm9jZXNzZWQ6Mzk0MjQNCnRvdGFsX3dyaXRlc19wcm9jZXNzZWQ6NDgwNTgNCmlvX3RocmVhZGVkX3JlYWRzX3Byb2Nlc3NlZDowDQppb190aHJlYWRlZF93cml0ZXNfcHJvY2Vzc2VkOjANCnJlcGx5X2J1ZmZlcl9zaHJpbmtzOjI4NQ0KcmVwbHlfYnVmZmVyX2V4cGFuZHM6MA0KZXZlbnRsb29wX2N5Y2xlczo4NjU4NTYNCmV2ZW50bG9vcF9kdXJhdGlvbl9zdW06MjU4MjQ3NjA5DQpldmVudGxvb3BfZHVyYXRpb25fY21kX3N1bTo0MTMzOTI1DQppbnN0YW50YW5lb3VzX2V2ZW50bG9vcF9jeWNsZXNfcGVyX3NlYzo5DQppbnN0YW50YW5lb3VzX2V2ZW50bG9vcF9kdXJhdGlvbl91c2VjOjEwNQ0KYWNsX2FjY2Vzc19kZW5pZWRfYXV0aDowDQphY2xfYWNjZXNzX2RlbmllZF9jbWQ6MA0KYWNsX2FjY2Vzc19kZW5pZWRfa2V5OjANCmFjbF9hY2Nlc3NfZGVuaWVkX2NoYW5uZWw6MA0KDQojIFJlcGxpY2F0aW9uDQpyb2xlOm1hc3Rlcg0KY29ubmVjdGVkX3NsYXZlczowDQptYXN0ZXJfZmFpbG92ZXJfc3RhdGU6bm8tZmFpbG92ZXINCm1hc3Rlcl9yZXBsaWQ6ZGNjMThkZWY4N2I3Mzc2NzkzYjhhNDYyNmM0YmMyZGI4MDE1MDhmNg0KbWFzdGVyX3JlcGxpZDI6MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMA0KbWFzdGVyX3JlcGxfb2Zmc2V0OjANCnNlY29uZF9yZXBsX29mZnNldDotMQ0KcmVwbF9iYWNrbG9nX2FjdGl2ZTowDQpyZXBsX2JhY2tsb2dfc2l6ZToxMDQ4NTc2DQpyZXBsX2JhY2tsb2dfZmlyc3RfYnl0ZV9vZmZzZXQ6MA0KcmVwbF9iYWNrbG9nX2hpc3RsZW46MA0KDQojIENQVQ0KdXNlZF9jcHVfc3lzOjE1Ny4zNjY1MDINCnVzZWRfY3B1X3VzZXI6MTYyLjc0MDc4NQ0KdXNlZF9jcHVfc3lzX2NoaWxkcmVuOjAuMTU2MjkyDQp1c2VkX2NwdV91c2VyX2NoaWxkcmVuOjAuMDY0NTA3DQp1c2VkX2NwdV9zeXNfbWFpbl90aHJlYWQ6MTU3LjM0ODIwMA0KdXNlZF9jcHVfdXNlcl9tYWluX3RocmVhZDoxNjIuNzMyNzAxDQoNCiMgTW9kdWxlcw0KDQojIEVycm9yc3RhdHMNCmVycm9yc3RhdF9OT1NDUklQVDpjb3VudD0xMA0KDQojIENsdXN0ZXINCmNsdXN0ZXJfZW5hYmxlZDowDQoNCiMgS2V5c3BhY2UNCmRiMDprZXlzPTEwLGV4cGlyZXM9MixhdmdfdHRsPTEzOTk1DQoNCg== - reqtimestampmock: 2024-04-24T16:03:45.013886406+05:30 - restimestampmock: 2024-04-24T16:03:45.014529871+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-48 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzEzOTU0ODYwMTMzDQokMzYNCmY2YTg2Y2RmLWNhMzMtNDI0Zi1iNjIxLTk3NTFhZWZkYjcyNw0K - genericresponses: - - origin: server - message: - - type: binary - data: JC0xDQo= - reqtimestampmock: 2024-04-24T16:04:20.138030777+05:30 - restimestampmock: 2024-04-24T16:04:20.138130361+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-49 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzEzOTU0ODYwMTM1DQokMzYNCjI2YTU2NzI5LTNlNGQtNDg0MC1iZTYxLWRlMGNkMWRhMzI5ZA0K - genericresponses: - - origin: server - message: - - type: binary - data: JDE2DQo3MDIwNDc2MDA2NDAwMDI5DQo= - reqtimestampmock: 2024-04-24T16:04:20.138460698+05:30 - restimestampmock: 2024-04-24T16:04:20.13848774+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-50 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjINCiQ5DQpzdWJzY3JpYmUNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkZWxheWVkDQo= - genericresponses: - - origin: server - message: - - type: binary - data: KjMNCiQ5DQpzdWJzY3JpYmUNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkZWxheWVkDQo6MQ0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - - origin: server - message: - - type: binary - data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE3DQoxNzEzOTgzNDAwMDAwLjAwNw0K - reqtimestampmock: 2024-04-24T16:03:45.058255294+05:30 - restimestampmock: 2024-04-24T16:04:20.138454198+05:30 ---- -version: api.keploy.io/v1beta1 -kind: Generic -name: mock-51 -spec: - metadata: - type: config - genericrequests: - - origin: client - message: - - type: binary - data: KjINCiQ5DQpzdWJzY3JpYmUNCiQyNA0KYnVsbDpzY2hlZHVsZUpvYjpkZWxheWVkDQo= - genericresponses: - - origin: server - message: - - type: binary - data: KjMNCiQ5DQpzdWJzY3JpYmUNCiQyNA0KYnVsbDpzY2hlZHVsZUpvYjpkZWxheWVkDQo6MQ0K - reqtimestampmock: 2024-04-24T16:03:45.056382776+05:30 - restimestampmock: 2024-04-24T16:03:45.056532153+05:30 diff --git a/keploy/test-set-1/tests/test-1.yaml b/keploy/test-set-1/tests/test-1.yaml deleted file mode 100755 index 75bdf8a..0000000 --- a/keploy/test-set-1/tests/test-1.yaml +++ /dev/null @@ -1,86 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-1 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/ - header: - Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Cache-Control: max-age=0 - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: document - Sec-Fetch-Mode: navigate - Sec-Fetch-Site: same-origin - Sec-Fetch-User: ?1 - Sec-Gpc: "1" - Upgrade-Insecure-Requests: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.261977234+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 14.431ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.387275343+05:30 - objects: [] - assertions: - noise: - header.Date: [] - header.X-Response-Time: [] - created: 1713954837 -curl: | - curl --request GET \ - --url http://localhost:9000/api-docs/ \ - --header 'Host: localhost:9000' \ - --header 'Accept-Language: en-GB,en' \ - --header 'Sec-Fetch-Dest: document' \ - --header 'Sec-Fetch-User: ?1' \ - --header 'Accept-Encoding: gzip, deflate, br, zstd' \ - --header 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Upgrade-Insecure-Requests: 1' \ - --header 'Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde' \ - --header 'Sec-Gpc: 1' \ - --header 'Sec-Fetch-Mode: navigate' \ - --header 'If-None-Match: W/"c1e-DIPJhvJVWYBJ25bYfVw0j7PM8bo"' \ - --header 'Sec-Fetch-Site: same-origin' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Ch-Ua: "Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' \ - --header 'Cache-Control: max-age=0' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \ diff --git a/keploy/test-set-1/tests/test-2.yaml b/keploy/test-set-1/tests/test-2.yaml deleted file mode 100755 index d1f3c03..0000000 --- a/keploy/test-set-1/tests/test-2.yaml +++ /dev/null @@ -1,86 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-2 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui.css - header: - Accept: text/css,*/*;q=0.1 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"2326c-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: style - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325022626+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"2326c-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.655ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488659266+05:30 - objects: [] - assertions: - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - created: 1713954837 -curl: | - curl --request GET \ - --url http://localhost:9000/api-docs/swagger-ui.css \ - --header 'Accept-Language: en-GB,en' \ - --header 'Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde' \ - --header 'Accept: text/css,*/*;q=0.1' \ - --header 'Host: localhost:9000' \ - --header 'If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Fetch-Dest: style' \ - --header 'Sec-Fetch-Mode: no-cors' \ - --header 'If-None-Match: W/"2326c-18ef5d16688"' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Accept-Encoding: gzip, deflate, br, zstd' \ - --header 'Sec-Ch-Ua: "Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Fetch-Site: same-origin' \ - --header 'Sec-Gpc: 1' \ diff --git a/keploy/test-set-1/tests/test-3.yaml b/keploy/test-set-1/tests/test-3.yaml deleted file mode 100755 index 4f332b3..0000000 --- a/keploy/test-set-1/tests/test-3.yaml +++ /dev/null @@ -1,86 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-3 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-standalone-preset.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"52e54-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.325877884+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"52e54-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.168ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:57.488826976+05:30 - objects: [] - assertions: - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - created: 1713954837 -curl: | - curl --request GET \ - --url http://localhost:9000/api-docs/swagger-ui-standalone-preset.js \ - --header 'Sec-Fetch-Mode: no-cors' \ - --header 'If-None-Match: W/"52e54-18ef5d16688"' \ - --header 'Sec-Fetch-Dest: script' \ - --header 'Connection: keep-alive' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Host: localhost:9000' \ - --header 'If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT' \ - --header 'Sec-Ch-Ua: "Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' \ - --header 'Sec-Fetch-Site: same-origin' \ - --header 'Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde' \ - --header 'Accept-Encoding: gzip, deflate, br, zstd' \ - --header 'Accept: */*' \ - --header 'Sec-Gpc: 1' \ - --header 'Accept-Language: en-GB,en' \ diff --git a/keploy/test-set-1/tests/test-4.yaml b/keploy/test-set-1/tests/test-4.yaml deleted file mode 100755 index 3a03281..0000000 --- a/keploy/test-set-1/tests/test-4.yaml +++ /dev/null @@ -1,86 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-4 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-bundle.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"10b5da-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.321523467+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"10b5da-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.660ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516407031+05:30 - objects: [] - assertions: - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - created: 1713954839 -curl: | - curl --request GET \ - --url http://localhost:9000/api-docs/swagger-ui-bundle.js \ - --header 'Connection: keep-alive' \ - --header 'Sec-Fetch-Site: same-origin' \ - --header 'Sec-Ch-Ua: "Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' \ - --header 'Accept-Encoding: gzip, deflate, br, zstd' \ - --header 'If-None-Match: W/"10b5da-18ef5d16688"' \ - --header 'Accept-Language: en-GB,en' \ - --header 'Host: localhost:9000' \ - --header 'Accept: */*' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \ - --header 'Sec-Fetch-Dest: script' \ - --header 'If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT' \ - --header 'Sec-Gpc: 1' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Fetch-Mode: no-cors' \ - --header 'Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde' \ diff --git a/keploy/test-set-1/tests/test-5.yaml b/keploy/test-set-1/tests/test-5.yaml deleted file mode 100755 index 3766e05..0000000 --- a/keploy/test-set-1/tests/test-5.yaml +++ /dev/null @@ -1,86 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-5 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/favicon-32x32.png - header: - Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT - If-None-Match: W/"274-18ef5d16688" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: image - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.407348659+05:30 - resp: - status_code: 304 - header: - Accept-Ranges: bytes - Access-Control-Allow-Origin: '*' - Cache-Control: public, max-age=0 - Connection: keep-alive - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"274-18ef5d16688" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Last-Modified: Fri, 19 Apr 2024 10:05:25 GMT - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 2.335ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.516996661+05:30 - objects: [] - assertions: - noise: - header.Cache-Control: [] - header.Date: [] - header.Last-Modified: [] - header.X-Response-Time: [] - created: 1713954839 -curl: | - curl --request GET \ - --url http://localhost:9000/api-docs/favicon-32x32.png \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Fetch-Dest: image' \ - --header 'Sec-Fetch-Site: same-origin' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Ch-Ua: "Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' \ - --header 'Sec-Fetch-Mode: no-cors' \ - --header 'Accept-Encoding: gzip, deflate, br, zstd' \ - --header 'If-Modified-Since: Fri, 19 Apr 2024 10:05:25 GMT' \ - --header 'Host: localhost:9000' \ - --header 'Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde' \ - --header 'Sec-Gpc: 1' \ - --header 'Accept-Language: en-GB,en' \ - --header 'If-None-Match: W/"274-18ef5d16688"' \ - --header 'Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8' \ diff --git a/keploy/test-set-1/tests/test-6.yaml b/keploy/test-set-1/tests/test-6.yaml deleted file mode 100755 index 03ca8d3..0000000 --- a/keploy/test-set-1/tests/test-6.yaml +++ /dev/null @@ -1,80 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-6 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger.json - header: - Accept: application/json,*/* - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: empty - Sec-Fetch-Mode: cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.408256084+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.995ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517101329+05:30 - objects: [] - assertions: - noise: - header.Date: [] - header.X-Response-Time: [] - created: 1713954839 -curl: | - curl --request GET \ - --url http://localhost:9000/api-docs/swagger.json \ - --header 'Sec-Fetch-Dest: empty' \ - --header 'Accept: application/json,*/*' \ - --header 'Accept-Language: en-GB,en' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Sec-Fetch-Mode: cors' \ - --header 'Host: localhost:9000' \ - --header 'Accept-Encoding: gzip, deflate, br, zstd' \ - --header 'Sec-Ch-Ua: "Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' \ - --header 'Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde' \ - --header 'Sec-Fetch-Site: same-origin' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \ - --header 'If-None-Match: W/"8bcb-yln9nVsGDdLcRQeegjU1fNdWKQU"' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Sec-Gpc: 1' \ - --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-1/tests/test-7.yaml b/keploy/test-set-1/tests/test-7.yaml deleted file mode 100755 index c95c016..0000000 --- a/keploy/test-set-1/tests/test-7.yaml +++ /dev/null @@ -1,80 +0,0 @@ -version: api.keploy.io/v1beta1 -kind: Http -name: test-7 -spec: - metadata: {} - req: - method: GET - proto_major: 1 - proto_minor: 1 - url: http://localhost:9000/api-docs/swagger-ui-init.js - header: - Accept: '*/*' - Accept-Encoding: gzip, deflate, br, zstd - Accept-Language: en-GB,en - Connection: keep-alive - Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde - Host: localhost:9000 - If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Sec-Ch-Ua: '"Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' - Sec-Ch-Ua-Mobile: ?0 - Sec-Ch-Ua-Platform: '"macOS"' - Sec-Fetch-Dest: script - Sec-Fetch-Mode: no-cors - Sec-Fetch-Site: same-origin - Sec-Gpc: "1" - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 - body: "" - timestamp: 2024-04-24T16:03:57.326708058+05:30 - resp: - status_code: 304 - header: - Access-Control-Allow-Origin: '*' - Connection: keep-alive - Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' - Cross-Origin-Embedder-Policy: require-corp - Cross-Origin-Opener-Policy: same-origin - Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:33:57 GMT - Etag: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE" - Expect-Ct: max-age=0 - Keep-Alive: timeout=5 - Origin-Agent-Cluster: ?1 - Referrer-Policy: no-referrer - Strict-Transport-Security: max-age=15552000; includeSubDomains - X-Content-Type-Options: nosniff - X-Dns-Prefetch-Control: "off" - X-Download-Options: noopen - X-Frame-Options: SAMEORIGIN - X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 0.347ms - X-Xss-Protection: "0" - body: "" - status_message: Not Modified - proto_major: 0 - proto_minor: 0 - timestamp: 2024-04-24T16:03:59.517195163+05:30 - objects: [] - assertions: - noise: - header.Date: [] - header.X-Response-Time: [] - created: 1713954839 -curl: | - curl --request GET \ - --url http://localhost:9000/api-docs/swagger-ui-init.js \ - --header 'Accept-Encoding: gzip, deflate, br, zstd' \ - --header 'Connection: keep-alive' \ - --header 'Sec-Gpc: 1' \ - --header 'Sec-Fetch-Mode: no-cors' \ - --header 'If-None-Match: W/"457-hbWx8WxlIjUUc416hKA3Rw8LYVE"' \ - --header 'Accept: */*' \ - --header 'Sec-Ch-Ua: "Chromium";v="124", "Brave";v="124", "Not-A.Brand";v="99"' \ - --header 'Accept-Language: en-GB,en' \ - --header 'Sec-Fetch-Dest: script' \ - --header 'Sec-Ch-Ua-Platform: "macOS"' \ - --header 'Cookie: csrftoken=5w8RtIXw5M4ixBeXNqB6wphbStVCywde' \ - --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' \ - --header 'Sec-Ch-Ua-Mobile: ?0' \ - --header 'Host: localhost:9000' \ - --header 'Sec-Fetch-Site: same-origin' \ diff --git a/keploy/test-set-2/mocks.yaml b/keploy/test-set-2/mocks.yaml new file mode 100755 index 0000000..5b33eb6 --- /dev/null +++ b/keploy/test-set-2/mocks.yaml @@ -0,0 +1,1717 @@ +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-0 +spec: + metadata: + operation: '{ OpQuery flags: [SecondaryOK], fullCollectionName: admin.$cmd, numberToSkip: 0, numberToReturn: -1, query: {"ismaster": true,"helloOk": true,"client": {"driver": {"name": "nodejs|Mongoose","version": "4.3.1"},"os": {"type": "Linux","name": "linux","architecture": "arm64","version": "6.5.0-27-generic"},"platform": "Node.js v16.20.2, LE (unified)","version": "4.3.1|6.2.4"},"compression": ["none"],"loadBalanced": false}, returnFieldsSelector: }' + type: config + requests: + - header: + length: 346 + requestId: 1 + responseTo: 0 + Opcode: 2004 + message: + flags: 4 + collection_name: admin.$cmd + number_to_skip: 0 + number_to_return: -1 + query: '{"ismaster":true,"helloOk":true,"client":{"driver":{"name":"nodejs|Mongoose","version":"4.3.1"},"os":{"type":"Linux","name":"linux","architecture":"arm64","version":"6.5.0-27-generic"},"platform":"Node.js v16.20.2, LE (unified)","version":"4.3.1|6.2.4"},"compression":["none"],"loadBalanced":false}' + return_fields_selector: "" + responses: + - header: + length: 329 + requestId: 3 + responseTo: 1 + Opcode: 1 + message: + response_flags: 8 + cursor_id: 0 + starting_from: 0 + number_returned: 1 + documents: + - '{"helloOk":true,"ismaster":true,"topologyVersion":{"processId":{"$oid":"664313dc9432be834de47e72"},"counter":{"$numberLong":"0"}},"maxBsonObjectSize":{"$numberInt":"16777216"},"maxMessageSizeBytes":{"$numberInt":"48000000"},"maxWriteBatchSize":{"$numberInt":"100000"},"localTime":{"$date":{"$numberLong":"1715672031742"}},"logicalSessionTimeoutMinutes":{"$numberInt":"30"},"connectionId":{"$numberInt":"1"},"minWireVersion":{"$numberInt":"0"},"maxWireVersion":{"$numberInt":"21"},"readOnly":false,"ok":{"$numberDouble":"1.0"}}' + read_delay: 1039492 + created: 1715672031 + reqTimestampMock: 2024-05-14T13:03:51.741232254+05:30 + resTimestampMock: 2024-05-14T13:03:51.742372412+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-1 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"create":"products","lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce"} }], checksum: 0 }' + requests: + - header: + length: 102 + requestId: 3 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"create":"products","lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce"} }' + checksum: 0 + read_delay: 2153900 + responses: + - header: + length: 38 + requestId: 5 + responseTo: 3 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 283623 + created: 1715672031 + reqTimestampMock: 2024-05-14T13:03:51.776344197+05:30 + resTimestampMock: 2024-05-14T13:03:51.776700278+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-2 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjENCiQ0DQppbmZvDQo= + genericresponses: + - origin: server + message: + - type: binary + data: JDUyNzcNCiMgU2VydmVyDQpyZWRpc192ZXJzaW9uOjcuMi40DQpyZWRpc19naXRfc2hhMTowMDAwMDAwMA0KcmVkaXNfZ2l0X2RpcnR5OjANCnJlZGlzX2J1aWxkX2lkOjdkM2NhOTlkZGU2YjU2YzYNCnJlZGlzX21vZGU6c3RhbmRhbG9uZQ0Kb3M6TGludXggNi41LjAtMjctZ2VuZXJpYyBhYXJjaDY0DQphcmNoX2JpdHM6NjQNCm1vbm90b25pY19jbG9jazpQT1NJWCBjbG9ja19nZXR0aW1lDQptdWx0aXBsZXhpbmdfYXBpOmVwb2xsDQphdG9taWN2YXJfYXBpOmMxMS1idWlsdGluDQpnY2NfdmVyc2lvbjoxMy4yLjENCnByb2Nlc3NfaWQ6MQ0KcHJvY2Vzc19zdXBlcnZpc2VkOm5vDQpydW5faWQ6YTI4Y2U5YTViMmRjMWY4ZTY1MjM2M2MzYTIyYWQ5NzQ1YmI4Yjk4OA0KdGNwX3BvcnQ6NjM3OQ0Kc2VydmVyX3RpbWVfdXNlYzoxNzE1NjcyMDMxNzQxNTgxDQp1cHRpbWVfaW5fc2Vjb25kczozDQp1cHRpbWVfaW5fZGF5czowDQpoejoxMA0KY29uZmlndXJlZF9oejoxMA0KbHJ1X2Nsb2NrOjQzOTU5OTkNCmV4ZWN1dGFibGU6L2RhdGEvcmVkaXMtc2VydmVyDQpjb25maWdfZmlsZToNCmlvX3RocmVhZHNfYWN0aXZlOjANCmxpc3RlbmVyMDpuYW1lPXRjcCxiaW5kPXJlZGlzLHBvcnQ9NjM3OQ0KDQojIENsaWVudHMNCmNvbm5lY3RlZF9jbGllbnRzOjMNCmNsdXN0ZXJfY29ubmVjdGlvbnM6MA0KbWF4Y2xpZW50czoxMDAwMA0KY2xpZW50X3JlY2VudF9tYXhfaW5wdXRfYnVmZmVyOjANCmNsaWVudF9yZWNlbnRfbWF4X291dHB1dF9idWZmZXI6MA0KYmxvY2tlZF9jbGllbnRzOjANCnRyYWNraW5nX2NsaWVudHM6MA0KY2xpZW50c19pbl90aW1lb3V0X3RhYmxlOjANCnRvdGFsX2Jsb2NraW5nX2tleXM6MA0KdG90YWxfYmxvY2tpbmdfa2V5c19vbl9ub2tleTowDQoNCiMgTWVtb3J5DQp1c2VkX21lbW9yeToxMDQ1MTY4DQp1c2VkX21lbW9yeV9odW1hbjoxMDIwLjY3Sw0KdXNlZF9tZW1vcnlfcnNzOjgyNTc1MzYNCnVzZWRfbWVtb3J5X3Jzc19odW1hbjo3Ljg4TQ0KdXNlZF9tZW1vcnlfcGVhazoxMDQ1MTY4DQp1c2VkX21lbW9yeV9wZWFrX2h1bWFuOjEwMjAuNjdLDQp1c2VkX21lbW9yeV9wZWFrX3BlcmM6MTAyLjE4JQ0KdXNlZF9tZW1vcnlfb3ZlcmhlYWQ6ODk5MjY0DQp1c2VkX21lbW9yeV9zdGFydHVwOjg5ODYwMA0KdXNlZF9tZW1vcnlfZGF0YXNldDoxNDU5MDQNCnVzZWRfbWVtb3J5X2RhdGFzZXRfcGVyYzo5OS41NSUNCmFsbG9jYXRvcl9hbGxvY2F0ZWQ6MjIxNDI0MA0KYWxsb2NhdG9yX2FjdGl2ZTo3MjA4OTYwDQphbGxvY2F0b3JfcmVzaWRlbnQ6ODc4MTgyNA0KdG90YWxfc3lzdGVtX21lbW9yeTo0MDkzOTUyMDAwDQp0b3RhbF9zeXN0ZW1fbWVtb3J5X2h1bWFuOjMuODFHDQp1c2VkX21lbW9yeV9sdWE6MzE3NDQNCnVzZWRfbWVtb3J5X3ZtX2V2YWw6MzE3NDQNCnVzZWRfbWVtb3J5X2x1YV9odW1hbjozMS4wMEsNCnVzZWRfbWVtb3J5X3NjcmlwdHNfZXZhbDowDQpudW1iZXJfb2ZfY2FjaGVkX3NjcmlwdHM6MA0KbnVtYmVyX29mX2Z1bmN0aW9uczowDQpudW1iZXJfb2ZfbGlicmFyaWVzOjANCnVzZWRfbWVtb3J5X3ZtX2Z1bmN0aW9uczozMjc2OA0KdXNlZF9tZW1vcnlfdm1fdG90YWw6NjQ1MTINCnVzZWRfbWVtb3J5X3ZtX3RvdGFsX2h1bWFuOjYzLjAwSw0KdXNlZF9tZW1vcnlfZnVuY3Rpb25zOjE4NA0KdXNlZF9tZW1vcnlfc2NyaXB0czoxODQNCnVzZWRfbWVtb3J5X3NjcmlwdHNfaHVtYW46MTg0Qg0KbWF4bWVtb3J5OjANCm1heG1lbW9yeV9odW1hbjowQg0KbWF4bWVtb3J5X3BvbGljeTpub2V2aWN0aW9uDQphbGxvY2F0b3JfZnJhZ19yYXRpbzozLjI2DQphbGxvY2F0b3JfZnJhZ19ieXRlczo0OTk0NzIwDQphbGxvY2F0b3JfcnNzX3JhdGlvOjEuMjINCmFsbG9jYXRvcl9yc3NfYnl0ZXM6MTU3Mjg2NA0KcnNzX292ZXJoZWFkX3JhdGlvOjAuOTQNCnJzc19vdmVyaGVhZF9ieXRlczotNTI0Mjg4DQptZW1fZnJhZ21lbnRhdGlvbl9yYXRpbzo5LjE0DQptZW1fZnJhZ21lbnRhdGlvbl9ieXRlczo3MzU0MDcyDQptZW1fbm90X2NvdW50ZWRfZm9yX2V2aWN0OjANCm1lbV9yZXBsaWNhdGlvbl9iYWNrbG9nOjANCm1lbV90b3RhbF9yZXBsaWNhdGlvbl9idWZmZXJzOjANCm1lbV9jbGllbnRzX3NsYXZlczowDQptZW1fY2xpZW50c19ub3JtYWw6MA0KbWVtX2NsdXN0ZXJfbGlua3M6MA0KbWVtX2FvZl9idWZmZXI6MA0KbWVtX2FsbG9jYXRvcjpqZW1hbGxvYy01LjMuMA0KYWN0aXZlX2RlZnJhZ19ydW5uaW5nOjANCmxhenlmcmVlX3BlbmRpbmdfb2JqZWN0czowDQpsYXp5ZnJlZWRfb2JqZWN0czowDQoNCiMgUGVyc2lzdGVuY2UNCmxvYWRpbmc6MA0KYXN5bmNfbG9hZGluZzowDQpjdXJyZW50X2Nvd19wZWFrOjANCmN1cnJlbnRfY293X3NpemU6MA0KY3VycmVudF9jb3dfc2l6ZV9hZ2U6MA0KY3VycmVudF9mb3JrX3BlcmM6MC4wMA0KY3VycmVudF9zYXZlX2tleXNfcHJvY2Vzc2VkOjANCmN1cnJlbnRfc2F2ZV9rZXlzX3RvdGFsOjANCnJkYl9jaGFuZ2VzX3NpbmNlX2xhc3Rfc2F2ZTowDQpyZGJfYmdzYXZlX2luX3Byb2dyZXNzOjANCnJkYl9sYXN0X3NhdmVfdGltZToxNzE1NjcyMDI4DQpyZGJfbGFzdF9iZ3NhdmVfc3RhdHVzOm9rDQpyZGJfbGFzdF9iZ3NhdmVfdGltZV9zZWM6LTENCnJkYl9jdXJyZW50X2Jnc2F2ZV90aW1lX3NlYzotMQ0KcmRiX3NhdmVzOjANCnJkYl9sYXN0X2Nvd19zaXplOjANCnJkYl9sYXN0X2xvYWRfa2V5c19leHBpcmVkOjINCnJkYl9sYXN0X2xvYWRfa2V5c19sb2FkZWQ6OA0KYW9mX2VuYWJsZWQ6MA0KYW9mX3Jld3JpdGVfaW5fcHJvZ3Jlc3M6MA0KYW9mX3Jld3JpdGVfc2NoZWR1bGVkOjANCmFvZl9sYXN0X3Jld3JpdGVfdGltZV9zZWM6LTENCmFvZl9jdXJyZW50X3Jld3JpdGVfdGltZV9zZWM6LTENCmFvZl9sYXN0X2JncmV3cml0ZV9zdGF0dXM6b2sNCmFvZl9yZXdyaXRlczowDQphb2ZfcmV3cml0ZXNfY29uc2VjdXRpdmVfZmFpbHVyZXM6MA0KYW9mX2xhc3Rfd3JpdGVfc3RhdHVzOm9rDQphb2ZfbGFzdF9jb3dfc2l6ZTowDQptb2R1bGVfZm9ya19pbl9wcm9ncmVzczowDQptb2R1bGVfZm9ya19sYXN0X2Nvd19zaXplOjANCg0KIyBTdGF0cw0KdG90YWxfY29ubmVjdGlvbnNfcmVjZWl2ZWQ6Mw0KdG90YWxfY29tbWFuZHNfcHJvY2Vzc2VkOjINCmluc3RhbnRhbmVvdXNfb3BzX3Blcl9zZWM6MA0KdG90YWxfbmV0X2lucHV0X2J5dGVzOjQyDQp0b3RhbF9uZXRfb3V0cHV0X2J5dGVzOjEwNTU4DQp0b3RhbF9uZXRfcmVwbF9pbnB1dF9ieXRlczowDQp0b3RhbF9uZXRfcmVwbF9vdXRwdXRfYnl0ZXM6MA0KaW5zdGFudGFuZW91c19pbnB1dF9rYnBzOjAuMDANCmluc3RhbnRhbmVvdXNfb3V0cHV0X2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19pbnB1dF9yZXBsX2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19vdXRwdXRfcmVwbF9rYnBzOjAuMDANCnJlamVjdGVkX2Nvbm5lY3Rpb25zOjANCnN5bmNfZnVsbDowDQpzeW5jX3BhcnRpYWxfb2s6MA0Kc3luY19wYXJ0aWFsX2VycjowDQpleHBpcmVkX2tleXM6MA0KZXhwaXJlZF9zdGFsZV9wZXJjOjAuMDANCmV4cGlyZWRfdGltZV9jYXBfcmVhY2hlZF9jb3VudDowDQpleHBpcmVfY3ljbGVfY3B1X21pbGxpc2Vjb25kczowDQpldmljdGVkX2tleXM6MA0KZXZpY3RlZF9jbGllbnRzOjANCnRvdGFsX2V2aWN0aW9uX2V4Y2VlZGVkX3RpbWU6MA0KY3VycmVudF9ldmljdGlvbl9leGNlZWRlZF90aW1lOjANCmtleXNwYWNlX2hpdHM6MA0Ka2V5c3BhY2VfbWlzc2VzOjANCnB1YnN1Yl9jaGFubmVsczowDQpwdWJzdWJfcGF0dGVybnM6MA0KcHVic3Vic2hhcmRfY2hhbm5lbHM6MA0KbGF0ZXN0X2ZvcmtfdXNlYzowDQp0b3RhbF9mb3JrczowDQptaWdyYXRlX2NhY2hlZF9zb2NrZXRzOjANCnNsYXZlX2V4cGlyZXNfdHJhY2tlZF9rZXlzOjANCmFjdGl2ZV9kZWZyYWdfaGl0czowDQphY3RpdmVfZGVmcmFnX21pc3NlczowDQphY3RpdmVfZGVmcmFnX2tleV9oaXRzOjANCmFjdGl2ZV9kZWZyYWdfa2V5X21pc3NlczowDQp0b3RhbF9hY3RpdmVfZGVmcmFnX3RpbWU6MA0KY3VycmVudF9hY3RpdmVfZGVmcmFnX3RpbWU6MA0KdHJhY2tpbmdfdG90YWxfa2V5czowDQp0cmFja2luZ190b3RhbF9pdGVtczowDQp0cmFja2luZ190b3RhbF9wcmVmaXhlczowDQp1bmV4cGVjdGVkX2Vycm9yX3JlcGxpZXM6MA0KdG90YWxfZXJyb3JfcmVwbGllczowDQpkdW1wX3BheWxvYWRfc2FuaXRpemF0aW9uczowDQp0b3RhbF9yZWFkc19wcm9jZXNzZWQ6Mw0KdG90YWxfd3JpdGVzX3Byb2Nlc3NlZDoyDQppb190aHJlYWRlZF9yZWFkc19wcm9jZXNzZWQ6MA0KaW9fdGhyZWFkZWRfd3JpdGVzX3Byb2Nlc3NlZDowDQpyZXBseV9idWZmZXJfc2hyaW5rczowDQpyZXBseV9idWZmZXJfZXhwYW5kczowDQpldmVudGxvb3BfY3ljbGVzOjQwDQpldmVudGxvb3BfZHVyYXRpb25fc3VtOjM1MzMNCmV2ZW50bG9vcF9kdXJhdGlvbl9jbWRfc3VtOjEyOA0KaW5zdGFudGFuZW91c19ldmVudGxvb3BfY3ljbGVzX3Blcl9zZWM6OQ0KaW5zdGFudGFuZW91c19ldmVudGxvb3BfZHVyYXRpb25fdXNlYzo4MQ0KYWNsX2FjY2Vzc19kZW5pZWRfYXV0aDowDQphY2xfYWNjZXNzX2RlbmllZF9jbWQ6MA0KYWNsX2FjY2Vzc19kZW5pZWRfa2V5OjANCmFjbF9hY2Nlc3NfZGVuaWVkX2NoYW5uZWw6MA0KDQojIFJlcGxpY2F0aW9uDQpyb2xlOm1hc3Rlcg0KY29ubmVjdGVkX3NsYXZlczowDQptYXN0ZXJfZmFpbG92ZXJfc3RhdGU6bm8tZmFpbG92ZXINCm1hc3Rlcl9yZXBsaWQ6ZTdiYjRiYTU1ZWUyNmMxODk4MDhmOWY4YjNiZDQ2OTJlYWU4MjNjMg0KbWFzdGVyX3JlcGxpZDI6MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMA0KbWFzdGVyX3JlcGxfb2Zmc2V0OjEyNg0Kc2Vjb25kX3JlcGxfb2Zmc2V0Oi0xDQpyZXBsX2JhY2tsb2dfYWN0aXZlOjANCnJlcGxfYmFja2xvZ19zaXplOjEwNDg1NzYNCnJlcGxfYmFja2xvZ19maXJzdF9ieXRlX29mZnNldDowDQpyZXBsX2JhY2tsb2dfaGlzdGxlbjowDQoNCiMgQ1BVDQp1c2VkX2NwdV9zeXM6MC4wMzM3NTkNCnVzZWRfY3B1X3VzZXI6MC4wMDQyMzQNCnVzZWRfY3B1X3N5c19jaGlsZHJlbjowLjAwMDAwMA0KdXNlZF9jcHVfdXNlcl9jaGlsZHJlbjowLjAwMjY1Mg0KdXNlZF9jcHVfc3lzX21haW5fdGhyZWFkOjAuMDI5NTcyDQp1c2VkX2NwdV91c2VyX21haW5fdGhyZWFkOjAuMDA0MjI0DQoNCiMgTW9kdWxlcw0KDQojIEVycm9yc3RhdHMNCg0KIyBDbHVzdGVyDQpjbHVzdGVyX2VuYWJsZWQ6MA0KDQojIEtleXNwYWNlDQpkYjA6a2V5cz04LGV4cGlyZXM9MCxhdmdfdHRsPTANCg0K + reqtimestampmock: 2024-05-14T13:03:51.809560405+05:30 + restimestampmock: 2024-05-14T13:03:51.809579197+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-3 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQ0DQp6YWRkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cmVwZWF0DQokMTMNCjE3MTU3MTE0MDAwMDANCiQyNA0KX19kZWZhdWx0X186Ojo6MCAwICogKiAqDQo= + genericresponses: + - origin: server + message: + - type: binary + data: OjANCg== + reqtimestampmock: 2024-05-14T13:03:51.809560405+05:30 + restimestampmock: 2024-05-14T13:03:51.809579197+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-4 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjIwDQokNw0KZXZhbHNoYQ0KJDQwDQo4ZjU1YWU0YTNiZTQyOWM2ZDM4YzVkNWRiM2U4MGVkZjg5MTk3YjY0DQokMQ0KNg0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIyDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmlkDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDI4DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnByaW9yaXR5DQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokNTMNCnJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzE1NzExNDAwMDAwDQokMTENCl9fZGVmYXVsdF9fDQokMg0Ke30NCiQyMjENCnsicmVwZWF0Ijp7ImNvdW50IjoxLCJrZXkiOiJfX2RlZmF1bHRfXzo6OjowIDAgKiAqICoiLCJjcm9uIjoiMCAwICogKiAqIn0sImpvYklkIjoicmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTU3MTE0MDAwMDAiLCJkZWxheSI6MzkzNjgxOTEsInRpbWVzdGFtcCI6MTcxNTY3MjAzMTgwOSwicHJldk1pbGxpcyI6MTcxNTcxMTQwMDAwMCwiYXR0ZW1wdHMiOjF9DQokMTMNCjE3MTU2NzIwMzE4MDkNCiQ4DQozOTM2ODE5MQ0KJDEzDQoxNzE1NzExNDAwMDAwDQokMQ0KMA0KJDUNCkxQVVNIDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: LU5PU0NSSVBUIE5vIG1hdGNoaW5nIHNjcmlwdC4gUGxlYXNlIHVzZSBFVkFMLg0K + reqtimestampmock: 2024-05-14T13:03:51.81203872+05:30 + restimestampmock: 2024-05-14T13:03:51.812050803+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-5 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjENCiQ0DQppbmZvDQo= + genericresponses: + - origin: server + message: + - type: binary + data: JDUyNzQNCiMgU2VydmVyDQpyZWRpc192ZXJzaW9uOjcuMi40DQpyZWRpc19naXRfc2hhMTowMDAwMDAwMA0KcmVkaXNfZ2l0X2RpcnR5OjANCnJlZGlzX2J1aWxkX2lkOjdkM2NhOTlkZGU2YjU2YzYNCnJlZGlzX21vZGU6c3RhbmRhbG9uZQ0Kb3M6TGludXggNi41LjAtMjctZ2VuZXJpYyBhYXJjaDY0DQphcmNoX2JpdHM6NjQNCm1vbm90b25pY19jbG9jazpQT1NJWCBjbG9ja19nZXR0aW1lDQptdWx0aXBsZXhpbmdfYXBpOmVwb2xsDQphdG9taWN2YXJfYXBpOmMxMS1idWlsdGluDQpnY2NfdmVyc2lvbjoxMy4yLjENCnByb2Nlc3NfaWQ6MQ0KcHJvY2Vzc19zdXBlcnZpc2VkOm5vDQpydW5faWQ6YTI4Y2U5YTViMmRjMWY4ZTY1MjM2M2MzYTIyYWQ5NzQ1YmI4Yjk4OA0KdGNwX3BvcnQ6NjM3OQ0Kc2VydmVyX3RpbWVfdXNlYzoxNzE1NjcyMDMxNzQwNzQ1DQp1cHRpbWVfaW5fc2Vjb25kczozDQp1cHRpbWVfaW5fZGF5czowDQpoejoxMA0KY29uZmlndXJlZF9oejoxMA0KbHJ1X2Nsb2NrOjQzOTU5OTkNCmV4ZWN1dGFibGU6L2RhdGEvcmVkaXMtc2VydmVyDQpjb25maWdfZmlsZToNCmlvX3RocmVhZHNfYWN0aXZlOjANCmxpc3RlbmVyMDpuYW1lPXRjcCxiaW5kPXJlZGlzLHBvcnQ9NjM3OQ0KDQojIENsaWVudHMNCmNvbm5lY3RlZF9jbGllbnRzOjINCmNsdXN0ZXJfY29ubmVjdGlvbnM6MA0KbWF4Y2xpZW50czoxMDAwMA0KY2xpZW50X3JlY2VudF9tYXhfaW5wdXRfYnVmZmVyOjANCmNsaWVudF9yZWNlbnRfbWF4X291dHB1dF9idWZmZXI6MA0KYmxvY2tlZF9jbGllbnRzOjANCnRyYWNraW5nX2NsaWVudHM6MA0KY2xpZW50c19pbl90aW1lb3V0X3RhYmxlOjANCnRvdGFsX2Jsb2NraW5nX2tleXM6MA0KdG90YWxfYmxvY2tpbmdfa2V5c19vbl9ub2tleTowDQoNCiMgTWVtb3J5DQp1c2VkX21lbW9yeToxMDA2OTc2DQp1c2VkX21lbW9yeV9odW1hbjo5ODMuMzhLDQp1c2VkX21lbW9yeV9yc3M6ODI1NzUzNg0KdXNlZF9tZW1vcnlfcnNzX2h1bWFuOjcuODhNDQp1c2VkX21lbW9yeV9wZWFrOjEwMDY5NzYNCnVzZWRfbWVtb3J5X3BlYWtfaHVtYW46OTgzLjM4Sw0KdXNlZF9tZW1vcnlfcGVha19wZXJjOjEwMi4yNiUNCnVzZWRfbWVtb3J5X292ZXJoZWFkOjg5OTI2NA0KdXNlZF9tZW1vcnlfc3RhcnR1cDo4OTg2MDANCnVzZWRfbWVtb3J5X2RhdGFzZXQ6MTA3NzEyDQp1c2VkX21lbW9yeV9kYXRhc2V0X3BlcmM6OTkuMzklDQphbGxvY2F0b3JfYWxsb2NhdGVkOjIyMTQyNDANCmFsbG9jYXRvcl9hY3RpdmU6NzIwODk2MA0KYWxsb2NhdG9yX3Jlc2lkZW50Ojg3ODE4MjQNCnRvdGFsX3N5c3RlbV9tZW1vcnk6NDA5Mzk1MjAwMA0KdG90YWxfc3lzdGVtX21lbW9yeV9odW1hbjozLjgxRw0KdXNlZF9tZW1vcnlfbHVhOjMxNzQ0DQp1c2VkX21lbW9yeV92bV9ldmFsOjMxNzQ0DQp1c2VkX21lbW9yeV9sdWFfaHVtYW46MzEuMDBLDQp1c2VkX21lbW9yeV9zY3JpcHRzX2V2YWw6MA0KbnVtYmVyX29mX2NhY2hlZF9zY3JpcHRzOjANCm51bWJlcl9vZl9mdW5jdGlvbnM6MA0KbnVtYmVyX29mX2xpYnJhcmllczowDQp1c2VkX21lbW9yeV92bV9mdW5jdGlvbnM6MzI3NjgNCnVzZWRfbWVtb3J5X3ZtX3RvdGFsOjY0NTEyDQp1c2VkX21lbW9yeV92bV90b3RhbF9odW1hbjo2My4wMEsNCnVzZWRfbWVtb3J5X2Z1bmN0aW9uczoxODQNCnVzZWRfbWVtb3J5X3NjcmlwdHM6MTg0DQp1c2VkX21lbW9yeV9zY3JpcHRzX2h1bWFuOjE4NEINCm1heG1lbW9yeTowDQptYXhtZW1vcnlfaHVtYW46MEINCm1heG1lbW9yeV9wb2xpY3k6bm9ldmljdGlvbg0KYWxsb2NhdG9yX2ZyYWdfcmF0aW86My4yNg0KYWxsb2NhdG9yX2ZyYWdfYnl0ZXM6NDk5NDcyMA0KYWxsb2NhdG9yX3Jzc19yYXRpbzoxLjIyDQphbGxvY2F0b3JfcnNzX2J5dGVzOjE1NzI4NjQNCnJzc19vdmVyaGVhZF9yYXRpbzowLjk0DQpyc3Nfb3ZlcmhlYWRfYnl0ZXM6LTUyNDI4OA0KbWVtX2ZyYWdtZW50YXRpb25fcmF0aW86OS4xNA0KbWVtX2ZyYWdtZW50YXRpb25fYnl0ZXM6NzM1NDA3Mg0KbWVtX25vdF9jb3VudGVkX2Zvcl9ldmljdDowDQptZW1fcmVwbGljYXRpb25fYmFja2xvZzowDQptZW1fdG90YWxfcmVwbGljYXRpb25fYnVmZmVyczowDQptZW1fY2xpZW50c19zbGF2ZXM6MA0KbWVtX2NsaWVudHNfbm9ybWFsOjANCm1lbV9jbHVzdGVyX2xpbmtzOjANCm1lbV9hb2ZfYnVmZmVyOjANCm1lbV9hbGxvY2F0b3I6amVtYWxsb2MtNS4zLjANCmFjdGl2ZV9kZWZyYWdfcnVubmluZzowDQpsYXp5ZnJlZV9wZW5kaW5nX29iamVjdHM6MA0KbGF6eWZyZWVkX29iamVjdHM6MA0KDQojIFBlcnNpc3RlbmNlDQpsb2FkaW5nOjANCmFzeW5jX2xvYWRpbmc6MA0KY3VycmVudF9jb3dfcGVhazowDQpjdXJyZW50X2Nvd19zaXplOjANCmN1cnJlbnRfY293X3NpemVfYWdlOjANCmN1cnJlbnRfZm9ya19wZXJjOjAuMDANCmN1cnJlbnRfc2F2ZV9rZXlzX3Byb2Nlc3NlZDowDQpjdXJyZW50X3NhdmVfa2V5c190b3RhbDowDQpyZGJfY2hhbmdlc19zaW5jZV9sYXN0X3NhdmU6MA0KcmRiX2Jnc2F2ZV9pbl9wcm9ncmVzczowDQpyZGJfbGFzdF9zYXZlX3RpbWU6MTcxNTY3MjAyOA0KcmRiX2xhc3RfYmdzYXZlX3N0YXR1czpvaw0KcmRiX2xhc3RfYmdzYXZlX3RpbWVfc2VjOi0xDQpyZGJfY3VycmVudF9iZ3NhdmVfdGltZV9zZWM6LTENCnJkYl9zYXZlczowDQpyZGJfbGFzdF9jb3dfc2l6ZTowDQpyZGJfbGFzdF9sb2FkX2tleXNfZXhwaXJlZDoyDQpyZGJfbGFzdF9sb2FkX2tleXNfbG9hZGVkOjgNCmFvZl9lbmFibGVkOjANCmFvZl9yZXdyaXRlX2luX3Byb2dyZXNzOjANCmFvZl9yZXdyaXRlX3NjaGVkdWxlZDowDQphb2ZfbGFzdF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfY3VycmVudF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfbGFzdF9iZ3Jld3JpdGVfc3RhdHVzOm9rDQphb2ZfcmV3cml0ZXM6MA0KYW9mX3Jld3JpdGVzX2NvbnNlY3V0aXZlX2ZhaWx1cmVzOjANCmFvZl9sYXN0X3dyaXRlX3N0YXR1czpvaw0KYW9mX2xhc3RfY293X3NpemU6MA0KbW9kdWxlX2ZvcmtfaW5fcHJvZ3Jlc3M6MA0KbW9kdWxlX2ZvcmtfbGFzdF9jb3dfc2l6ZTowDQoNCiMgU3RhdHMNCnRvdGFsX2Nvbm5lY3Rpb25zX3JlY2VpdmVkOjINCnRvdGFsX2NvbW1hbmRzX3Byb2Nlc3NlZDoxDQppbnN0YW50YW5lb3VzX29wc19wZXJfc2VjOjANCnRvdGFsX25ldF9pbnB1dF9ieXRlczoyOA0KdG90YWxfbmV0X291dHB1dF9ieXRlczo1Mjc1DQp0b3RhbF9uZXRfcmVwbF9pbnB1dF9ieXRlczowDQp0b3RhbF9uZXRfcmVwbF9vdXRwdXRfYnl0ZXM6MA0KaW5zdGFudGFuZW91c19pbnB1dF9rYnBzOjAuMDANCmluc3RhbnRhbmVvdXNfb3V0cHV0X2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19pbnB1dF9yZXBsX2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19vdXRwdXRfcmVwbF9rYnBzOjAuMDANCnJlamVjdGVkX2Nvbm5lY3Rpb25zOjANCnN5bmNfZnVsbDowDQpzeW5jX3BhcnRpYWxfb2s6MA0Kc3luY19wYXJ0aWFsX2VycjowDQpleHBpcmVkX2tleXM6MA0KZXhwaXJlZF9zdGFsZV9wZXJjOjAuMDANCmV4cGlyZWRfdGltZV9jYXBfcmVhY2hlZF9jb3VudDowDQpleHBpcmVfY3ljbGVfY3B1X21pbGxpc2Vjb25kczowDQpldmljdGVkX2tleXM6MA0KZXZpY3RlZF9jbGllbnRzOjANCnRvdGFsX2V2aWN0aW9uX2V4Y2VlZGVkX3RpbWU6MA0KY3VycmVudF9ldmljdGlvbl9leGNlZWRlZF90aW1lOjANCmtleXNwYWNlX2hpdHM6MA0Ka2V5c3BhY2VfbWlzc2VzOjANCnB1YnN1Yl9jaGFubmVsczowDQpwdWJzdWJfcGF0dGVybnM6MA0KcHVic3Vic2hhcmRfY2hhbm5lbHM6MA0KbGF0ZXN0X2ZvcmtfdXNlYzowDQp0b3RhbF9mb3JrczowDQptaWdyYXRlX2NhY2hlZF9zb2NrZXRzOjANCnNsYXZlX2V4cGlyZXNfdHJhY2tlZF9rZXlzOjANCmFjdGl2ZV9kZWZyYWdfaGl0czowDQphY3RpdmVfZGVmcmFnX21pc3NlczowDQphY3RpdmVfZGVmcmFnX2tleV9oaXRzOjANCmFjdGl2ZV9kZWZyYWdfa2V5X21pc3NlczowDQp0b3RhbF9hY3RpdmVfZGVmcmFnX3RpbWU6MA0KY3VycmVudF9hY3RpdmVfZGVmcmFnX3RpbWU6MA0KdHJhY2tpbmdfdG90YWxfa2V5czowDQp0cmFja2luZ190b3RhbF9pdGVtczowDQp0cmFja2luZ190b3RhbF9wcmVmaXhlczowDQp1bmV4cGVjdGVkX2Vycm9yX3JlcGxpZXM6MA0KdG90YWxfZXJyb3JfcmVwbGllczowDQpkdW1wX3BheWxvYWRfc2FuaXRpemF0aW9uczowDQp0b3RhbF9yZWFkc19wcm9jZXNzZWQ6Mg0KdG90YWxfd3JpdGVzX3Byb2Nlc3NlZDoxDQppb190aHJlYWRlZF9yZWFkc19wcm9jZXNzZWQ6MA0KaW9fdGhyZWFkZWRfd3JpdGVzX3Byb2Nlc3NlZDowDQpyZXBseV9idWZmZXJfc2hyaW5rczowDQpyZXBseV9idWZmZXJfZXhwYW5kczowDQpldmVudGxvb3BfY3ljbGVzOjM4DQpldmVudGxvb3BfZHVyYXRpb25fc3VtOjM0NDINCmV2ZW50bG9vcF9kdXJhdGlvbl9jbWRfc3VtOjEwMg0KaW5zdGFudGFuZW91c19ldmVudGxvb3BfY3ljbGVzX3Blcl9zZWM6OQ0KaW5zdGFudGFuZW91c19ldmVudGxvb3BfZHVyYXRpb25fdXNlYzo4MQ0KYWNsX2FjY2Vzc19kZW5pZWRfYXV0aDowDQphY2xfYWNjZXNzX2RlbmllZF9jbWQ6MA0KYWNsX2FjY2Vzc19kZW5pZWRfa2V5OjANCmFjbF9hY2Nlc3NfZGVuaWVkX2NoYW5uZWw6MA0KDQojIFJlcGxpY2F0aW9uDQpyb2xlOm1hc3Rlcg0KY29ubmVjdGVkX3NsYXZlczowDQptYXN0ZXJfZmFpbG92ZXJfc3RhdGU6bm8tZmFpbG92ZXINCm1hc3Rlcl9yZXBsaWQ6ZTdiYjRiYTU1ZWUyNmMxODk4MDhmOWY4YjNiZDQ2OTJlYWU4MjNjMg0KbWFzdGVyX3JlcGxpZDI6MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMA0KbWFzdGVyX3JlcGxfb2Zmc2V0OjEyNg0Kc2Vjb25kX3JlcGxfb2Zmc2V0Oi0xDQpyZXBsX2JhY2tsb2dfYWN0aXZlOjANCnJlcGxfYmFja2xvZ19zaXplOjEwNDg1NzYNCnJlcGxfYmFja2xvZ19maXJzdF9ieXRlX29mZnNldDowDQpyZXBsX2JhY2tsb2dfaGlzdGxlbjowDQoNCiMgQ1BVDQp1c2VkX2NwdV9zeXM6MC4wMzM2NTMNCnVzZWRfY3B1X3VzZXI6MC4wMDQyMzQNCnVzZWRfY3B1X3N5c19jaGlsZHJlbjowLjAwMDAwMA0KdXNlZF9jcHVfdXNlcl9jaGlsZHJlbjowLjAwMjY1Mg0KdXNlZF9jcHVfc3lzX21haW5fdGhyZWFkOjAuMDI5NDc5DQp1c2VkX2NwdV91c2VyX21haW5fdGhyZWFkOjAuMDA0MjExDQoNCiMgTW9kdWxlcw0KDQojIEVycm9yc3RhdHMNCg0KIyBDbHVzdGVyDQpjbHVzdGVyX2VuYWJsZWQ6MA0KDQojIEtleXNwYWNlDQpkYjA6a2V5cz04LGV4cGlyZXM9MCxhdmdfdHRsPTANCg0K + reqtimestampmock: 2024-05-14T13:03:51.740651717+05:30 + restimestampmock: 2024-05-14T13:03:51.740901965+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-6 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"create":"orders","lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce"} }], checksum: 0 }' + requests: + - header: + length: 100 + requestId: 5 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"create":"orders","lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce"} }' + checksum: 0 + read_delay: 3076644 + responses: + - header: + length: 38 + requestId: 7 + responseTo: 5 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 331081 + created: 1715672031 + reqTimestampMock: 2024-05-14T13:03:51.813805707+05:30 + resTimestampMock: 2024-05-14T13:03:51.81419162+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-7 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDMxODEyDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: LU5PU0NSSVBUIE5vIG1hdGNoaW5nIHNjcmlwdC4gUGxlYXNlIHVzZSBFVkFMLg0K + reqtimestampmock: 2024-05-14T13:03:51.812810839+05:30 + restimestampmock: 2024-05-14T13:03:51.812819256+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-8 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDMxODEyDQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: LU5PU0NSSVBUIE5vIG1hdGNoaW5nIHNjcmlwdC4gUGxlYXNlIHVzZSBFVkFMLg0K + reqtimestampmock: 2024-05-14T13:03:51.813210878+05:30 + restimestampmock: 2024-05-14T13:03:51.813226128+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-9 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNA0KZXZhbA0KJDE3NTMNCi0tW1sKICBVcGRhdGVzIHRoZSBkZWxheSBzZXQsIGJ5IHBpY2tpbmcgYSBkZWxheWVkIGpvYiB0aGF0IHNob3VsZAogIGJlIHByb2Nlc3NlZCBub3cuCgogICAgIElucHV0OgogICAgICBLRVlTWzFdICdkZWxheWVkJwogICAgICBLRVlTWzJdICdhY3RpdmUnCiAgICAgIEtFWVNbM10gJ3dhaXQnCiAgICAgIEtFWVNbNF0gJ3ByaW9yaXR5JwoKICAgICAgS0VZU1s1XSAncGF1c2VkJwogICAgICBLRVlTWzZdICdtZXRhLXBhdXNlZCcKCiAgICAgIEFSR1ZbMV0gIHF1ZXVlLnRvS2V5KCcnKQogICAgICBBUkdWWzJdICBkZWxheWVkIHRpbWVzdGFtcAogICAgICBBUkdWWzNdICBxdWV1ZSB0b2tlbgoKICAgICBFdmVudHM6CiAgICAgICdyZW1vdmVkJwpdXQpsb2NhbCByY2FsbCA9IHJlZGlzLmNhbGw7CgotLSBUcnkgdG8gZ2V0IGFzIG11Y2ggYXMgMTAwMCBqb2JzIGF0IG9uY2UKbG9jYWwgam9icyA9IHJjYWxsKCJaUkFOR0VCWVNDT1JFIiwgS0VZU1sxXSwgMCwgdG9udW1iZXIoQVJHVlsyXSkgKiAweDEwMDAsICJMSU1JVCIsIDAsIDEwMDApCgppZigjam9icyA+IDApIHRoZW4KICByY2FsbCgiWlJFTSIsIEtFWVNbMV0sIHVucGFjayhqb2JzKSkKCiAgLS0gY2hlY2sgaWYgd2UgbmVlZCB0byB1c2UgcHVzaCBpbiBwYXVzZWQgaW5zdGVhZCBvZiB3YWl0aW5nCiAgbG9jYWwgdGFyZ2V0OwogIGlmIHJjYWxsKCJFWElTVFMiLCBLRVlTWzZdKSB+PSAxIHRoZW4KICAgIHRhcmdldCA9IEtFWVNbM10KICBlbHNlCiAgICB0YXJnZXQgPSBLRVlTWzVdCiAgZW5kCgogIGZvciBfLCBqb2JJZCBpbiBpcGFpcnMoam9icykgZG8KICAgIC0tIElzIHRoaXMgcmVhbGx5IG5lZWRlZD8KICAgIHJjYWxsKCJMUkVNIiwgS0VZU1syXSwgMCwgam9iSWQpCgogICAgbG9jYWwgcHJpb3JpdHkgPSB0b251bWJlcihyY2FsbCgiSEdFVCIsIEFSR1ZbMV0gLi4gam9iSWQsICJwcmlvcml0eSIpKSBvciAwCiAgCiAgICBpZiBwcmlvcml0eSA9PSAwIHRoZW4KICAgICAgLS0gTElGTyBvciBGSUZPCiAgICAgIHJjYWxsKCJMUFVTSCIsIHRhcmdldCwgam9iSWQpCiAgICBlbHNlCiAgICAgIC0tIFByaW9yaXR5IGFkZAogICAgICByY2FsbCgiWkFERCIsIEtFWVNbNF0sIHByaW9yaXR5LCBqb2JJZCkKICAgICAgbG9jYWwgY291bnQgPSByY2FsbCgiWkNPVU5UIiwgS0VZU1s0XSwgMCwgcHJpb3JpdHkpCiAgCiAgICAgIGxvY2FsIGxlbiA9IHJjYWxsKCJMTEVOIiwgdGFyZ2V0KQogICAgICBsb2NhbCBpZCA9IHJjYWxsKCJMSU5ERVgiLCB0YXJnZXQsIGxlbiAtIChjb3VudC0xKSkKICAgICAgaWYgaWQgdGhlbgogICAgICAgIHJjYWxsKCJMSU5TRVJUIiwgdGFyZ2V0LCAiQkVGT1JFIiwgaWQsIGpvYklkKQogICAgICBlbHNlCiAgICAgICAgcmNhbGwoIlJQVVNIIiwgdGFyZ2V0LCBqb2JJZCkKICAgICAgZW5kCiAgICBlbmQKICAKICAgIC0tIEVtaXQgd2FpdGluZyBldmVudCAod2FpdC4uaW5nQHRva2VuKQogICAgcmNhbGwoIlBVQkxJU0giLCBLRVlTWzNdIC4uICJpbmdAIiAuLiBBUkdWWzNdLCBqb2JJZCkKICAgIHJjYWxsKCJIU0VUIiwgQVJHVlsxXSAuLiBqb2JJZCwgImRlbGF5IiwgMCkKICBlbmQKZW5kCgpsb2NhbCBuZXh0VGltZXN0YW1wID0gcmNhbGwoIlpSQU5HRSIsIEtFWVNbMV0sIDAsIDAsICJXSVRIU0NPUkVTIilbMl0KaWYobmV4dFRpbWVzdGFtcCB+PSBuaWwpIHRoZW4KICByY2FsbCgiUFVCTElTSCIsIEtFWVNbMV0sIG5leHRUaW1lc3RhbXAgLyAweDEwMDApCmVuZApyZXR1cm4gbmV4dFRpbWVzdGFtcAoNCiQxDQo2DQokMjQNCmJ1bGw6c2NoZWR1bGVKb2I6ZGVsYXllZA0KJDIzDQpidWxsOnNjaGVkdWxlSm9iOmFjdGl2ZQ0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyNQ0KYnVsbDpzY2hlZHVsZUpvYjpwcmlvcml0eQ0KJDIzDQpidWxsOnNjaGVkdWxlSm9iOnBhdXNlZA0KJDI4DQpidWxsOnNjaGVkdWxlSm9iOm1ldGEtcGF1c2VkDQokMTcNCmJ1bGw6c2NoZWR1bGVKb2I6DQokMTMNCjE3MTU2NzIwMzE4MTINCiQzNg0KZjk2OWZlZDctYTllZS00NWM0LTkxZmItMDA5MDE2ZTViZGMyDQo= + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:03:51.815201779+05:30 + restimestampmock: 2024-05-14T13:03:51.815243321+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-10 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjIwDQokNA0KZXZhbA0KJDI2OTUNCi0tW1sKICBBZGRzIGEgam9iIHRvIHRoZSBxdWV1ZSBieSBkb2luZyB0aGUgZm9sbG93aW5nOgogICAgLSBJbmNyZWFzZXMgdGhlIGpvYiBjb3VudGVyIGlmIG5lZWRlZC4KICAgIC0gQ3JlYXRlcyBhIG5ldyBqb2Iga2V5IHdpdGggdGhlIGpvYiBkYXRhLgoKICAgIC0gaWYgZGVsYXllZDoKICAgICAgLSBjb21wdXRlcyB0aW1lc3RhbXAuCiAgICAgIC0gYWRkcyB0byBkZWxheWVkIHpzZXQuCiAgICAgIC0gRW1pdHMgYSBnbG9iYWwgZXZlbnQgJ2RlbGF5ZWQnIGlmIHRoZSBqb2IgaXMgZGVsYXllZC4KICAgIC0gaWYgbm90IGRlbGF5ZWQKICAgICAgLSBBZGRzIHRoZSBqb2JJZCB0byB0aGUgd2FpdC9wYXVzZWQgbGlzdCBpbiBvbmUgb2YgdGhyZWUgd2F5czoKICAgICAgICAgLSBMSUZPCiAgICAgICAgIC0gRklGTwogICAgICAgICAtIHByaW9yaXRpemVkLgogICAgICAtIEFkZHMgdGhlIGpvYiB0byB0aGUgImFkZGVkIiBsaXN0IHNvIHRoYXQgd29ya2VycyBnZXRzIG5vdGlmaWVkLgoKICAgIElucHV0OgogICAgICBLRVlTWzFdICd3YWl0JywKICAgICAgS0VZU1syXSAncGF1c2VkJwogICAgICBLRVlTWzNdICdtZXRhLXBhdXNlZCcKICAgICAgS0VZU1s0XSAnaWQnCiAgICAgIEtFWVNbNV0gJ2RlbGF5ZWQnCiAgICAgIEtFWVNbNl0gJ3ByaW9yaXR5JwoKICAgICAgQVJHVlsxXSAga2V5IHByZWZpeCwKICAgICAgQVJHVlsyXSAgY3VzdG9tIGlkICh3aWxsIG5vdCBnZW5lcmF0ZSBvbmUgYXV0b21hdGljYWxseSkKICAgICAgQVJHVlszXSAgbmFtZQogICAgICBBUkdWWzRdICBkYXRhIChqc29uIHN0cmluZ2lmaWVkIGpvYiBkYXRhKQogICAgICBBUkdWWzVdICBvcHRzIChqc29uIHN0cmluZ2lmaWVkIGpvYiBvcHRzKQogICAgICBBUkdWWzZdICB0aW1lc3RhbXAKICAgICAgQVJHVls3XSAgZGVsYXkKICAgICAgQVJHVls4XSAgZGVsYXllZFRpbWVzdGFtcAogICAgICBBUkdWWzldICBwcmlvcml0eQogICAgICBBUkdWWzEwXSBMSUZPCiAgICAgIEFSR1ZbMTFdIHRva2VuCl1dCmxvY2FsIGpvYklkCmxvY2FsIGpvYklkS2V5CmxvY2FsIHJjYWxsID0gcmVkaXMuY2FsbAoKbG9jYWwgam9iQ291bnRlciA9IHJjYWxsKCJJTkNSIiwgS0VZU1s0XSkKCmlmIEFSR1ZbMl0gPT0gIiIgdGhlbgogIGpvYklkID0gam9iQ291bnRlcgogIGpvYklkS2V5ID0gQVJHVlsxXSAuLiBqb2JJZAplbHNlCiAgam9iSWQgPSBBUkdWWzJdCiAgam9iSWRLZXkgPSBBUkdWWzFdIC4uIGpvYklkCiAgaWYgcmNhbGwoIkVYSVNUUyIsIGpvYklkS2V5KSA9PSAxIHRoZW4KICAgIHJldHVybiBqb2JJZCAuLiAiIiAtLSBjb252ZXJ0IHRvIHN0cmluZwogIGVuZAplbmQKCi0tIFN0b3JlIHRoZSBqb2IuCnJjYWxsKCJITVNFVCIsIGpvYklkS2V5LCAibmFtZSIsIEFSR1ZbM10sICJkYXRhIiwgQVJHVls0XSwgIm9wdHMiLCBBUkdWWzVdLCAidGltZXN0YW1wIiwgQVJHVls2XSwgImRlbGF5IiwgQVJHVls3XSwgInByaW9yaXR5IiwgQVJHVls5XSkKCi0tIENoZWNrIGlmIGpvYiBpcyBkZWxheWVkCmxvY2FsIGRlbGF5ZWRUaW1lc3RhbXAgPSB0b251bWJlcihBUkdWWzhdKQppZihkZWxheWVkVGltZXN0YW1wIH49IDApIHRoZW4KICBsb2NhbCB0aW1lc3RhbXAgPSBkZWxheWVkVGltZXN0YW1wICogMHgxMDAwICsgYml0LmJhbmQoam9iQ291bnRlciwgMHhmZmYpCiAgcmNhbGwoIlpBREQiLCBLRVlTWzVdLCB0aW1lc3RhbXAsIGpvYklkKQogIHJjYWxsKCJQVUJMSVNIIiwgS0VZU1s1XSwgZGVsYXllZFRpbWVzdGFtcCkKZWxzZQogIGxvY2FsIHRhcmdldAoKICAtLSBXaGUgY2hlY2sgZm9yIHRoZSBtZXRhLXBhdXNlZCBrZXkgdG8gZGVjaWRlIGlmIHdlIGFyZSBwYXVzZWQgb3Igbm90CiAgLS0gKHNpbmNlIGFuIGVtcHR5IGxpc3QgYW5kICFFWElTVFMgYXJlIG5vdCByZWFsbHkgdGhlIHNhbWUpCiAgbG9jYWwgcGF1c2VkCiAgaWYgcmNhbGwoIkVYSVNUUyIsIEtFWVNbM10pIH49IDEgdGhlbgogICAgdGFyZ2V0ID0gS0VZU1sxXQogICAgcGF1c2VkID0gZmFsc2UKICBlbHNlCiAgICB0YXJnZXQgPSBLRVlTWzJdCiAgICBwYXVzZWQgPSB0cnVlCiAgZW5kCgogIC0tIFN0YW5kYXJkIG9yIHByaW9yaXR5IGFkZAogIGxvY2FsIHByaW9yaXR5ID0gdG9udW1iZXIoQVJHVls5XSkKICBpZiBwcmlvcml0eSA9PSAwIHRoZW4KICAgICAgLS0gTElGTyBvciBGSUZPCiAgICByY2FsbChBUkdWWzEwXSwgdGFyZ2V0LCBqb2JJZCkKICBlbHNlCiAgICAtLSBQcmlvcml0eSBhZGQKICAgIHJjYWxsKCJaQUREIiwgS0VZU1s2XSwgcHJpb3JpdHksIGpvYklkKQogICAgbG9jYWwgY291bnQgPSByY2FsbCgiWkNPVU5UIiwgS0VZU1s2XSwgMCwgcHJpb3JpdHkpCgogICAgbG9jYWwgbGVuID0gcmNhbGwoIkxMRU4iLCB0YXJnZXQpCiAgICBsb2NhbCBpZCA9IHJjYWxsKCJMSU5ERVgiLCB0YXJnZXQsIGxlbiAtIChjb3VudC0xKSkKICAgIGlmIGlkIHRoZW4KICAgICAgcmNhbGwoIkxJTlNFUlQiLCB0YXJnZXQsICJCRUZPUkUiLCBpZCwgam9iSWQpCiAgICBlbHNlCiAgICAgIHJjYWxsKCJSUFVTSCIsIHRhcmdldCwgam9iSWQpCiAgICBlbmQKCiAgZW5kCgogIC0tIEVtaXQgd2FpdGluZyBldmVudCAod2FpdC4uaW5nQHRva2VuKQogIHJjYWxsKCJQVUJMSVNIIiwgS0VZU1sxXSAuLiAiaW5nQCIgLi4gQVJHVlsxMV0sIGpvYklkKQplbmQKCnJldHVybiBqb2JJZCAuLiAiIiAtLSBjb252ZXJ0IHRvIHN0cmluZwoNCiQxDQo2DQokMjQNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6d2FpdA0KJDI2DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnBhdXNlZA0KJDMxDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOm1ldGEtcGF1c2VkDQokMjINCmJ1bGw6YWdncmVnYXRlQ2hlY2s6aWQNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkZWxheWVkDQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyMA0KYnVsbDphZ2dyZWdhdGVDaGVjazoNCiQ1Mw0KcmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTU3MTE0MDAwMDANCiQxMQ0KX19kZWZhdWx0X18NCiQyDQp7fQ0KJDIyMQ0KeyJyZXBlYXQiOnsiY291bnQiOjEsImtleSI6Il9fZGVmYXVsdF9fOjo6OjAgMCAqICogKiIsImNyb24iOiIwIDAgKiAqICoifSwiam9iSWQiOiJyZXBlYXQ6MjhmZDc3NzRlNjcxMTQyNjBkY2FlMTllMDEzMTU3ZGQ6MTcxNTcxMTQwMDAwMCIsImRlbGF5IjozOTM2ODE5MSwidGltZXN0YW1wIjoxNzE1NjcyMDMxODA5LCJwcmV2TWlsbGlzIjoxNzE1NzExNDAwMDAwLCJhdHRlbXB0cyI6MX0NCiQxMw0KMTcxNTY3MjAzMTgwOQ0KJDgNCjM5MzY4MTkxDQokMTMNCjE3MTU3MTE0MDAwMDANCiQxDQowDQokNQ0KTFBVU0gNCiQzNg0KNTAwMzJmNTQtNDE0NC00NTY0LTk0N2YtOTI1OWJmZTczYTFlDQo= + - origin: client + message: + - type: binary + data: KjEyDQokNA0KZXZhbA0KJDE3NTMNCi0tW1sKICBVcGRhdGVzIHRoZSBkZWxheSBzZXQsIGJ5IHBpY2tpbmcgYSBkZWxheWVkIGpvYiB0aGF0IHNob3VsZAogIGJlIHByb2Nlc3NlZCBub3cuCgogICAgIElucHV0OgogICAgICBLRVlTWzFdICdkZWxheWVkJwogICAgICBLRVlTWzJdICdhY3RpdmUnCiAgICAgIEtFWVNbM10gJ3dhaXQnCiAgICAgIEtFWVNbNF0gJ3ByaW9yaXR5JwoKICAgICAgS0VZU1s1XSAncGF1c2VkJwogICAgICBLRVlTWzZdICdtZXRhLXBhdXNlZCcKCiAgICAgIEFSR1ZbMV0gIHF1ZXVlLnRvS2V5KCcnKQogICAgICBBUkdWWzJdICBkZWxheWVkIHRpbWVzdGFtcAogICAgICBBUkdWWzNdICBxdWV1ZSB0b2tlbgoKICAgICBFdmVudHM6CiAgICAgICdyZW1vdmVkJwpdXQpsb2NhbCByY2FsbCA9IHJlZGlzLmNhbGw7CgotLSBUcnkgdG8gZ2V0IGFzIG11Y2ggYXMgMTAwMCBqb2JzIGF0IG9uY2UKbG9jYWwgam9icyA9IHJjYWxsKCJaUkFOR0VCWVNDT1JFIiwgS0VZU1sxXSwgMCwgdG9udW1iZXIoQVJHVlsyXSkgKiAweDEwMDAsICJMSU1JVCIsIDAsIDEwMDApCgppZigjam9icyA+IDApIHRoZW4KICByY2FsbCgiWlJFTSIsIEtFWVNbMV0sIHVucGFjayhqb2JzKSkKCiAgLS0gY2hlY2sgaWYgd2UgbmVlZCB0byB1c2UgcHVzaCBpbiBwYXVzZWQgaW5zdGVhZCBvZiB3YWl0aW5nCiAgbG9jYWwgdGFyZ2V0OwogIGlmIHJjYWxsKCJFWElTVFMiLCBLRVlTWzZdKSB+PSAxIHRoZW4KICAgIHRhcmdldCA9IEtFWVNbM10KICBlbHNlCiAgICB0YXJnZXQgPSBLRVlTWzVdCiAgZW5kCgogIGZvciBfLCBqb2JJZCBpbiBpcGFpcnMoam9icykgZG8KICAgIC0tIElzIHRoaXMgcmVhbGx5IG5lZWRlZD8KICAgIHJjYWxsKCJMUkVNIiwgS0VZU1syXSwgMCwgam9iSWQpCgogICAgbG9jYWwgcHJpb3JpdHkgPSB0b251bWJlcihyY2FsbCgiSEdFVCIsIEFSR1ZbMV0gLi4gam9iSWQsICJwcmlvcml0eSIpKSBvciAwCiAgCiAgICBpZiBwcmlvcml0eSA9PSAwIHRoZW4KICAgICAgLS0gTElGTyBvciBGSUZPCiAgICAgIHJjYWxsKCJMUFVTSCIsIHRhcmdldCwgam9iSWQpCiAgICBlbHNlCiAgICAgIC0tIFByaW9yaXR5IGFkZAogICAgICByY2FsbCgiWkFERCIsIEtFWVNbNF0sIHByaW9yaXR5LCBqb2JJZCkKICAgICAgbG9jYWwgY291bnQgPSByY2FsbCgiWkNPVU5UIiwgS0VZU1s0XSwgMCwgcHJpb3JpdHkpCiAgCiAgICAgIGxvY2FsIGxlbiA9IHJjYWxsKCJMTEVOIiwgdGFyZ2V0KQogICAgICBsb2NhbCBpZCA9IHJjYWxsKCJMSU5ERVgiLCB0YXJnZXQsIGxlbiAtIChjb3VudC0xKSkKICAgICAgaWYgaWQgdGhlbgogICAgICAgIHJjYWxsKCJMSU5TRVJUIiwgdGFyZ2V0LCAiQkVGT1JFIiwgaWQsIGpvYklkKQogICAgICBlbHNlCiAgICAgICAgcmNhbGwoIlJQVVNIIiwgdGFyZ2V0LCBqb2JJZCkKICAgICAgZW5kCiAgICBlbmQKICAKICAgIC0tIEVtaXQgd2FpdGluZyBldmVudCAod2FpdC4uaW5nQHRva2VuKQogICAgcmNhbGwoIlBVQkxJU0giLCBLRVlTWzNdIC4uICJpbmdAIiAuLiBBUkdWWzNdLCBqb2JJZCkKICAgIHJjYWxsKCJIU0VUIiwgQVJHVlsxXSAuLiBqb2JJZCwgImRlbGF5IiwgMCkKICBlbmQKZW5kCgpsb2NhbCBuZXh0VGltZXN0YW1wID0gcmNhbGwoIlpSQU5HRSIsIEtFWVNbMV0sIDAsIDAsICJXSVRIU0NPUkVTIilbMl0KaWYobmV4dFRpbWVzdGFtcCB+PSBuaWwpIHRoZW4KICByY2FsbCgiUFVCTElTSCIsIEtFWVNbMV0sIG5leHRUaW1lc3RhbXAgLyAweDEwMDApCmVuZApyZXR1cm4gbmV4dFRpbWVzdGFtcAoNCiQxDQo2DQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDI2DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmFjdGl2ZQ0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyOA0KYnVsbDphZ2dyZWdhdGVDaGVjazpwcmlvcml0eQ0KJDI2DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnBhdXNlZA0KJDMxDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOm1ldGEtcGF1c2VkDQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokMTMNCjE3MTU2NzIwMzE4MTINCiQzNg0KNTAwMzJmNTQtNDE0NC00NTY0LTk0N2YtOTI1OWJmZTczYTFlDQo= + genericresponses: + - origin: server + message: + - type: binary + data: JDUzDQpyZXBlYXQ6MjhmZDc3NzRlNjcxMTQyNjBkY2FlMTllMDEzMTU3ZGQ6MTcxNTcxMTQwMDAwMA0KJDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:03:51.815207321+05:30 + restimestampmock: 2024-05-14T13:03:51.815216196+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-11 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnN0YWxsZWQNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZmFpbGVkDQokMzMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6c3RhbGxlZC1jaGVjaw0KJDMxDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOm1ldGEtcGF1c2VkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cGF1c2VkDQokMQ0KMQ0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDMxODE2DQokNQ0KMzAwMDANCg== + genericresponses: + - origin: server + message: + - type: binary + data: LU5PU0NSSVBUIE5vIG1hdGNoaW5nIHNjcmlwdC4gUGxlYXNlIHVzZSBFVkFMLg0K + reqtimestampmock: 2024-05-14T13:03:51.816400854+05:30 + restimestampmock: 2024-05-14T13:03:51.816411354+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-12 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOnN0YWxsZWQNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6YWN0aXZlDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6ZmFpbGVkDQokMzANCmJ1bGw6c2NoZWR1bGVKb2I6c3RhbGxlZC1jaGVjaw0KJDI4DQpidWxsOnNjaGVkdWxlSm9iOm1ldGEtcGF1c2VkDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6cGF1c2VkDQokMQ0KMQ0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDMxODE1DQokNQ0KMzAwMDANCg== + genericresponses: + - origin: server + message: + - type: binary + data: LU5PU0NSSVBUIE5vIG1hdGNoaW5nIHNjcmlwdC4gUGxlYXNlIHVzZSBFVkFMLg0K + reqtimestampmock: 2024-05-14T13:03:51.815965315+05:30 + restimestampmock: 2024-05-14T13:03:51.815972274+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-13 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDMxODE2DQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:03:51.816717935+05:30 + restimestampmock: 2024-05-14T13:03:51.816729268+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-14 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjMNCiQ2DQpjbGllbnQNCiQ3DQpzZXRuYW1lDQokMjENCmJ1bGw6YzJOb1pXUjFiR1ZLYjJJPQ0K + genericresponses: + - origin: server + message: + - type: binary + data: K09LDQo= + reqtimestampmock: 2024-05-14T13:03:51.772307145+05:30 + restimestampmock: 2024-05-14T13:03:51.772340561+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-15 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjMNCiQ2DQpjbGllbnQNCiQ3DQpzZXRuYW1lDQokMjUNCmJ1bGw6WVdkbmNtVm5ZWFJsUTJobFkycz0NCg== + genericresponses: + - origin: server + message: + - type: binary + data: K09LDQo= + reqtimestampmock: 2024-05-14T13:03:51.77224527+05:30 + restimestampmock: 2024-05-14T13:03:51.772351603+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-16 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE0DQokNA0KZXZhbA0KJDIzMzkNCi0tW1sKICBNb3ZlIHN0YWxsZWQgam9icyB0byB3YWl0LgoKICAgIElucHV0OgogICAgICBLRVlTWzFdICdzdGFsbGVkJyAoU0VUKQogICAgICBLRVlTWzJdICd3YWl0JywgICAoTElTVCkKICAgICAgS0VZU1szXSAnYWN0aXZlJywgKExJU1QpCiAgICAgIEtFWVNbNF0gJ2ZhaWxlZCcsIChaU0VUKQogICAgICBLRVlTWzVdICdzdGFsbGVkLWNoZWNrJywgKEtFWSkKCiAgICAgIEtFWVNbNl0gJ21ldGEtcGF1c2VkJywgKEtFWSkKICAgICAgS0VZU1s3XSAncGF1c2VkJywgKExJU1QpCgogICAgICBBUkdWWzFdICBNYXggc3RhbGxlZCBqb2IgY291bnQKICAgICAgQVJHVlsyXSAgcXVldWUudG9LZXkoJycpCiAgICAgIEFSR1ZbM10gIHRpbWVzdGFtcAogICAgICBBUkdWWzRdICBtYXggY2hlY2sgdGltZQoKICAgIEV2ZW50czoKICAgICAgJ3N0YWxsZWQnIHdpdGggc3RhbGxlZCBqb2IgaWQuCl1dCgpsb2NhbCByY2FsbCA9IHJlZGlzLmNhbGwKCi0tIENoZWNrIGlmIHdlIG5lZWQgdG8gY2hlY2sgZm9yIHN0YWxsZWQgam9icyBub3cuCmlmIHJjYWxsKCJFWElTVFMiLCBLRVlTWzVdKSA9PSAxIHRoZW4KICByZXR1cm4ge3t9LCB7fX0KZW5kCgpyY2FsbCgiU0VUIiwgS0VZU1s1XSwgQVJHVlszXSwgIlBYIiwgQVJHVls0XSkKCi0tIE1vdmUgYWxsIHN0YWxsZWQgam9icyB0byB3YWl0CmxvY2FsIHN0YWxsaW5nID0gcmNhbGwoJ1NNRU1CRVJTJywgS0VZU1sxXSkKbG9jYWwgc3RhbGxlZCA9IHt9CmxvY2FsIGZhaWxlZCA9IHt9CmlmKCNzdGFsbGluZyA+IDApIHRoZW4KCiAgbG9jYWwgZHN0CiAgLS0gd2FpdCBvciBwYXVzZWQgZGVzdGluYXRpb24KICBpZiByY2FsbCgiRVhJU1RTIiwgS0VZU1s2XSkgfj0gMSB0aGVuCiAgICBkc3QgPSBLRVlTWzJdCiAgZWxzZQogICAgZHN0ID0gS0VZU1s3XQogIGVuZAoKICByY2FsbCgnREVMJywgS0VZU1sxXSkKCiAgbG9jYWwgTUFYX1NUQUxMRURfSk9CX0NPVU5UID0gdG9udW1iZXIoQVJHVlsxXSkKCiAgLS0gUmVtb3ZlIGZyb20gYWN0aXZlIGxpc3QKICBmb3IgaSwgam9iSWQgaW4gaXBhaXJzKHN0YWxsaW5nKSBkbwogICAgbG9jYWwgam9iS2V5ID0gQVJHVlsyXSAuLiBqb2JJZAoKICAgIC0tIENoZWNrIHRoYXQgdGhlIGxvY2sgaXMgYWxzbyBtaXNzaW5nLCB0aGVuIHdlIGNhbiBoYW5kbGUgdGhpcyBqb2IgYXMgcmVhbGx5IHN0YWxsZWQuCiAgICBpZihyY2FsbCgiRVhJU1RTIiwgam9iS2V5IC4uICI6bG9jayIpID09IDApIHRoZW4KICAgICAgLS0gIFJlbW92ZSBmcm9tIHRoZSBhY3RpdmUgcXVldWUuCiAgICAgIGxvY2FsIHJlbW92ZWQgPSByY2FsbCgiTFJFTSIsIEtFWVNbM10sIDEsIGpvYklkKQoKICAgICAgaWYocmVtb3ZlZCA+IDApIHRoZW4KICAgICAgICAtLSBJZiB0aGlzIGpvYiBoYXMgYmVlbiBzdGFsbGVkIHRvbyBtYW55IHRpbWVzLCBzdWNoIGFzIGlmIGl0IGNyYXNoZXMgdGhlIHdvcmtlciwgdGhlbiBmYWlsIGl0LgogICAgICAgIGxvY2FsIHN0YWxsZWRDb3VudCA9IHJjYWxsKCJISU5DUkJZIiwgam9iS2V5LCAic3RhbGxlZENvdW50ZXIiLCAxKQogICAgICAgIGlmKHN0YWxsZWRDb3VudCA+IE1BWF9TVEFMTEVEX0pPQl9DT1VOVCkgdGhlbgogICAgICAgICAgcmNhbGwoIlpBREQiLCBLRVlTWzRdLCBBUkdWWzNdLCBqb2JJZCkKICAgICAgICAgIHJjYWxsKCJIU0VUIiwgam9iS2V5LCAiZmFpbGVkUmVhc29uIiwgImpvYiBzdGFsbGVkIG1vcmUgdGhhbiBhbGxvd2FibGUgbGltaXQiKQogICAgICAgICAgcmNhbGwoIlBVQkxJU0giLCBLRVlTWzRdLCAgIntcImpvYklkXCI6XCIiIC4uIGpvYklkIC4uICJcIiwgXCJ2YWxcIjogXCJqb2Igc3RhbGxlZCBtb3JlIHRoYW4gbWF4U3RhbGxlZENvdW50XCJ9IikKICAgICAgICAgIHRhYmxlLmluc2VydChmYWlsZWQsIGpvYklkKQogICAgICAgIGVsc2UKICAgICAgICAgIC0tIE1vdmUgdGhlIGpvYiBiYWNrIHRvIHRoZSB3YWl0IHF1ZXVlLCB0byBpbW1lZGlhdGVseSBiZSBwaWNrZWQgdXAgYnkgYSB3YWl0aW5nIHdvcmtlci4KICAgICAgICAgIHJjYWxsKCJSUFVTSCIsIGRzdCwgam9iSWQpCiAgICAgICAgICByY2FsbCgnUFVCTElTSCcsIEtFWVNbMV0gLi4gJ0AnLCBqb2JJZCkKICAgICAgICAgIHRhYmxlLmluc2VydChzdGFsbGVkLCBqb2JJZCkKICAgICAgICBlbmQKICAgICAgZW5kCiAgICBlbmQKICBlbmQKZW5kCgotLSBNYXJrIHBvdGVudGlhbGx5IHN0YWxsZWQgam9icwpsb2NhbCBhY3RpdmUgPSByY2FsbCgnTFJBTkdFJywgS0VZU1szXSwgMCwgLTEpCmlmKCNhY3RpdmUgPiAwKSB0aGVuCiAgcmNhbGwoJ1NBREQnLCBLRVlTWzFdLCB1bnBhY2soYWN0aXZlKSkKZW5kCgpyZXR1cm4ge2ZhaWxlZCwgc3RhbGxlZH0KDQokMQ0KNw0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnN0YWxsZWQNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZmFpbGVkDQokMzMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6c3RhbGxlZC1jaGVjaw0KJDMxDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOm1ldGEtcGF1c2VkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cGF1c2VkDQokMQ0KMQ0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDMxODE2DQokNQ0KMzAwMDANCg== + genericresponses: + - origin: server + message: + - type: binary + data: KjINCiowDQoqMA0K + reqtimestampmock: 2024-05-14T13:03:51.817368263+05:30 + restimestampmock: 2024-05-14T13:03:51.817395305+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-17 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE2DQokNw0KZXZhbHNoYQ0KJDQwDQozNWE0MmI2ZTliM2Y3MTNjYTVlN2U4YTBlMmJkMWM4ZDNmMjgxYmY0DQokMQ0KOA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyOA0KYnVsbDphZ2dyZWdhdGVDaGVjazpwcmlvcml0eQ0KJDYzDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmFjdGl2ZUA1MDAzMmY1NC00MTQ0LTQ1NjQtOTQ3Zi05MjU5YmZlNzNhMWUNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpzdGFsbGVkDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6bGltaXRlcg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkcmFpbmVkDQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0KJDUNCjMwMDAwDQokMTMNCjE3MTU2NzIwMzE4MTgNCiQ1Mw0KcmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTM5ODM0MDAwMDANCg== + genericresponses: + - origin: server + message: + - type: binary + data: LU5PU0NSSVBUIE5vIG1hdGNoaW5nIHNjcmlwdC4gUGxlYXNlIHVzZSBFVkFMLg0K + reqtimestampmock: 2024-05-14T13:03:51.819178208+05:30 + restimestampmock: 2024-05-14T13:03:51.819202458+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-18 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE2DQokNA0KZXZhbA0KJDQ1NzMNCi0tW1sKICBNb3ZlIG5leHQgam9iIHRvIGJlIHByb2Nlc3NlZCB0byBhY3RpdmUsIGxvY2sgaXQgYW5kIGZldGNoIGl0cyBkYXRhLiBUaGUgam9iCiAgbWF5IGJlIGRlbGF5ZWQsIGluIHRoYXQgY2FzZSB3ZSBuZWVkIHRvIG1vdmUgaXQgdG8gdGhlIGRlbGF5ZWQgc2V0IGluc3RlYWQuCgogIFRoaXMgb3BlcmF0aW9uIGd1YXJhbnRlZXMgdGhhdCB0aGUgd29ya2VyIG93bnMgdGhlIGpvYiBkdXJpbmcgdGhlIGxvY2tzCiAgZXhwaXJhdGlvbiB0aW1lLiBUaGUgd29ya2VyIGlzIHJlc3BvbnNpYmxlIG9mIGtlZXBpbmcgdGhlIGxvY2sgZnJlc2gKICBzbyB0aGF0IG5vIG90aGVyIHdvcmtlciBwaWNrcyB0aGlzIGpvYiBhZ2Fpbi4KCiAgSW5wdXQ6CiAgICAgIEtFWVNbMV0gd2FpdCBrZXkKICAgICAgS0VZU1syXSBhY3RpdmUga2V5CiAgICAgIEtFWVNbM10gcHJpb3JpdHkga2V5CiAgICAgIEtFWVNbNF0gYWN0aXZlIGV2ZW50IGtleQogICAgICBLRVlTWzVdIHN0YWxsZWQga2V5CgogICAgICAtLSBSYXRlIGxpbWl0aW5nCiAgICAgIEtFWVNbNl0gcmF0ZSBsaW1pdGVyIGtleQogICAgICBLRVlTWzddIGRlbGF5ZWQga2V5CgogICAgICAtLQogICAgICBLRVlTWzhdIGRyYWluZWQga2V5CgogICAgICBBUkdWWzFdIGtleSBwcmVmaXgKICAgICAgQVJHVlsyXSBsb2NrIHRva2VuCiAgICAgIEFSR1ZbM10gbG9jayBkdXJhdGlvbiBpbiBtaWxsaXNlY29uZHMKICAgICAgQVJHVls0XSB0aW1lc3RhbXAKICAgICAgQVJHVls1XSBvcHRpb25hbCBqb2JpZAoKICAgICAgQVJHVls2XSBvcHRpb25hbCBqb2JzIHBlciB0aW1lIHVuaXQgKHJhdGUgbGltaXRlcikKICAgICAgQVJHVls3XSBvcHRpb25hbCB0aW1lIHVuaXQgKHJhdGUgbGltaXRlcikKICAgICAgQVJHVls4XSBvcHRpb25hbCBkbyBub3QgZG8gYW55dGhpbmcgd2l0aCBqb2IgaWYgcmF0ZSBsaW1pdCBoaXQKICAgICAgQVJHVls5XSBvcHRpb25hbCByYXRlIGxpbWl0IGJ5IGtleQpdXQoKbG9jYWwgcmNhbGwgPSByZWRpcy5jYWxsCgpsb2NhbCByYXRlTGltaXQgPSBmdW5jdGlvbihqb2JJZCwgbWF4Sm9icykKICBsb2NhbCByYXRlTGltaXRlcktleSA9IEtFWVNbNl07CiAgbG9jYWwgbGltaXRlckluZGV4VGFibGUgPSByYXRlTGltaXRlcktleSAuLiAiOmluZGV4IgoKICAtLSBSYXRlIGxpbWl0IGJ5IGdyb3VwPwogIGlmKEFSR1ZbOV0pIHRoZW4KICAgIGxvY2FsIGdyb3VwID0gc3RyaW5nLm1hdGNoKGpvYklkLCAiW146XSskIikKICAgIGlmIGdyb3VwIH49IG5pbCB0aGVuCiAgICAgIHJhdGVMaW1pdGVyS2V5ID0gcmF0ZUxpbWl0ZXJLZXkgLi4gIjoiIC4uIGdyb3VwCiAgICBlbmQKICBlbmQKCiAgLS0gLS0ga2V5IGZvciBzdG9yaW5nIHJhdGUgbGltaXRlZCBqb2JzCiAgLS0gV2hlbiBhIGpvYiBoYXMgYmVlbiBwcmV2aW91c2x5IHJhdGUgbGltaXRlZCBpdCBzaG91bGQgYmUgcGFydCBvZiB0aGlzIHNldAogIC0tIGlmIHRoZSBqb2IgaXMgYmFjayBoZXJlIG1lYW5zIHRoYXQgdGhlIGRlbGF5IHRpbWUgZm9yIHRoaXMgam9iIGhhcyBwYXNzZWQgYW5kIG5vdyB3ZSBzaG91bGQKICAtLSBiZSBhYmxlIHRvIHByb2Nlc3MgaXQgYWdhaW4uCiAgbG9jYWwgbGltaXRlZFNldEtleSA9IHJhdGVMaW1pdGVyS2V5IC4uICI6bGltaXRlZCIKICBsb2NhbCBkZWxheSA9IDAKCiAgLS0gLS0gQ2hlY2sgaWYgam9iIHdhcyBhbHJlYWR5IGxpbWl0ZWQKICBsb2NhbCBpc0xpbWl0ZWQgPSByY2FsbCgiU0lTTUVNQkVSIiwgbGltaXRlZFNldEtleSwgam9iSWQpOwoKICBpZiBpc0xpbWl0ZWQgPT0gMSB0aGVuCiAgICAgLS0gUmVtb3ZlIGZyb20gbGltaXRlZCB6c2V0IHNpbmNlIHdlIGFyZSBnb2luZyB0byB0cnkgdG8gcHJvY2VzcyBpdAogICAgIHJjYWxsKCJTUkVNIiwgbGltaXRlZFNldEtleSwgam9iSWQpCiAgICAgcmNhbGwoIkhERUwiLCBsaW1pdGVySW5kZXhUYWJsZSwgam9iSWQpCiAgZWxzZQogICAgLS0gSWYgbm90LCBjaGVjayBpZiB0aGVyZSBhcmUgYW55IGxpbWl0ZWQgam9icwogICAgLS0gSWYgdGhlIGpvYiBoYXMgbm90IGJlZW4gcmF0ZSBsaW1pdGVkLCB3ZSBzaG91bGQgY2hlY2sgaWYgdGhlcmUgYXJlIGFueSBvdGhlciByYXRlIGxpbWl0ZWQgam9icywgYmVjYXVzZSBpZiB0aGF0CiAgICAtLSBpcyB0aGUgY2FzZSB3ZSBkbyBub3Qgd2FudCB0byBwcm9jZXNzIHRoaXMgam9iLCBqdXN0IGNhbGN1bGF0ZSBhIGRlbGF5IGZvciBpdCBhbmQgcHV0IGl0IHRvICJzbGVlcCIuCiAgICBsb2NhbCBudW1MaW1pdGVkSm9icyA9IHJjYWxsKCJTQ0FSRCIsIGxpbWl0ZWRTZXRLZXkpCgogICAgaWYgbnVtTGltaXRlZEpvYnMgPiAwIHRoZW4KICAgICAgLS0gTm90ZSwgYWRkIHNvbWUgc2xhY2sgdG8gY29tcGVuc2F0ZSBmb3IgZHJpZnQuCiAgICAgIGRlbGF5ID0gKChudW1MaW1pdGVkSm9icyAqIEFSR1ZbN10gKiAxLjEpIC8gIG1heEpvYnMpICsgdG9udW1iZXIocmNhbGwoIlBUVEwiLCByYXRlTGltaXRlcktleSkpCiAgICBlbmQKICBlbmQKCiAgbG9jYWwgam9iQ291bnRlciA9IHRvbnVtYmVyKHJjYWxsKCJHRVQiLCByYXRlTGltaXRlcktleSkpCiAgaWYoam9iQ291bnRlciA9PSBuaWwpIHRoZW4KICAgIGpvYkNvdW50ZXIgPSAwCiAgZW5kCiAgLS0gY2hlY2sgaWYgcmF0ZSBsaW1pdCBoaXQKICBpZiAoZGVsYXkgPT0gMCkgYW5kIChqb2JDb3VudGVyID49IG1heEpvYnMpIHRoZW4KICAgIC0tIFNlZW1zIGxpa2UgdGhlcmUgYXJlIG5vIGN1cnJlbnQgcmF0ZWQgbGltaXRlZCBqb2JzLCBidXQgdGhlIGpvYkNvdW50ZXIgaGFzIGV4Y2VlZGVkIHRoZSBudW1iZXIgb2Ygam9icyBmb3IgdGhpcyB1bml0IG9mIHRpbWUgc28gd2UgbmVlZCB0byByYXRlIGxpbWl0IHRoaXMgam9iLgogICAgbG9jYWwgZXhjZWVkaW5nSm9icyA9IGpvYkNvdW50ZXIgLSBtYXhKb2JzCiAgICBkZWxheSA9IHRvbnVtYmVyKHJjYWxsKCJQVFRMIiwgcmF0ZUxpbWl0ZXJLZXkpKSArICgoZXhjZWVkaW5nSm9icykgKiBBUkdWWzddKSAvIG1heEpvYnMKICBlbmQKCiAgaWYgZGVsYXkgPiAwIHRoZW4KICAgIGxvY2FsIGJvdW5jZUJhY2sgPSBBUkdWWzhdCiAgICBpZiBib3VuY2VCYWNrID09ICdmYWxzZScgdGhlbgogICAgICBsb2NhbCB0aW1lc3RhbXAgPSBkZWxheSArIHRvbnVtYmVyKEFSR1ZbNF0pCiAgICAgIC0tIHB1dCBqb2IgaW50byBkZWxheWVkIHF1ZXVlCiAgICAgIHJjYWxsKCJaQUREIiwgS0VZU1s3XSwgdGltZXN0YW1wICogMHgxMDAwICsgYml0LmJhbmQoam9iQ291bnRlciwgMHhmZmYpLCBqb2JJZCkKICAgICAgcmNhbGwoIlBVQkxJU0giLCBLRVlTWzddLCB0aW1lc3RhbXApCiAgICAgIHJjYWxsKCJTQUREIiwgbGltaXRlZFNldEtleSwgam9iSWQpCgogICAgICAtLSBzdG9yZSBpbmRleCBzbyB0aGF0IHdlIGNhbiBkZWxldGUgcmF0ZSBsaW1pdGVkIGRhdGEKICAgICAgcmNhbGwoIkhTRVQiLCBsaW1pdGVySW5kZXhUYWJsZSwgam9iSWQsIGxpbWl0ZWRTZXRLZXkpCgogICAgZW5kCgogICAgLS0gcmVtb3ZlIGZyb20gYWN0aXZlIHF1ZXVlCiAgICByY2FsbCgiTFJFTSIsIEtFWVNbMl0sIDEsIGpvYklkKQogICAgcmV0dXJuIHRydWUKICBlbHNlCiAgICAtLSBmYWxzZSBpbmRpY2F0ZXMgbm90IHJhdGUgbGltaXRlZAogICAgLS0gaW5jcmVtZW50IGpvYkNvdW50ZXIgb25seSB3aGVuIGEgam9iIGlzIG5vdCByYXRlIGxpbWl0ZWQKICAgIGlmIChqb2JDb3VudGVyID09IDApIHRoZW4KICAgICAgcmNhbGwoIlBTRVRFWCIsIHJhdGVMaW1pdGVyS2V5LCBBUkdWWzddLCAxKQogICAgZWxzZQogICAgICByY2FsbCgiSU5DUiIsIHJhdGVMaW1pdGVyS2V5KQogICAgZW5kCiAgICByZXR1cm4gZmFsc2UKICBlbmQKZW5kCgpsb2NhbCBqb2JJZCA9IEFSR1ZbNV0KCmlmIGpvYklkIH49ICcnIHRoZW4KICAtLSBjbGVhbiBzdGFsbGVkIGtleQogIHJjYWxsKCJTUkVNIiwgS0VZU1s1XSwgam9iSWQpCmVsc2UKICAtLSBtb3ZlIGZyb20gd2FpdCB0byBhY3RpdmUKICBqb2JJZCA9IHJjYWxsKCJSUE9QTFBVU0giLCBLRVlTWzFdLCBLRVlTWzJdKQplbmQKCmlmIGpvYklkIHRoZW4KICAtLSBDaGVjayBpZiB3ZSBuZWVkIHRvIHBlcmZvcm0gcmF0ZSBsaW1pdGluZy4KICBsb2NhbCBtYXhKb2JzID0gdG9udW1iZXIoQVJHVls2XSkKCiAgaWYgbWF4Sm9icyB0aGVuCiAgICBpZiByYXRlTGltaXQoam9iSWQsIG1heEpvYnMpIHRoZW4KICAgICAgIHJldHVybgogICAgZW5kCiAgZW5kCgogIC0tIGdldCBhIGxvY2sKICBsb2NhbCBqb2JLZXkgPSBBUkdWWzFdIC4uIGpvYklkCiAgbG9jYWwgbG9ja0tleSA9IGpvYktleSAuLiAnOmxvY2snCiAgcmNhbGwoIlNFVCIsIGxvY2tLZXksIEFSR1ZbMl0sICJQWCIsIEFSR1ZbM10pCgogIC0tIHJlbW92ZSBmcm9tIHByaW9yaXR5CiAgcmNhbGwoIlpSRU0iLCBLRVlTWzNdLCBqb2JJZCkKICByY2FsbCgiUFVCTElTSCIsIEtFWVNbNF0sIGpvYklkKQogIHJjYWxsKCJIU0VUIiwgam9iS2V5LCAicHJvY2Vzc2VkT24iLCBBUkdWWzRdKQoKICByZXR1cm4ge3JjYWxsKCJIR0VUQUxMIiwgam9iS2V5KSwgam9iSWR9IC0tIGdldCBqb2IgZGF0YQplbHNlCiAgcmNhbGwoIlBVQkxJU0giLCBLRVlTWzhdLCAiIikKZW5kCgoNCiQxDQo4DQokMjQNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6d2FpdA0KJDI2DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmFjdGl2ZQ0KJDI4DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnByaW9yaXR5DQokNjMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlQDUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnN0YWxsZWQNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpsaW1pdGVyDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRyYWluZWQNCiQyMA0KYnVsbDphZ2dyZWdhdGVDaGVjazoNCiQzNg0KNTAwMzJmNTQtNDE0NC00NTY0LTk0N2YtOTI1OWJmZTczYTFlDQokNQ0KMzAwMDANCiQxMw0KMTcxNTY3MjAzMTgxOA0KJDUzDQpyZXBlYXQ6MjhmZDc3NzRlNjcxMTQyNjBkY2FlMTllMDEzMTU3ZGQ6MTcxMzk4MzQwMDAwMA0K + genericresponses: + - origin: server + message: + - type: binary + data: KjINCioxNA0KJDQNCmRhdGENCiQyDQp7fQ0KJDUNCmRlbGF5DQokMQ0KMA0KJDkNCnRpbWVzdGFtcA0KJDEzDQoxNzEzOTAzOTM4MzUzDQokMTENCnByb2Nlc3NlZE9uDQokMTMNCjE3MTU2NzIwMzE4MTgNCiQ4DQpwcmlvcml0eQ0KJDENCjANCiQ0DQpvcHRzDQokMjIxDQp7InJlcGVhdCI6eyJjb3VudCI6MSwia2V5IjoiX19kZWZhdWx0X186Ojo6MCAwICogKiAqIiwiY3JvbiI6IjAgMCAqICogKiJ9LCJqb2JJZCI6InJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzEzOTgzNDAwMDAwIiwiZGVsYXkiOjc5NDYxNjQ3LCJ0aW1lc3RhbXAiOjE3MTM5MDM5MzgzNTMsInByZXZNaWxsaXMiOjE3MTM5ODM0MDAwMDAsImF0dGVtcHRzIjoxfQ0KJDQNCm5hbWUNCiQxMQ0KX19kZWZhdWx0X18NCiQ1Mw0KcmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTM5ODM0MDAwMDANCg== + reqtimestampmock: 2024-05-14T13:03:51.82001416+05:30 + restimestampmock: 2024-05-14T13:03:51.820066701+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-19 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjMNCiQ2DQp6c2NvcmUNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpyZXBlYXQNCiQyNA0KX19kZWZhdWx0X186Ojo6MCAwICogKiAqDQo= + genericresponses: + - origin: server + message: + - type: binary + data: JDEzDQoxNzE1NzExNDAwMDAwDQo= + reqtimestampmock: 2024-05-14T13:03:51.822306018+05:30 + restimestampmock: 2024-05-14T13:03:51.822317476+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-20 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQ0DQp6YWRkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cmVwZWF0DQokMTMNCjE3MTU3MTE0MDAwMDANCiQyNA0KX19kZWZhdWx0X186Ojo6MCAwICogKiAqDQo= + genericresponses: + - origin: server + message: + - type: binary + data: OjANCg== + reqtimestampmock: 2024-05-14T13:03:51.822500474+05:30 + restimestampmock: 2024-05-14T13:03:51.822506516+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-21 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjENCiQ0DQppbmZvDQo= + genericresponses: + - origin: server + message: + - type: binary + data: JDUyNjYNCiMgU2VydmVyDQpyZWRpc192ZXJzaW9uOjcuMi40DQpyZWRpc19naXRfc2hhMTowMDAwMDAwMA0KcmVkaXNfZ2l0X2RpcnR5OjANCnJlZGlzX2J1aWxkX2lkOjdkM2NhOTlkZGU2YjU2YzYNCnJlZGlzX21vZGU6c3RhbmRhbG9uZQ0Kb3M6TGludXggNi41LjAtMjctZ2VuZXJpYyBhYXJjaDY0DQphcmNoX2JpdHM6NjQNCm1vbm90b25pY19jbG9jazpQT1NJWCBjbG9ja19nZXR0aW1lDQptdWx0aXBsZXhpbmdfYXBpOmVwb2xsDQphdG9taWN2YXJfYXBpOmMxMS1idWlsdGluDQpnY2NfdmVyc2lvbjoxMy4yLjENCnByb2Nlc3NfaWQ6MQ0KcHJvY2Vzc19zdXBlcnZpc2VkOm5vDQpydW5faWQ6YTI4Y2U5YTViMmRjMWY4ZTY1MjM2M2MzYTIyYWQ5NzQ1YmI4Yjk4OA0KdGNwX3BvcnQ6NjM3OQ0Kc2VydmVyX3RpbWVfdXNlYzoxNzE1NjcyMDMxNzQwNTg4DQp1cHRpbWVfaW5fc2Vjb25kczozDQp1cHRpbWVfaW5fZGF5czowDQpoejoxMA0KY29uZmlndXJlZF9oejoxMA0KbHJ1X2Nsb2NrOjQzOTU5OTkNCmV4ZWN1dGFibGU6L2RhdGEvcmVkaXMtc2VydmVyDQpjb25maWdfZmlsZToNCmlvX3RocmVhZHNfYWN0aXZlOjANCmxpc3RlbmVyMDpuYW1lPXRjcCxiaW5kPXJlZGlzLHBvcnQ9NjM3OQ0KDQojIENsaWVudHMNCmNvbm5lY3RlZF9jbGllbnRzOjINCmNsdXN0ZXJfY29ubmVjdGlvbnM6MA0KbWF4Y2xpZW50czoxMDAwMA0KY2xpZW50X3JlY2VudF9tYXhfaW5wdXRfYnVmZmVyOjANCmNsaWVudF9yZWNlbnRfbWF4X291dHB1dF9idWZmZXI6MA0KYmxvY2tlZF9jbGllbnRzOjANCnRyYWNraW5nX2NsaWVudHM6MA0KY2xpZW50c19pbl90aW1lb3V0X3RhYmxlOjANCnRvdGFsX2Jsb2NraW5nX2tleXM6MA0KdG90YWxfYmxvY2tpbmdfa2V5c19vbl9ub2tleTowDQoNCiMgTWVtb3J5DQp1c2VkX21lbW9yeTo5NjE4MTYNCnVzZWRfbWVtb3J5X2h1bWFuOjkzOS4yN0sNCnVzZWRfbWVtb3J5X3Jzczo4MjU3NTM2DQp1c2VkX21lbW9yeV9yc3NfaHVtYW46Ny44OE0NCnVzZWRfbWVtb3J5X3BlYWs6OTYxODE2DQp1c2VkX21lbW9yeV9wZWFrX2h1bWFuOjkzOS4yN0sNCnVzZWRfbWVtb3J5X3BlYWtfcGVyYzoxMDIuNDQlDQp1c2VkX21lbW9yeV9vdmVyaGVhZDo4OTkyNjQNCnVzZWRfbWVtb3J5X3N0YXJ0dXA6ODk4NjAwDQp1c2VkX21lbW9yeV9kYXRhc2V0OjYyNTUyDQp1c2VkX21lbW9yeV9kYXRhc2V0X3BlcmM6OTguOTUlDQphbGxvY2F0b3JfYWxsb2NhdGVkOjIyMTQyNDANCmFsbG9jYXRvcl9hY3RpdmU6NzIwODk2MA0KYWxsb2NhdG9yX3Jlc2lkZW50Ojg3ODE4MjQNCnRvdGFsX3N5c3RlbV9tZW1vcnk6NDA5Mzk1MjAwMA0KdG90YWxfc3lzdGVtX21lbW9yeV9odW1hbjozLjgxRw0KdXNlZF9tZW1vcnlfbHVhOjMxNzQ0DQp1c2VkX21lbW9yeV92bV9ldmFsOjMxNzQ0DQp1c2VkX21lbW9yeV9sdWFfaHVtYW46MzEuMDBLDQp1c2VkX21lbW9yeV9zY3JpcHRzX2V2YWw6MA0KbnVtYmVyX29mX2NhY2hlZF9zY3JpcHRzOjANCm51bWJlcl9vZl9mdW5jdGlvbnM6MA0KbnVtYmVyX29mX2xpYnJhcmllczowDQp1c2VkX21lbW9yeV92bV9mdW5jdGlvbnM6MzI3NjgNCnVzZWRfbWVtb3J5X3ZtX3RvdGFsOjY0NTEyDQp1c2VkX21lbW9yeV92bV90b3RhbF9odW1hbjo2My4wMEsNCnVzZWRfbWVtb3J5X2Z1bmN0aW9uczoxODQNCnVzZWRfbWVtb3J5X3NjcmlwdHM6MTg0DQp1c2VkX21lbW9yeV9zY3JpcHRzX2h1bWFuOjE4NEINCm1heG1lbW9yeTowDQptYXhtZW1vcnlfaHVtYW46MEINCm1heG1lbW9yeV9wb2xpY3k6bm9ldmljdGlvbg0KYWxsb2NhdG9yX2ZyYWdfcmF0aW86My4yNg0KYWxsb2NhdG9yX2ZyYWdfYnl0ZXM6NDk5NDcyMA0KYWxsb2NhdG9yX3Jzc19yYXRpbzoxLjIyDQphbGxvY2F0b3JfcnNzX2J5dGVzOjE1NzI4NjQNCnJzc19vdmVyaGVhZF9yYXRpbzowLjk0DQpyc3Nfb3ZlcmhlYWRfYnl0ZXM6LTUyNDI4OA0KbWVtX2ZyYWdtZW50YXRpb25fcmF0aW86OS4xNA0KbWVtX2ZyYWdtZW50YXRpb25fYnl0ZXM6NzM1NDA3Mg0KbWVtX25vdF9jb3VudGVkX2Zvcl9ldmljdDowDQptZW1fcmVwbGljYXRpb25fYmFja2xvZzowDQptZW1fdG90YWxfcmVwbGljYXRpb25fYnVmZmVyczowDQptZW1fY2xpZW50c19zbGF2ZXM6MA0KbWVtX2NsaWVudHNfbm9ybWFsOjANCm1lbV9jbHVzdGVyX2xpbmtzOjANCm1lbV9hb2ZfYnVmZmVyOjANCm1lbV9hbGxvY2F0b3I6amVtYWxsb2MtNS4zLjANCmFjdGl2ZV9kZWZyYWdfcnVubmluZzowDQpsYXp5ZnJlZV9wZW5kaW5nX29iamVjdHM6MA0KbGF6eWZyZWVkX29iamVjdHM6MA0KDQojIFBlcnNpc3RlbmNlDQpsb2FkaW5nOjANCmFzeW5jX2xvYWRpbmc6MA0KY3VycmVudF9jb3dfcGVhazowDQpjdXJyZW50X2Nvd19zaXplOjANCmN1cnJlbnRfY293X3NpemVfYWdlOjANCmN1cnJlbnRfZm9ya19wZXJjOjAuMDANCmN1cnJlbnRfc2F2ZV9rZXlzX3Byb2Nlc3NlZDowDQpjdXJyZW50X3NhdmVfa2V5c190b3RhbDowDQpyZGJfY2hhbmdlc19zaW5jZV9sYXN0X3NhdmU6MA0KcmRiX2Jnc2F2ZV9pbl9wcm9ncmVzczowDQpyZGJfbGFzdF9zYXZlX3RpbWU6MTcxNTY3MjAyOA0KcmRiX2xhc3RfYmdzYXZlX3N0YXR1czpvaw0KcmRiX2xhc3RfYmdzYXZlX3RpbWVfc2VjOi0xDQpyZGJfY3VycmVudF9iZ3NhdmVfdGltZV9zZWM6LTENCnJkYl9zYXZlczowDQpyZGJfbGFzdF9jb3dfc2l6ZTowDQpyZGJfbGFzdF9sb2FkX2tleXNfZXhwaXJlZDoyDQpyZGJfbGFzdF9sb2FkX2tleXNfbG9hZGVkOjgNCmFvZl9lbmFibGVkOjANCmFvZl9yZXdyaXRlX2luX3Byb2dyZXNzOjANCmFvZl9yZXdyaXRlX3NjaGVkdWxlZDowDQphb2ZfbGFzdF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfY3VycmVudF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfbGFzdF9iZ3Jld3JpdGVfc3RhdHVzOm9rDQphb2ZfcmV3cml0ZXM6MA0KYW9mX3Jld3JpdGVzX2NvbnNlY3V0aXZlX2ZhaWx1cmVzOjANCmFvZl9sYXN0X3dyaXRlX3N0YXR1czpvaw0KYW9mX2xhc3RfY293X3NpemU6MA0KbW9kdWxlX2ZvcmtfaW5fcHJvZ3Jlc3M6MA0KbW9kdWxlX2ZvcmtfbGFzdF9jb3dfc2l6ZTowDQoNCiMgU3RhdHMNCnRvdGFsX2Nvbm5lY3Rpb25zX3JlY2VpdmVkOjINCnRvdGFsX2NvbW1hbmRzX3Byb2Nlc3NlZDowDQppbnN0YW50YW5lb3VzX29wc19wZXJfc2VjOjANCnRvdGFsX25ldF9pbnB1dF9ieXRlczoxNA0KdG90YWxfbmV0X291dHB1dF9ieXRlczowDQp0b3RhbF9uZXRfcmVwbF9pbnB1dF9ieXRlczowDQp0b3RhbF9uZXRfcmVwbF9vdXRwdXRfYnl0ZXM6MA0KaW5zdGFudGFuZW91c19pbnB1dF9rYnBzOjAuMDANCmluc3RhbnRhbmVvdXNfb3V0cHV0X2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19pbnB1dF9yZXBsX2ticHM6MC4wMA0KaW5zdGFudGFuZW91c19vdXRwdXRfcmVwbF9rYnBzOjAuMDANCnJlamVjdGVkX2Nvbm5lY3Rpb25zOjANCnN5bmNfZnVsbDowDQpzeW5jX3BhcnRpYWxfb2s6MA0Kc3luY19wYXJ0aWFsX2VycjowDQpleHBpcmVkX2tleXM6MA0KZXhwaXJlZF9zdGFsZV9wZXJjOjAuMDANCmV4cGlyZWRfdGltZV9jYXBfcmVhY2hlZF9jb3VudDowDQpleHBpcmVfY3ljbGVfY3B1X21pbGxpc2Vjb25kczowDQpldmljdGVkX2tleXM6MA0KZXZpY3RlZF9jbGllbnRzOjANCnRvdGFsX2V2aWN0aW9uX2V4Y2VlZGVkX3RpbWU6MA0KY3VycmVudF9ldmljdGlvbl9leGNlZWRlZF90aW1lOjANCmtleXNwYWNlX2hpdHM6MA0Ka2V5c3BhY2VfbWlzc2VzOjANCnB1YnN1Yl9jaGFubmVsczowDQpwdWJzdWJfcGF0dGVybnM6MA0KcHVic3Vic2hhcmRfY2hhbm5lbHM6MA0KbGF0ZXN0X2ZvcmtfdXNlYzowDQp0b3RhbF9mb3JrczowDQptaWdyYXRlX2NhY2hlZF9zb2NrZXRzOjANCnNsYXZlX2V4cGlyZXNfdHJhY2tlZF9rZXlzOjANCmFjdGl2ZV9kZWZyYWdfaGl0czowDQphY3RpdmVfZGVmcmFnX21pc3NlczowDQphY3RpdmVfZGVmcmFnX2tleV9oaXRzOjANCmFjdGl2ZV9kZWZyYWdfa2V5X21pc3NlczowDQp0b3RhbF9hY3RpdmVfZGVmcmFnX3RpbWU6MA0KY3VycmVudF9hY3RpdmVfZGVmcmFnX3RpbWU6MA0KdHJhY2tpbmdfdG90YWxfa2V5czowDQp0cmFja2luZ190b3RhbF9pdGVtczowDQp0cmFja2luZ190b3RhbF9wcmVmaXhlczowDQp1bmV4cGVjdGVkX2Vycm9yX3JlcGxpZXM6MA0KdG90YWxfZXJyb3JfcmVwbGllczowDQpkdW1wX3BheWxvYWRfc2FuaXRpemF0aW9uczowDQp0b3RhbF9yZWFkc19wcm9jZXNzZWQ6MQ0KdG90YWxfd3JpdGVzX3Byb2Nlc3NlZDowDQppb190aHJlYWRlZF9yZWFkc19wcm9jZXNzZWQ6MA0KaW9fdGhyZWFkZWRfd3JpdGVzX3Byb2Nlc3NlZDowDQpyZXBseV9idWZmZXJfc2hyaW5rczowDQpyZXBseV9idWZmZXJfZXhwYW5kczowDQpldmVudGxvb3BfY3ljbGVzOjM3DQpldmVudGxvb3BfZHVyYXRpb25fc3VtOjMyODYNCmV2ZW50bG9vcF9kdXJhdGlvbl9jbWRfc3VtOjANCmluc3RhbnRhbmVvdXNfZXZlbnRsb29wX2N5Y2xlc19wZXJfc2VjOjkNCmluc3RhbnRhbmVvdXNfZXZlbnRsb29wX2R1cmF0aW9uX3VzZWM6ODENCmFjbF9hY2Nlc3NfZGVuaWVkX2F1dGg6MA0KYWNsX2FjY2Vzc19kZW5pZWRfY21kOjANCmFjbF9hY2Nlc3NfZGVuaWVkX2tleTowDQphY2xfYWNjZXNzX2RlbmllZF9jaGFubmVsOjANCg0KIyBSZXBsaWNhdGlvbg0Kcm9sZTptYXN0ZXINCmNvbm5lY3RlZF9zbGF2ZXM6MA0KbWFzdGVyX2ZhaWxvdmVyX3N0YXRlOm5vLWZhaWxvdmVyDQptYXN0ZXJfcmVwbGlkOmU3YmI0YmE1NWVlMjZjMTg5ODA4ZjlmOGIzYmQ0NjkyZWFlODIzYzINCm1hc3Rlcl9yZXBsaWQyOjAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDANCm1hc3Rlcl9yZXBsX29mZnNldDoxMjYNCnNlY29uZF9yZXBsX29mZnNldDotMQ0KcmVwbF9iYWNrbG9nX2FjdGl2ZTowDQpyZXBsX2JhY2tsb2dfc2l6ZToxMDQ4NTc2DQpyZXBsX2JhY2tsb2dfZmlyc3RfYnl0ZV9vZmZzZXQ6MA0KcmVwbF9iYWNrbG9nX2hpc3RsZW46MA0KDQojIENQVQ0KdXNlZF9jcHVfc3lzOjAuMDMzNTYxDQp1c2VkX2NwdV91c2VyOjAuMDA0MjM0DQp1c2VkX2NwdV9zeXNfY2hpbGRyZW46MC4wMDAwMDANCnVzZWRfY3B1X3VzZXJfY2hpbGRyZW46MC4wMDI2NTINCnVzZWRfY3B1X3N5c19tYWluX3RocmVhZDowLjAyOTM5OA0KdXNlZF9jcHVfdXNlcl9tYWluX3RocmVhZDowLjAwNDE5OQ0KDQojIE1vZHVsZXMNCg0KIyBFcnJvcnN0YXRzDQoNCiMgQ2x1c3Rlcg0KY2x1c3Rlcl9lbmFibGVkOjANCg0KIyBLZXlzcGFjZQ0KZGIwOmtleXM9OCxleHBpcmVzPTAsYXZnX3R0bD0wDQoNCg== + reqtimestampmock: 2024-05-14T13:03:51.740284594+05:30 + restimestampmock: 2024-05-14T13:03:51.740851757+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-22 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjIwDQokNw0KZXZhbHNoYQ0KJDQwDQo4ZjU1YWU0YTNiZTQyOWM2ZDM4YzVkNWRiM2U4MGVkZjg5MTk3YjY0DQokMQ0KNg0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIyDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmlkDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDI4DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnByaW9yaXR5DQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokNTMNCnJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzE1NzExNDAwMDAwDQokMTENCl9fZGVmYXVsdF9fDQokMg0Ke30NCiQyMjENCnsicmVwZWF0Ijp7ImNvdW50IjoyLCJrZXkiOiJfX2RlZmF1bHRfXzo6OjowIDAgKiAqICoiLCJjcm9uIjoiMCAwICogKiAqIn0sImpvYklkIjoicmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTU3MTE0MDAwMDAiLCJkZWxheSI6MzkzNjgxNzgsInRpbWVzdGFtcCI6MTcxNTY3MjAzMTgyMiwicHJldk1pbGxpcyI6MTcxNTcxMTQwMDAwMCwiYXR0ZW1wdHMiOjF9DQokMTMNCjE3MTU2NzIwMzE4MjINCiQ4DQozOTM2ODE3OA0KJDEzDQoxNzE1NzExNDAwMDAwDQokMQ0KMA0KJDUNCkxQVVNIDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDUzDQpyZXBlYXQ6MjhmZDc3NzRlNjcxMTQyNjBkY2FlMTllMDEzMTU3ZGQ6MTcxNTcxMTQwMDAwMA0K + reqtimestampmock: 2024-05-14T13:03:51.822917638+05:30 + restimestampmock: 2024-05-14T13:03:51.822924221+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-23 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjI0DQokNw0KZXZhbHNoYQ0KJDQwDQpiYWZhOGEzNTc4NGMyOWMwOWNiZDcwMzQwZDQ5NDAxOTFlZmRiZTkwDQokMQ0KOQ0KJDI2DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmFjdGl2ZQ0KJDI5DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmNvbXBsZXRlZA0KJDczDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzEzOTgzNDAwMDAwDQokMjQNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6d2FpdA0KJDI4DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnByaW9yaXR5DQokNjMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlQDUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpzdGFsbGVkDQokMzcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6bWV0cmljczpjb21wbGV0ZWQNCiQ1Mw0KcmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTM5ODM0MDAwMDANCiQxMw0KMTcxNTY3MjAzMTgyNQ0KJDExDQpyZXR1cm52YWx1ZQ0KJDQNCm51bGwNCiQzNg0KNTAwMzJmNTQtNDE0NC00NTY0LTk0N2YtOTI1OWJmZTczYTFlDQokMTANCt4AAaVjb3VudP8NCiQ2NQ0KeyJqb2JJZCI6InJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzEzOTgzNDAwMDAwIn0NCiQxDQoxDQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokNQ0KMzAwMDANCiQzNg0KNTAwMzJmNTQtNDE0NC00NTY0LTk0N2YtOTI1OWJmZTczYTFlDQokMA0KDQo= + genericresponses: + - origin: server + message: + - type: binary + data: LU5PU0NSSVBUIE5vIG1hdGNoaW5nIHNjcmlwdC4gUGxlYXNlIHVzZSBFVkFMLg0K + reqtimestampmock: 2024-05-14T13:03:51.83043904+05:30 + restimestampmock: 2024-05-14T13:03:51.830455914+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-24 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjI0DQokNA0KZXZhbA0KJDUwMTgNCi0tW1sKICBNb3ZlIGpvYiBmcm9tIGFjdGl2ZSB0byBhIGZpbmlzaGVkIHN0YXR1cyAoY29tcGxldGVkIG9yIGZhaWxlZCkKICBBIGpvYiBjYW4gb25seSBiZSBtb3ZlZCB0byBjb21wbGV0ZWQgaWYgaXQgd2FzIGFjdGl2ZS4KICBUaGUgam9iIG11c3QgYmUgbG9ja2VkIGJlZm9yZSBpdCBjYW4gYmUgbW92ZWQgdG8gYSBmaW5pc2hlZCBzdGF0dXMsCiAgYW5kIHRoZSBsb2NrIG11c3QgYmUgcmVsZWFzZWQgaW4gdGhpcyBzY3JpcHQuCgogICAgIElucHV0OgogICAgICBLRVlTWzFdIGFjdGl2ZSBrZXkKICAgICAgS0VZU1syXSBjb21wbGV0ZWQvZmFpbGVkIGtleQogICAgICBLRVlTWzNdIGpvYklkIGtleQoKICAgICAgS0VZU1s0XSB3YWl0IGtleQogICAgICBLRVlTWzVdIHByaW9yaXR5IGtleQogICAgICBLRVlTWzZdIGFjdGl2ZSBldmVudCBrZXkKCiAgICAgIEtFWVNbN10gZGVsYXllZCBrZXkKICAgICAgS0VZU1s4XSBzdGFsbGVkIGtleQoKICAgICAgS0VZU1s5XSBtZXRyaWNzIGtleQoKICAgICAgQVJHVlsxXSAgam9iSWQKICAgICAgQVJHVlsyXSAgdGltZXN0YW1wCiAgICAgIEFSR1ZbM10gIG1zZyBwcm9wZXJ0eQogICAgICBBUkdWWzRdICByZXR1cm4gdmFsdWUgLyBmYWlsZWQgcmVhc29uCiAgICAgIEFSR1ZbNV0gIHRva2VuCiAgICAgIEFSR1ZbNl0gIHNob3VsZFJlbW92ZQogICAgICBBUkdWWzddICBldmVudCBkYXRhICg/IG1heWJlIGp1c3Qgc2VuZCBqb2JpZCkuCiAgICAgIEFSR1ZbOF0gIHNob3VsZCBmZXRjaCBuZXh0IGpvYgogICAgICBBUkdWWzldICBiYXNlIGtleQogICAgICBBUkdWWzEwXSBsb2NrIHRva2VuCiAgICAgIEFSR1ZbMTFdIGxvY2sgZHVyYXRpb24gaW4gbWlsbGlzZWNvbmRzCiAgICAgIEFSR1ZbMTJdIG1heE1ldHJpY3NTaXplCgogICAgIE91dHB1dDoKICAgICAgMCBPSwogICAgICAtMSBNaXNzaW5nIGtleS4KICAgICAgLTIgTWlzc2luZyBsb2NrLgoKICAgICBFdmVudHM6CiAgICAgICdjb21wbGV0ZWQvZmFpbGVkJwpdXQpsb2NhbCByY2FsbCA9IHJlZGlzLmNhbGwKCi0tW1sKICBGdW5jdGlvbnMgdG8gY29sbGVjdCBtZXRyaWNzIGJhc2VkIG9uIGEgY3VycmVudCBhbmQgcHJldmlvdXMgY291bnQgb2Ygam9icy4KICBHcmFudWFsYXJpdHkgaXMgZml4ZWQgYXQgMSBtaW51dGUuCl1dCmxvY2FsIGZ1bmN0aW9uIGNvbGxlY3RNZXRyaWNzKG1ldGFLZXksIGRhdGFQb2ludHNMaXN0LCBtYXhEYXRhUG9pbnRzLCB0aW1lc3RhbXApCiAgICAtLSBJbmNyZW1lbnQgY3VycmVudCBjb3VudAogICAgbG9jYWwgY291bnQgPSByY2FsbCgiSElOQ1JCWSIsIG1ldGFLZXksICJjb3VudCIsIDEpIC0gMQoKICAgIC0tIENvbXB1dGUgaG93IG1hbnkgZGF0YSBwb2ludHMgd2UgbmVlZCB0byBhZGQgdG8gdGhlIGxpc3QsIE4uCiAgICBsb2NhbCBwcmV2VFMgPSByY2FsbCgiSEdFVCIsIG1ldGFLZXksICJwcmV2VFMiKQoKICAgIGlmIG5vdCBwcmV2VFMgdGhlbgogICAgICAgIC0tIElmIHByZXZUUyBpcyBuaWwsIHNldCBpdCB0byB0aGUgY3VycmVudCB0aW1lc3RhbXAKICAgICAgICByY2FsbCgiSFNFVCIsIG1ldGFLZXksICJwcmV2VFMiLCB0aW1lc3RhbXAsICJwcmV2Q291bnQiLCAwKQogICAgICAgIHJldHVybgogICAgZW5kCgogICAgbG9jYWwgTiA9IG1hdGguZmxvb3IoKHRpbWVzdGFtcCAtIHByZXZUUykgLyA2MDAwMCkKCiAgICBpZiBOID4gMCB0aGVuCiAgICAgICAgbG9jYWwgZGVsdGEgPSBjb3VudCAtIHJjYWxsKCJIR0VUIiwgbWV0YUtleSwgInByZXZDb3VudCIpCiAgICAgICAgLS0gSWYgTiA+IDEsIGFkZCBOLTEgemVyb3MgdG8gdGhlIGxpc3QKICAgICAgICBpZiBOID4gMSB0aGVuCiAgICAgICAgICAgIGxvY2FsIHBvaW50cyA9IHt9CiAgICAgICAgICAgIHBvaW50c1sxXSA9IGRlbHRhCiAgICAgICAgICAgIGZvciBpID0gMiwgTiBkbyBwb2ludHNbaV0gPSAwIGVuZAogICAgICAgICAgICByY2FsbCgiTFBVU0giLCBkYXRhUG9pbnRzTGlzdCwgdW5wYWNrKHBvaW50cykpCiAgICAgICAgZWxzZQogICAgICAgICAgICAtLSBMUFVTSCBkZWx0YSB0byB0aGUgbGlzdAogICAgICAgICAgICByY2FsbCgiTFBVU0giLCBkYXRhUG9pbnRzTGlzdCwgZGVsdGEpCiAgICAgICAgZW5kCgogICAgICAgIC0tIExUUklNIHRvIGtlZXAgbGlzdCB0byBpdHMgbWF4IHNpemUKICAgICAgICByY2FsbCgiTFRSSU0iLCBkYXRhUG9pbnRzTGlzdCwgMCwgbWF4RGF0YVBvaW50cyAtIDEpCgogICAgICAgIC0tIHVwZGF0ZSBwcmV2IGNvdW50IHdpdGggY3VycmVudCBjb3VudAogICAgICAgIHJjYWxsKCJIU0VUIiwgbWV0YUtleSwgInByZXZDb3VudCIsIGNvdW50LCAicHJldlRTIiwgdGltZXN0YW1wKQogICAgZW5kCmVuZAoKaWYgcmNhbGwoIkVYSVNUUyIsIEtFWVNbM10pID09IDEgdGhlbiAtLSAvLyBNYWtlIHN1cmUgam9iIGV4aXN0cwogICAgaWYgQVJHVls1XSB+PSAiMCIgdGhlbgogICAgICAgIGxvY2FsIGxvY2tLZXkgPSBLRVlTWzNdIC4uICc6bG9jaycKICAgICAgICBpZiByY2FsbCgiR0VUIiwgbG9ja0tleSkgPT0gQVJHVls1XSB0aGVuCiAgICAgICAgICAgIHJjYWxsKCJERUwiLCBsb2NrS2V5KQogICAgICAgICAgICByY2FsbCgiU1JFTSIsIEtFWVNbOF0sIEFSR1ZbMV0pCiAgICAgICAgZWxzZQogICAgICAgICAgICByZXR1cm4gLTIKICAgICAgICBlbmQKICAgIGVuZAoKICAgIC0tIFJlbW92ZSBmcm9tIGFjdGl2ZSBsaXN0CiAgICByY2FsbCgiTFJFTSIsIEtFWVNbMV0sIC0xLCBBUkdWWzFdKQoKICAgIC0tIFJlbW92ZSBqb2I/CiAgICBsb2NhbCBrZWVwSm9icyA9IGNtc2dwYWNrLnVucGFjayhBUkdWWzZdKQogICAgbG9jYWwgbWF4Q291bnQgPSBrZWVwSm9ic1snY291bnQnXQogICAgbG9jYWwgbWF4QWdlID0ga2VlcEpvYnNbJ2FnZSddCiAgICBsb2NhbCB0YXJnZXRTZXQgPSBLRVlTWzJdCiAgICBsb2NhbCB0aW1lc3RhbXAgPSBBUkdWWzJdCgogICAgaWYgbWF4Q291bnQgfj0gMCB0aGVuCgogICAgICAgIC0tIEFkZCB0byBjb21wbGV0ZS9mYWlsZWQgc2V0CiAgICAgICAgcmNhbGwoIlpBREQiLCB0YXJnZXRTZXQsIHRpbWVzdGFtcCwgQVJHVlsxXSkKICAgICAgICByY2FsbCgiSE1TRVQiLCBLRVlTWzNdLCBBUkdWWzNdLCBBUkdWWzRdLCAiZmluaXNoZWRPbiIsIHRpbWVzdGFtcCkgLS0gInJldHVybnZhbHVlIiAvICJmYWlsZWRSZWFzb24iIGFuZCAiZmluaXNoZWRPbiIKCiAgICAgICAgbG9jYWwgZnVuY3Rpb24gcmVtb3ZlSm9icyhqb2JJZHMpCiAgICAgICAgICAgIGZvciBpLCBqb2JJZCBpbiBpcGFpcnMoam9iSWRzKSBkbwogICAgICAgICAgICAgICAgbG9jYWwgam9iS2V5ID0gQVJHVls5XSAuLiBqb2JJZAogICAgICAgICAgICAgICAgbG9jYWwgam9iTG9nS2V5ID0gam9iS2V5IC4uICc6bG9ncycKICAgICAgICAgICAgICAgIHJjYWxsKCJERUwiLCBqb2JLZXksIGpvYkxvZ0tleSkKICAgICAgICAgICAgZW5kCiAgICAgICAgZW5kCgogICAgICAgIC0tIFJlbW92ZSBvbGQgam9icz8KICAgICAgICBpZiBtYXhBZ2Ugfj0gbmlsIHRoZW4KICAgICAgICAgICAgbG9jYWwgc3RhcnQgPSB0aW1lc3RhbXAgLSBtYXhBZ2UgKiAxMDAwCiAgICAgICAgICAgIGxvY2FsIGpvYklkcyA9IHJjYWxsKCJaUkVWUkFOR0VCWVNDT1JFIiwgdGFyZ2V0U2V0LCBzdGFydCwgIi1pbmYiKQogICAgICAgICAgICByZW1vdmVKb2JzKGpvYklkcykKICAgICAgICAgICAgcmNhbGwoIlpSRU1SQU5HRUJZU0NPUkUiLCB0YXJnZXRTZXQsICItaW5mIiwgc3RhcnQpCiAgICAgICAgZW5kCgogICAgICAgIGlmIG1heENvdW50IH49IG5pbCBhbmQgbWF4Q291bnQgPiAwIHRoZW4KICAgICAgICAgICAgbG9jYWwgc3RhcnQgPSBtYXhDb3VudAogICAgICAgICAgICBsb2NhbCBqb2JJZHMgPSByY2FsbCgiWlJFVlJBTkdFIiwgdGFyZ2V0U2V0LCBzdGFydCwgLTEpCiAgICAgICAgICAgIHJlbW92ZUpvYnMoam9iSWRzKQogICAgICAgICAgICByY2FsbCgiWlJFTVJBTkdFQllSQU5LIiwgdGFyZ2V0U2V0LCAwLCAtKG1heENvdW50ICsgMSkpOwogICAgICAgIGVuZAogICAgZWxzZQogICAgICAgIGxvY2FsIGpvYkxvZ0tleSA9IEtFWVNbM10gLi4gJzpsb2dzJwogICAgICAgIHJjYWxsKCJERUwiLCBLRVlTWzNdLCBqb2JMb2dLZXkpCiAgICBlbmQKCiAgICAtLSBDb2xsZWN0IG1ldHJpY3MKICAgIGlmIEFSR1ZbMTJdIH49ICIiIHRoZW4KICAgICAgY29sbGVjdE1ldHJpY3MoS0VZU1s5XSwgS0VZU1s5XS4uJzpkYXRhJywgQVJHVlsxMl0sIHRpbWVzdGFtcCkKICAgIGVuZAoKICAgIHJjYWxsKCJQVUJMSVNIIiwgdGFyZ2V0U2V0LCBBUkdWWzddKQoKICAgIC0tIFRyeSB0byBnZXQgbmV4dCBqb2IgdG8gYXZvaWQgYW4gZXh0cmEgcm91bmR0cmlwIGlmIHRoZSBxdWV1ZSBpcyBub3QgY2xvc2luZywgCiAgICAtLSBhbmQgbm90IHJhdGUgbGltaXRlZC4KICAgIGlmIChBUkdWWzhdID09ICIxIikgdGhlbgogICAgICAgIC0tIG1vdmUgZnJvbSB3YWl0IHRvIGFjdGl2ZSAKICAgICAgICBsb2NhbCBqb2JJZCA9IHJjYWxsKCJSUE9QTFBVU0giLCBLRVlTWzRdLCBLRVlTWzFdKQogICAgICAgIGlmIGpvYklkIHRoZW4KICAgICAgICAgICAgbG9jYWwgam9iS2V5ID0gQVJHVls5XSAuLiBqb2JJZAogICAgICAgICAgICBsb2NhbCBsb2NrS2V5ID0gam9iS2V5IC4uICc6bG9jaycKCiAgICAgICAgICAgIC0tIGdldCBhIGxvY2sKICAgICAgICAgICAgcmNhbGwoIlNFVCIsIGxvY2tLZXksIEFSR1ZbMTFdLCAiUFgiLCBBUkdWWzEwXSkKCiAgICAgICAgICAgIHJjYWxsKCJaUkVNIiwgS0VZU1s1XSwgam9iSWQpIC0tIHJlbW92ZSBmcm9tIHByaW9yaXR5CiAgICAgICAgICAgIHJjYWxsKCJQVUJMSVNIIiwgS0VZU1s2XSwgam9iSWQpCiAgICAgICAgICAgIHJjYWxsKCJIU0VUIiwgam9iS2V5LCAicHJvY2Vzc2VkT24iLCBBUkdWWzJdKQoKICAgICAgICAgICAgcmV0dXJuIHtyY2FsbCgiSEdFVEFMTCIsIGpvYktleSksIGpvYklkfSAtLSBnZXQgam9iIGRhdGEKICAgICAgICBlbmQKICAgIGVuZAoKICAgIHJldHVybiAwCmVsc2UKICAgIHJldHVybiAtMQplbmQKDQokMQ0KOQ0KJDI2DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmFjdGl2ZQ0KJDI5DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmNvbXBsZXRlZA0KJDczDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzEzOTgzNDAwMDAwDQokMjQNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6d2FpdA0KJDI4DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnByaW9yaXR5DQokNjMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlQDUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpzdGFsbGVkDQokMzcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6bWV0cmljczpjb21wbGV0ZWQNCiQ1Mw0KcmVwZWF0OjI4ZmQ3Nzc0ZTY3MTE0MjYwZGNhZTE5ZTAxMzE1N2RkOjE3MTM5ODM0MDAwMDANCiQxMw0KMTcxNTY3MjAzMTgyNQ0KJDExDQpyZXR1cm52YWx1ZQ0KJDQNCm51bGwNCiQzNg0KNTAwMzJmNTQtNDE0NC00NTY0LTk0N2YtOTI1OWJmZTczYTFlDQokMTANCt4AAaVjb3VudP8NCiQ2NQ0KeyJqb2JJZCI6InJlcGVhdDoyOGZkNzc3NGU2NzExNDI2MGRjYWUxOWUwMTMxNTdkZDoxNzEzOTgzNDAwMDAwIn0NCiQxDQoxDQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokNQ0KMzAwMDANCiQzNg0KNTAwMzJmNTQtNDE0NC00NTY0LTk0N2YtOTI1OWJmZTczYTFlDQokMA0KDQo= + genericresponses: + - origin: server + message: + - type: binary + data: OjANCg== + reqtimestampmock: 2024-05-14T13:03:51.83043904+05:30 + restimestampmock: 2024-05-14T13:03:51.830455914+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-25 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: JDUzDQpyZXBlYXQ6MjhmZDc3NzRlNjcxMTQyNjBkY2FlMTllMDEzMTU3ZGQ6MTcxMzk4MzQwMDAwMA0K + reqtimestampmock: 2024-05-14T13:03:51.818609379+05:30 + restimestampmock: 2024-05-14T13:03:51.818619504+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-26 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"find":"orders","filter":{},"sort":{"createdAt":{"$numberInt":"1"}},"projection":{},"limit":{"$numberInt":"1"},"singleBatch":true,"batchSize":{"$numberInt":"1"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }], checksum: 0 }' + requests: + - header: + length: 236 + requestId: 6 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"find":"orders","filter":{},"sort":{"createdAt":{"$numberInt":"1"}},"projection":{},"limit":{"$numberInt":"1"},"singleBatch":true,"batchSize":{"$numberInt":"1"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }' + checksum: 0 + read_delay: 15607966 + responses: + - header: + length: 105 + requestId: 8 + responseTo: 6 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"cursor":{"firstBatch":[],"id":{"$numberLong":"0"},"ns":"ecommerce.orders"},"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 1873486 + created: 1715672031 + reqTimestampMock: 2024-05-14T13:03:51.82991421+05:30 + resTimestampMock: 2024-05-14T13:03:51.83193807+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-27 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE0DQokNA0KZXZhbA0KJDIzMzkNCi0tW1sKICBNb3ZlIHN0YWxsZWQgam9icyB0byB3YWl0LgoKICAgIElucHV0OgogICAgICBLRVlTWzFdICdzdGFsbGVkJyAoU0VUKQogICAgICBLRVlTWzJdICd3YWl0JywgICAoTElTVCkKICAgICAgS0VZU1szXSAnYWN0aXZlJywgKExJU1QpCiAgICAgIEtFWVNbNF0gJ2ZhaWxlZCcsIChaU0VUKQogICAgICBLRVlTWzVdICdzdGFsbGVkLWNoZWNrJywgKEtFWSkKCiAgICAgIEtFWVNbNl0gJ21ldGEtcGF1c2VkJywgKEtFWSkKICAgICAgS0VZU1s3XSAncGF1c2VkJywgKExJU1QpCgogICAgICBBUkdWWzFdICBNYXggc3RhbGxlZCBqb2IgY291bnQKICAgICAgQVJHVlsyXSAgcXVldWUudG9LZXkoJycpCiAgICAgIEFSR1ZbM10gIHRpbWVzdGFtcAogICAgICBBUkdWWzRdICBtYXggY2hlY2sgdGltZQoKICAgIEV2ZW50czoKICAgICAgJ3N0YWxsZWQnIHdpdGggc3RhbGxlZCBqb2IgaWQuCl1dCgpsb2NhbCByY2FsbCA9IHJlZGlzLmNhbGwKCi0tIENoZWNrIGlmIHdlIG5lZWQgdG8gY2hlY2sgZm9yIHN0YWxsZWQgam9icyBub3cuCmlmIHJjYWxsKCJFWElTVFMiLCBLRVlTWzVdKSA9PSAxIHRoZW4KICByZXR1cm4ge3t9LCB7fX0KZW5kCgpyY2FsbCgiU0VUIiwgS0VZU1s1XSwgQVJHVlszXSwgIlBYIiwgQVJHVls0XSkKCi0tIE1vdmUgYWxsIHN0YWxsZWQgam9icyB0byB3YWl0CmxvY2FsIHN0YWxsaW5nID0gcmNhbGwoJ1NNRU1CRVJTJywgS0VZU1sxXSkKbG9jYWwgc3RhbGxlZCA9IHt9CmxvY2FsIGZhaWxlZCA9IHt9CmlmKCNzdGFsbGluZyA+IDApIHRoZW4KCiAgbG9jYWwgZHN0CiAgLS0gd2FpdCBvciBwYXVzZWQgZGVzdGluYXRpb24KICBpZiByY2FsbCgiRVhJU1RTIiwgS0VZU1s2XSkgfj0gMSB0aGVuCiAgICBkc3QgPSBLRVlTWzJdCiAgZWxzZQogICAgZHN0ID0gS0VZU1s3XQogIGVuZAoKICByY2FsbCgnREVMJywgS0VZU1sxXSkKCiAgbG9jYWwgTUFYX1NUQUxMRURfSk9CX0NPVU5UID0gdG9udW1iZXIoQVJHVlsxXSkKCiAgLS0gUmVtb3ZlIGZyb20gYWN0aXZlIGxpc3QKICBmb3IgaSwgam9iSWQgaW4gaXBhaXJzKHN0YWxsaW5nKSBkbwogICAgbG9jYWwgam9iS2V5ID0gQVJHVlsyXSAuLiBqb2JJZAoKICAgIC0tIENoZWNrIHRoYXQgdGhlIGxvY2sgaXMgYWxzbyBtaXNzaW5nLCB0aGVuIHdlIGNhbiBoYW5kbGUgdGhpcyBqb2IgYXMgcmVhbGx5IHN0YWxsZWQuCiAgICBpZihyY2FsbCgiRVhJU1RTIiwgam9iS2V5IC4uICI6bG9jayIpID09IDApIHRoZW4KICAgICAgLS0gIFJlbW92ZSBmcm9tIHRoZSBhY3RpdmUgcXVldWUuCiAgICAgIGxvY2FsIHJlbW92ZWQgPSByY2FsbCgiTFJFTSIsIEtFWVNbM10sIDEsIGpvYklkKQoKICAgICAgaWYocmVtb3ZlZCA+IDApIHRoZW4KICAgICAgICAtLSBJZiB0aGlzIGpvYiBoYXMgYmVlbiBzdGFsbGVkIHRvbyBtYW55IHRpbWVzLCBzdWNoIGFzIGlmIGl0IGNyYXNoZXMgdGhlIHdvcmtlciwgdGhlbiBmYWlsIGl0LgogICAgICAgIGxvY2FsIHN0YWxsZWRDb3VudCA9IHJjYWxsKCJISU5DUkJZIiwgam9iS2V5LCAic3RhbGxlZENvdW50ZXIiLCAxKQogICAgICAgIGlmKHN0YWxsZWRDb3VudCA+IE1BWF9TVEFMTEVEX0pPQl9DT1VOVCkgdGhlbgogICAgICAgICAgcmNhbGwoIlpBREQiLCBLRVlTWzRdLCBBUkdWWzNdLCBqb2JJZCkKICAgICAgICAgIHJjYWxsKCJIU0VUIiwgam9iS2V5LCAiZmFpbGVkUmVhc29uIiwgImpvYiBzdGFsbGVkIG1vcmUgdGhhbiBhbGxvd2FibGUgbGltaXQiKQogICAgICAgICAgcmNhbGwoIlBVQkxJU0giLCBLRVlTWzRdLCAgIntcImpvYklkXCI6XCIiIC4uIGpvYklkIC4uICJcIiwgXCJ2YWxcIjogXCJqb2Igc3RhbGxlZCBtb3JlIHRoYW4gbWF4U3RhbGxlZENvdW50XCJ9IikKICAgICAgICAgIHRhYmxlLmluc2VydChmYWlsZWQsIGpvYklkKQogICAgICAgIGVsc2UKICAgICAgICAgIC0tIE1vdmUgdGhlIGpvYiBiYWNrIHRvIHRoZSB3YWl0IHF1ZXVlLCB0byBpbW1lZGlhdGVseSBiZSBwaWNrZWQgdXAgYnkgYSB3YWl0aW5nIHdvcmtlci4KICAgICAgICAgIHJjYWxsKCJSUFVTSCIsIGRzdCwgam9iSWQpCiAgICAgICAgICByY2FsbCgnUFVCTElTSCcsIEtFWVNbMV0gLi4gJ0AnLCBqb2JJZCkKICAgICAgICAgIHRhYmxlLmluc2VydChzdGFsbGVkLCBqb2JJZCkKICAgICAgICBlbmQKICAgICAgZW5kCiAgICBlbmQKICBlbmQKZW5kCgotLSBNYXJrIHBvdGVudGlhbGx5IHN0YWxsZWQgam9icwpsb2NhbCBhY3RpdmUgPSByY2FsbCgnTFJBTkdFJywgS0VZU1szXSwgMCwgLTEpCmlmKCNhY3RpdmUgPiAwKSB0aGVuCiAgcmNhbGwoJ1NBREQnLCBLRVlTWzFdLCB1bnBhY2soYWN0aXZlKSkKZW5kCgpyZXR1cm4ge2ZhaWxlZCwgc3RhbGxlZH0KDQokMQ0KNw0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOnN0YWxsZWQNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6YWN0aXZlDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6ZmFpbGVkDQokMzANCmJ1bGw6c2NoZWR1bGVKb2I6c3RhbGxlZC1jaGVjaw0KJDI4DQpidWxsOnNjaGVkdWxlSm9iOm1ldGEtcGF1c2VkDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6cGF1c2VkDQokMQ0KMQ0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDMxODE1DQokNQ0KMzAwMDANCg== + genericresponses: + - origin: server + message: + - type: binary + data: KjINCiowDQoqMA0K + reqtimestampmock: 2024-05-14T13:03:51.817321055+05:30 + restimestampmock: 2024-05-14T13:03:51.817327763+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-28 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE2DQokNw0KZXZhbHNoYQ0KJDQwDQozNWE0MmI2ZTliM2Y3MTNjYTVlN2U4YTBlMmJkMWM4ZDNmMjgxYmY0DQokMQ0KOA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyOA0KYnVsbDphZ2dyZWdhdGVDaGVjazpwcmlvcml0eQ0KJDYzDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmFjdGl2ZUA1MDAzMmY1NC00MTQ0LTQ1NjQtOTQ3Zi05MjU5YmZlNzNhMWUNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpzdGFsbGVkDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6bGltaXRlcg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkcmFpbmVkDQokMjANCmJ1bGw6YWdncmVnYXRlQ2hlY2s6DQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0KJDUNCjMwMDAwDQokMTMNCjE3MTU2NzIwMzE4MzANCiQwDQoNCg== + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:03:51.83128395+05:30 + restimestampmock: 2024-05-14T13:03:51.831306991+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-29 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:03:56.82121067+05:30 + restimestampmock: 2024-05-14T13:03:56.821241462+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-30 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:03:56.910226852+05:30 + restimestampmock: 2024-05-14T13:03:56.910253685+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-31 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"find":"products","filter":{},"projection":{},"skip":{"$numberInt":"0"},"limit":{"$numberInt":"100"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }], checksum: 0 }' + requests: + - header: + length: 193 + requestId: 8 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"find":"products","filter":{},"projection":{},"skip":{"$numberInt":"0"},"limit":{"$numberInt":"100"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }' + checksum: 0 + read_delay: 8641420228 + responses: + - header: + length: 107 + requestId: 9 + responseTo: 8 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"cursor":{"firstBatch":[],"id":{"$numberLong":"0"},"ns":"ecommerce.products"},"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 1750568 + created: 1715672040 + reqTimestampMock: 2024-05-14T13:04:00.476094607+05:30 + resTimestampMock: 2024-05-14T13:04:00.477952757+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-32 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"find":"referencedorders","filter":{},"projection":{"purchasedProducts":{"$numberInt":"1"}},"skip":{"$numberDouble":"NaN"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }], checksum: 0 }' + requests: + - header: + length: 217 + requestId: 9 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"find":"referencedorders","filter":{},"projection":{"purchasedProducts":{"$numberInt":"1"}},"skip":{"$numberDouble":"NaN"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }' + checksum: 0 + read_delay: 45718308 + responses: + - header: + length: 115 + requestId: 10 + responseTo: 9 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"cursor":{"id":{"$numberLong":"0"},"ns":"ecommerce.referencedorders","firstBatch":[]},"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 748869 + created: 1715672040 + reqTimestampMock: 2024-05-14T13:04:00.523779356+05:30 + resTimestampMock: 2024-05-14T13:04:00.524608432+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-33 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"find":"unshardedreferencedorders","filter":{},"projection":{"purchasedProducts":{"$numberInt":"1"}},"skip":{"$numberDouble":"NaN"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }], checksum: 0 }' + requests: + - header: + length: 226 + requestId: 10 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"find":"unshardedreferencedorders","filter":{},"projection":{"purchasedProducts":{"$numberInt":"1"}},"skip":{"$numberDouble":"NaN"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }' + checksum: 0 + read_delay: 388002394 + responses: + - header: + length: 124 + requestId: 11 + responseTo: 10 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"cursor":{"id":{"$numberLong":"0"},"ns":"ecommerce.unshardedreferencedorders","firstBatch":[]},"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 622537 + created: 1715672040 + reqTimestampMock: 2024-05-14T13:04:00.91268845+05:30 + resTimestampMock: 2024-05-14T13:04:00.913374944+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-34 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"find":"users","filter":{},"projection":{},"skip":{"$numberInt":"0"},"limit":{"$numberInt":"100"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }], checksum: 0 }' + requests: + - header: + length: 190 + requestId: 11 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"find":"users","filter":{},"projection":{},"skip":{"$numberInt":"0"},"limit":{"$numberInt":"100"},"lsid":{"id":{"$binary":{"base64":"dA0tD7zmRDmcelmdYBAegg==","subType":"04"}}},"$db":"ecommerce","$readPreference":{"mode":"secondary"}} }' + checksum: 0 + read_delay: 82790733 + responses: + - header: + length: 726 + requestId: 12 + responseTo: 11 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"cursor":{"firstBatch":[{"_id":{"$oid":"662819ea07cf91da3df1df07"},"firstName":"himanshu","lastName":"raj","email":"admin@gmail.com","role":"SUPER_ADMIN","__v":{"$numberInt":"0"}},{"_id":{"$oid":"6628dac5a7d5b7f1edeaf328"},"firstName":"himanshu","lastName":"raj","email":"admin1@gmail.com","authId":"auth0|6628dac59949aabe059dbf5c","role":"SUPER_ADMIN","__v":{"$numberInt":"0"}},{"_id":{"$oid":"6628dbffa7d5b7f1edeaf32a"},"firstName":"himanshu","lastName":"raj","email":"2@gmail.com","authId":"auth0|6628dbfee51cf81977d25c43","role":"SUPER_ADMIN","__v":{"$numberInt":"0"}},{"_id":{"$oid":"6628e027b16d7879ac569043"},"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","authId":"auth0|6628e027e51cf81977d25eec","role":"SUPER_ADMIN","__v":{"$numberInt":"0"}}],"id":{"$numberLong":"0"},"ns":"ecommerce.users"},"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 2676018 + created: 1715672040 + reqTimestampMock: 2024-05-14T13:04:00.996244843+05:30 + resTimestampMock: 2024-05-14T13:04:00.999039569+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-35 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDM2ODIwDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:03:56.821334586+05:30 + restimestampmock: 2024-05-14T13:03:56.821345878+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-36 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDM2ODIwDQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:03:56.821352086+05:30 + restimestampmock: 2024-05-14T13:03:56.821358377+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-37 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:01.824422413+05:30 + restimestampmock: 2024-05-14T13:04:01.824428871+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-38 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:01.93783249+05:30 + restimestampmock: 2024-05-14T13:04:01.937874656+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-39 +spec: + metadata: + operation: '{ OpMsg flags: 65536, sections: [{ SectionSingle msg: {"hello":true,"maxAwaitTimeMS":{"$numberInt":"10000"},"topologyVersion":{"processId":{"$oid":"664313dc9432be834de47e72"},"counter":{"$numberLong":"0"}},"$db":"admin"} }], checksum: 0 }' + type: config + requests: + - header: + length: 131 + requestId: 7 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 65536 + sections: + - '{ SectionSingle msg: {"hello":true,"maxAwaitTimeMS":{"$numberInt":"10000"},"topologyVersion":{"processId":{"$oid":"664313dc9432be834de47e72"},"counter":{"$numberLong":"0"}},"$db":"admin"} }' + checksum: 0 + read_delay: 510658445 + responses: + - header: + length: 313 + requestId: 14 + responseTo: 7 + Opcode: 2013 + message: + flagBits: 2 + sections: + - '{ SectionSingle msg: {"isWritablePrimary":true,"topologyVersion":{"processId":{"$oid":"664313dc9432be834de47e72"},"counter":{"$numberLong":"0"}},"maxBsonObjectSize":{"$numberInt":"16777216"},"maxMessageSizeBytes":{"$numberInt":"48000000"},"maxWriteBatchSize":{"$numberInt":"100000"},"localTime":{"$date":{"$numberLong":"1715672042260"}},"logicalSessionTimeoutMinutes":{"$numberInt":"30"},"connectionId":{"$numberInt":"1"},"minWireVersion":{"$numberInt":"0"},"maxWireVersion":{"$numberInt":"21"},"readOnly":false,"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 10007760698 + created: 1715672042 + reqTimestampMock: 2024-05-14T13:03:52.253182314+05:30 + resTimestampMock: 2024-05-14T13:04:02.26104501+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Http +name: mock-40 +spec: + metadata: + name: Http + operation: POST + type: HTTP_CLIENT + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: /oauth/token + header: + Accept: '*/*' + Accept-Encoding: gzip,deflate + Connection: close + Content-Length: "262" + Content-Type: application/json + User-Agent: node-fetch/1.0 (+https://github.com/bitinn/node-fetch) + body: '{"username":"commodo enim","password":"esse","client_id":"cw7y3qYxhx2kMb3gCPjVWLJFWX6vrVlE","realm":"Username-Password-Authentication","grant_type":"http://auth0.com/oauth/grant-type/password-realm","audience":"https://dev-ymn41teowxlc7tqf.us.auth0.com/api/v2/"}' + timestamp: 0001-01-01T00:00:00Z + resp: + status_code: 403 + header: + Alt-Svc: h3=":443"; ma=86400 + Cache-Control: private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform + Cf-Cache-Status: DYNAMIC + Cf-Ray: 8839341d3f4b8ef4-BOM + Content-Length: "207" + Content-Type: application/json + Date: Tue, 14 May 2024 07:34:03 GMT + Server: cloudflare + Set-Cookie: did=s%3Av0%3A566422c0-11c4-11ef-9ad0-03c5fd7b4045.un%2FEJbx4ZEVn1f1jBrNe72dHoGFXwgX%2FTO%2FYNY8DrVY; Max-Age=31557600; Path=/; Expires=Wed, 14 May 2025 13:34:03 GMT; HttpOnly; Secure; SameSite=None,did_compat=s%3Av0%3A566422c0-11c4-11ef-9ad0-03c5fd7b4045.un%2FEJbx4ZEVn1f1jBrNe72dHoGFXwgX%2FTO%2FYNY8DrVY; Max-Age=31557600; Path=/; Expires=Wed, 14 May 2025 13:34:03 GMT; HttpOnly; Secure + Strict-Transport-Security: max-age=31536000; includeSubDomains + Vary: Origin, Accept-Encoding + X-Auth0-Requestid: 97912b2e8187aca4aa82 + X-Content-Type-Options: nosniff + X-Ratelimit-Limit: "300" + X-Ratelimit-Remaining: "299" + X-Ratelimit-Reset: "1715672044" + body: '{"error":"unauthorized_client","error_description":"Grant type ''http://auth0.com/oauth/grant-type/password-realm'' not allowed for the client.","error_uri":"https://auth0.com/docs/clients/client-grant-types"}' + status_message: "" + proto_major: 0 + proto_minor: 0 + timestamp: 0001-01-01T00:00:00Z + objects: [] + created: 1715672043 + reqTimestampMock: 2024-05-14T13:04:03.393036007+05:30 + resTimestampMock: 2024-05-14T13:04:03.393036007+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-41 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDQxODIzDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:01.82438483+05:30 + restimestampmock: 2024-05-14T13:04:01.824410455+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-42 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDQxODIzDQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:01.82458387+05:30 + restimestampmock: 2024-05-14T13:04:01.82459862+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-43 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:06.873713703+05:30 + restimestampmock: 2024-05-14T13:04:06.87373337+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-44 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:06.97462838+05:30 + restimestampmock: 2024-05-14T13:04:06.974649672+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-45 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDQ2ODI0DQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:06.825533656+05:30 + restimestampmock: 2024-05-14T13:04:06.825553031+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-46 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDQ2ODI0DQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:06.825579114+05:30 + restimestampmock: 2024-05-14T13:04:06.825587031+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-47 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:11.915937958+05:30 + restimestampmock: 2024-05-14T13:04:11.915980749+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-48 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:12.017126503+05:30 + restimestampmock: 2024-05-14T13:04:12.017187669+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Mongo +name: mock-49 +spec: + metadata: + operation: '{ OpMsg flags: 0, sections: [{ SectionSingle msg: {"ismaster":{"$numberInt":"1"},"$db":"admin"} }], checksum: 0 }' + type: config + requests: + - header: + length: 55 + requestId: 13 + responseTo: 0 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"ismaster":{"$numberInt":"1"},"$db":"admin"} }' + checksum: 0 + read_delay: 10001574061 + responses: + - header: + length: 304 + requestId: 15 + responseTo: 13 + Opcode: 2013 + message: + flagBits: 0 + sections: + - '{ SectionSingle msg: {"ismaster":true,"topologyVersion":{"processId":{"$oid":"664313dc9432be834de47e72"},"counter":{"$numberLong":"0"}},"maxBsonObjectSize":{"$numberInt":"16777216"},"maxMessageSizeBytes":{"$numberInt":"48000000"},"maxWriteBatchSize":{"$numberInt":"100000"},"localTime":{"$date":{"$numberLong":"1715672052257"}},"logicalSessionTimeoutMinutes":{"$numberInt":"30"},"connectionId":{"$numberInt":"4"},"minWireVersion":{"$numberInt":"0"},"maxWireVersion":{"$numberInt":"21"},"readOnly":false,"ok":{"$numberDouble":"1.0"}} }' + checksum: 0 + read_delay: 545328 + created: 1715672052 + reqTimestampMock: 2024-05-14T13:04:12.257684949+05:30 + resTimestampMock: 2024-05-14T13:04:12.258323109+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-50 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDUxODI4DQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:11.828709567+05:30 + restimestampmock: 2024-05-14T13:04:11.828720816+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-51 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDUxODI4DQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:11.829105271+05:30 + restimestampmock: 2024-05-14T13:04:11.829125312+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-52 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:16.949210232+05:30 + restimestampmock: 2024-05-14T13:04:16.949238398+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-53 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:17.050421319+05:30 + restimestampmock: 2024-05-14T13:04:17.050450068+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-54 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDU2ODMyDQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:16.833872369+05:30 + restimestampmock: 2024-05-14T13:04:16.833887411+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-55 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDU2ODMzDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:16.833889619+05:30 + restimestampmock: 2024-05-14T13:04:16.833898827+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-56 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOnN0YWxsZWQNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6YWN0aXZlDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6ZmFpbGVkDQokMzANCmJ1bGw6c2NoZWR1bGVKb2I6c3RhbGxlZC1jaGVjaw0KJDI4DQpidWxsOnNjaGVkdWxlSm9iOm1ldGEtcGF1c2VkDQokMjMNCmJ1bGw6c2NoZWR1bGVKb2I6cGF1c2VkDQokMQ0KMQ0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDYxODE3DQokNQ0KMzAwMDANCg== + genericresponses: + - origin: server + message: + - type: binary + data: KjINCiowDQoqMA0K + reqtimestampmock: 2024-05-14T13:04:21.818626307+05:30 + restimestampmock: 2024-05-14T13:04:21.818657098+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-57 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjE0DQokNw0KZXZhbHNoYQ0KJDQwDQpmZjljMTg2MzQ4MzJiMGI0MTE1YTE5YjRkZTVmNDc4OGE3Y2ZiZDRlDQokMQ0KNw0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOnN0YWxsZWQNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6YWN0aXZlDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZmFpbGVkDQokMzMNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6c3RhbGxlZC1jaGVjaw0KJDMxDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOm1ldGEtcGF1c2VkDQokMjYNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cGF1c2VkDQokMQ0KMQ0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDYxODE4DQokNQ0KMzAwMDANCg== + genericresponses: + - origin: server + message: + - type: binary + data: KjINCiowDQoqMA0K + reqtimestampmock: 2024-05-14T13:04:21.819113302+05:30 + restimestampmock: 2024-05-14T13:04:21.819218259+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-58 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:22.002169038+05:30 + restimestampmock: 2024-05-14T13:04:22.002192954+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-59 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:22.104798283+05:30 + restimestampmock: 2024-05-14T13:04:22.104816991+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-60 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDYxODM0DQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:21.835522296+05:30 + restimestampmock: 2024-05-14T13:04:21.83553467+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-61 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDYxODM1DQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:21.835673711+05:30 + restimestampmock: 2024-05-14T13:04:21.835682252+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-62 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:27.04608672+05:30 + restimestampmock: 2024-05-14T13:04:27.046101928+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-63 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:27.149649594+05:30 + restimestampmock: 2024-05-14T13:04:27.149676427+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-64 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDY2ODM5DQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:26.840583447+05:30 + restimestampmock: 2024-05-14T13:04:26.840599822+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-65 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDY2ODQwDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:26.840682196+05:30 + restimestampmock: 2024-05-14T13:04:26.840693446+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-66 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:32.092096764+05:30 + restimestampmock: 2024-05-14T13:04:32.09215743+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-67 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:32.192297318+05:30 + restimestampmock: 2024-05-14T13:04:32.192320568+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-68 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDcxODQyDQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:31.842675943+05:30 + restimestampmock: 2024-05-14T13:04:31.842689318+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-69 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDcxODQyDQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:31.842716526+05:30 + restimestampmock: 2024-05-14T13:04:31.842727901+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-70 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDIxDQpidWxsOnNjaGVkdWxlSm9iOndhaXQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:37.144193646+05:30 + restimestampmock: 2024-05-14T13:04:37.144220479+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-71 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjQNCiQxMA0KYnJwb3BscHVzaA0KJDI0DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOndhaXQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQxDQo1DQo= + genericresponses: + - origin: server + message: + - type: binary + data: Ki0xDQo= + reqtimestampmock: 2024-05-14T13:04:37.249153501+05:30 + restimestampmock: 2024-05-14T13:04:37.249173459+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-72 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjINCiQzDQpnZXQNCiQxMQ0KbGFzdFN5bmNGb3INCg== + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:03:51.825394869+05:30 + restimestampmock: 2024-05-14T13:03:51.825402244+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-73 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI3DQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOmRlbGF5ZWQNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazphY3RpdmUNCiQyNA0KYnVsbDphZ2dyZWdhdGVDaGVjazp3YWl0DQokMjgNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6cHJpb3JpdHkNCiQyNg0KYnVsbDphZ2dyZWdhdGVDaGVjazpwYXVzZWQNCiQzMQ0KYnVsbDphZ2dyZWdhdGVDaGVjazptZXRhLXBhdXNlZA0KJDIwDQpidWxsOmFnZ3JlZ2F0ZUNoZWNrOg0KJDEzDQoxNzE1NjcyMDc2ODQ4DQokMzYNCjUwMDMyZjU0LTQxNDQtNDU2NC05NDdmLTkyNTliZmU3M2ExZQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDE2DQo3MDI3NTUzODk0NDAwMDQ2DQo= + reqtimestampmock: 2024-05-14T13:04:36.849923007+05:30 + restimestampmock: 2024-05-14T13:04:36.849941715+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-74 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjINCiQ5DQpzdWJzY3JpYmUNCiQyNA0KYnVsbDpzY2hlZHVsZUpvYjpkZWxheWVkDQo= + genericresponses: + - origin: server + message: + - type: binary + data: KjMNCiQ5DQpzdWJzY3JpYmUNCiQyNA0KYnVsbDpzY2hlZHVsZUpvYjpkZWxheWVkDQo6MQ0K + reqtimestampmock: 2024-05-14T13:03:51.808799036+05:30 + restimestampmock: 2024-05-14T13:03:51.810125193+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-75 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjINCiQ5DQpzdWJzY3JpYmUNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkZWxheWVkDQo= + genericresponses: + - origin: server + message: + - type: binary + data: KjMNCiQ5DQpzdWJzY3JpYmUNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkZWxheWVkDQo6MQ0K + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDEzDQoxNzE1NzExNDAwMDAwDQoqMw0KJDcNCm1lc3NhZ2UNCiQyNw0KYnVsbDphZ2dyZWdhdGVDaGVjazpkZWxheWVkDQokMTgNCjE3MTU3MTE0MDAwMDAuMDExMg0K + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + - origin: server + message: + - type: binary + data: KjMNCiQ3DQptZXNzYWdlDQokMjcNCmJ1bGw6YWdncmVnYXRlQ2hlY2s6ZGVsYXllZA0KJDE4DQoxNzE1NzExNDAwMDAwLjAxMTINCg== + reqtimestampmock: 2024-05-14T13:03:51.80891591+05:30 + restimestampmock: 2024-05-14T13:04:36.849448762+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-76 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjENCiQ0DQppbmZvDQoqMjANCiQ3DQpldmFsc2hhDQokNDANCjhmNTVhZTRhM2JlNDI5YzZkMzhjNWQ1ZGIzZTgwZWRmODkxOTdiNjQNCiQxDQo2DQokMjgNCmJ1bGw6YWxpcXVhIGluIG9jY2FlY2F0OndhaXQNCiQzMA0KYnVsbDphbGlxdWEgaW4gb2NjYWVjYXQ6cGF1c2VkDQokMzUNCmJ1bGw6YWxpcXVhIGluIG9jY2FlY2F0Om1ldGEtcGF1c2VkDQokMjYNCmJ1bGw6YWxpcXVhIGluIG9jY2FlY2F0OmlkDQokMzENCmJ1bGw6YWxpcXVhIGluIG9jY2FlY2F0OmRlbGF5ZWQNCiQzMg0KYnVsbDphbGlxdWEgaW4gb2NjYWVjYXQ6cHJpb3JpdHkNCiQyNA0KYnVsbDphbGlxdWEgaW4gb2NjYWVjYXQ6DQokMA0KDQokMTENCl9fZGVmYXVsdF9fDQokMjkNCnsibWVzc2FnZSI6IkV4Y2VwdGV1ciBsYWJvciJ9DQokNjcNCnsiZGVsYXkiOi05MTI5MjM0My4xODYzMzQwNywiYXR0ZW1wdHMiOjEsInRpbWVzdGFtcCI6MTcxNTY3MjA0MzQxOX0NCiQxMw0KMTcxNTY3MjA0MzQxOQ0KJDENCjANCiQxDQowDQokMQ0KMA0KJDUNCkxQVVNIDQokMzYNCmI1NDI5YTNlLWNjODctNDc1ZC1iNDFiLTZiOTE4NjgyMmFjOQ0K + genericresponses: + - origin: server + message: + - type: binary + data: JDUzMzkNCiMgU2VydmVyDQpyZWRpc192ZXJzaW9uOjcuMi40DQpyZWRpc19naXRfc2hhMTowMDAwMDAwMA0KcmVkaXNfZ2l0X2RpcnR5OjANCnJlZGlzX2J1aWxkX2lkOjdkM2NhOTlkZGU2YjU2YzYNCnJlZGlzX21vZGU6c3RhbmRhbG9uZQ0Kb3M6TGludXggNi41LjAtMjctZ2VuZXJpYyBhYXJjaDY0DQphcmNoX2JpdHM6NjQNCm1vbm90b25pY19jbG9jazpQT1NJWCBjbG9ja19nZXR0aW1lDQptdWx0aXBsZXhpbmdfYXBpOmVwb2xsDQphdG9taWN2YXJfYXBpOmMxMS1idWlsdGluDQpnY2NfdmVyc2lvbjoxMy4yLjENCnByb2Nlc3NfaWQ6MQ0KcHJvY2Vzc19zdXBlcnZpc2VkOm5vDQpydW5faWQ6YTI4Y2U5YTViMmRjMWY4ZTY1MjM2M2MzYTIyYWQ5NzQ1YmI4Yjk4OA0KdGNwX3BvcnQ6NjM3OQ0Kc2VydmVyX3RpbWVfdXNlYzoxNzE1NjcyMDQzNDIzNjcxDQp1cHRpbWVfaW5fc2Vjb25kczoxNQ0KdXB0aW1lX2luX2RheXM6MA0KaHo6MTANCmNvbmZpZ3VyZWRfaHo6MTANCmxydV9jbG9jazo0Mzk2MDExDQpleGVjdXRhYmxlOi9kYXRhL3JlZGlzLXNlcnZlcg0KY29uZmlnX2ZpbGU6DQppb190aHJlYWRzX2FjdGl2ZTowDQpsaXN0ZW5lcjA6bmFtZT10Y3AsYmluZD1yZWRpcyxwb3J0PTYzNzkNCg0KIyBDbGllbnRzDQpjb25uZWN0ZWRfY2xpZW50czo4DQpjbHVzdGVyX2Nvbm5lY3Rpb25zOjANCm1heGNsaWVudHM6MTAwMDANCmNsaWVudF9yZWNlbnRfbWF4X2lucHV0X2J1ZmZlcjoyMDU3Mw0KY2xpZW50X3JlY2VudF9tYXhfb3V0cHV0X2J1ZmZlcjowDQpibG9ja2VkX2NsaWVudHM6Mg0KdHJhY2tpbmdfY2xpZW50czowDQpjbGllbnRzX2luX3RpbWVvdXRfdGFibGU6Mg0KdG90YWxfYmxvY2tpbmdfa2V5czoyDQp0b3RhbF9ibG9ja2luZ19rZXlzX29uX25va2V5OjANCg0KIyBNZW1vcnkNCnVzZWRfbWVtb3J5OjE3MzA2NTYNCnVzZWRfbWVtb3J5X2h1bWFuOjEuNjVNDQp1c2VkX21lbW9yeV9yc3M6OTE3NTA0MA0KdXNlZF9tZW1vcnlfcnNzX2h1bWFuOjguNzVNDQp1c2VkX21lbW9yeV9wZWFrOjE4NjA1NTINCnVzZWRfbWVtb3J5X3BlYWtfaHVtYW46MS43N00NCnVzZWRfbWVtb3J5X3BlYWtfcGVyYzo5My4wMiUNCnVzZWRfbWVtb3J5X292ZXJoZWFkOjEwMTMyNzYNCnVzZWRfbWVtb3J5X3N0YXJ0dXA6ODk4NjAwDQp1c2VkX21lbW9yeV9kYXRhc2V0OjcxNzM4MA0KdXNlZF9tZW1vcnlfZGF0YXNldF9wZXJjOjg2LjIyJQ0KYWxsb2NhdG9yX2FsbG9jYXRlZDo0NDczMjE2DQphbGxvY2F0b3JfYWN0aXZlOjk5NjE0NzINCmFsbG9jYXRvcl9yZXNpZGVudDoxMTUzNDMzNg0KdG90YWxfc3lzdGVtX21lbW9yeTo0MDkzOTUyMDAwDQp0b3RhbF9zeXN0ZW1fbWVtb3J5X2h1bWFuOjMuODFHDQp1c2VkX21lbW9yeV9sdWE6Nzg4NDgNCnVzZWRfbWVtb3J5X3ZtX2V2YWw6Nzg4NDgNCnVzZWRfbWVtb3J5X2x1YV9odW1hbjo3Ny4wMEsNCnVzZWRfbWVtb3J5X3NjcmlwdHNfZXZhbDoxODE2OA0KbnVtYmVyX29mX2NhY2hlZF9zY3JpcHRzOjUNCm51bWJlcl9vZl9mdW5jdGlvbnM6MA0KbnVtYmVyX29mX2xpYnJhcmllczowDQp1c2VkX21lbW9yeV92bV9mdW5jdGlvbnM6MzI3NjgNCnVzZWRfbWVtb3J5X3ZtX3RvdGFsOjExMTYxNg0KdXNlZF9tZW1vcnlfdm1fdG90YWxfaHVtYW46MTA5LjAwSw0KdXNlZF9tZW1vcnlfZnVuY3Rpb25zOjE4NA0KdXNlZF9tZW1vcnlfc2NyaXB0czoxODM1Mg0KdXNlZF9tZW1vcnlfc2NyaXB0c19odW1hbjoxNy45MksNCm1heG1lbW9yeTowDQptYXhtZW1vcnlfaHVtYW46MEINCm1heG1lbW9yeV9wb2xpY3k6bm9ldmljdGlvbg0KYWxsb2NhdG9yX2ZyYWdfcmF0aW86Mi4yMw0KYWxsb2NhdG9yX2ZyYWdfYnl0ZXM6NTQ4ODI1Ng0KYWxsb2NhdG9yX3Jzc19yYXRpbzoxLjE2DQphbGxvY2F0b3JfcnNzX2J5dGVzOjE1NzI4NjQNCnJzc19vdmVyaGVhZF9yYXRpbzowLjgwDQpyc3Nfb3ZlcmhlYWRfYnl0ZXM6LTIzNTkyOTYNCm1lbV9mcmFnbWVudGF0aW9uX3JhdGlvOjUuNDMNCm1lbV9mcmFnbWVudGF0aW9uX2J5dGVzOjc0ODQzOTINCm1lbV9ub3RfY291bnRlZF9mb3JfZXZpY3Q6MA0KbWVtX3JlcGxpY2F0aW9uX2JhY2tsb2c6MA0KbWVtX3RvdGFsX3JlcGxpY2F0aW9uX2J1ZmZlcnM6MA0KbWVtX2NsaWVudHNfc2xhdmVzOjANCm1lbV9jbGllbnRzX25vcm1hbDo5NTY3Ng0KbWVtX2NsdXN0ZXJfbGlua3M6MA0KbWVtX2FvZl9idWZmZXI6MA0KbWVtX2FsbG9jYXRvcjpqZW1hbGxvYy01LjMuMA0KYWN0aXZlX2RlZnJhZ19ydW5uaW5nOjANCmxhenlmcmVlX3BlbmRpbmdfb2JqZWN0czowDQpsYXp5ZnJlZWRfb2JqZWN0czowDQoNCiMgUGVyc2lzdGVuY2UNCmxvYWRpbmc6MA0KYXN5bmNfbG9hZGluZzowDQpjdXJyZW50X2Nvd19wZWFrOjANCmN1cnJlbnRfY293X3NpemU6MA0KY3VycmVudF9jb3dfc2l6ZV9hZ2U6MA0KY3VycmVudF9mb3JrX3BlcmM6MC4wMA0KY3VycmVudF9zYXZlX2tleXNfcHJvY2Vzc2VkOjANCmN1cnJlbnRfc2F2ZV9rZXlzX3RvdGFsOjANCnJkYl9jaGFuZ2VzX3NpbmNlX2xhc3Rfc2F2ZToyMw0KcmRiX2Jnc2F2ZV9pbl9wcm9ncmVzczowDQpyZGJfbGFzdF9zYXZlX3RpbWU6MTcxNTY3MjAyOA0KcmRiX2xhc3RfYmdzYXZlX3N0YXR1czpvaw0KcmRiX2xhc3RfYmdzYXZlX3RpbWVfc2VjOi0xDQpyZGJfY3VycmVudF9iZ3NhdmVfdGltZV9zZWM6LTENCnJkYl9zYXZlczowDQpyZGJfbGFzdF9jb3dfc2l6ZTowDQpyZGJfbGFzdF9sb2FkX2tleXNfZXhwaXJlZDoyDQpyZGJfbGFzdF9sb2FkX2tleXNfbG9hZGVkOjgNCmFvZl9lbmFibGVkOjANCmFvZl9yZXdyaXRlX2luX3Byb2dyZXNzOjANCmFvZl9yZXdyaXRlX3NjaGVkdWxlZDowDQphb2ZfbGFzdF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfY3VycmVudF9yZXdyaXRlX3RpbWVfc2VjOi0xDQphb2ZfbGFzdF9iZ3Jld3JpdGVfc3RhdHVzOm9rDQphb2ZfcmV3cml0ZXM6MA0KYW9mX3Jld3JpdGVzX2NvbnNlY3V0aXZlX2ZhaWx1cmVzOjANCmFvZl9sYXN0X3dyaXRlX3N0YXR1czpvaw0KYW9mX2xhc3RfY293X3NpemU6MA0KbW9kdWxlX2ZvcmtfaW5fcHJvZ3Jlc3M6MA0KbW9kdWxlX2ZvcmtfbGFzdF9jb3dfc2l6ZTowDQoNCiMgU3RhdHMNCnRvdGFsX2Nvbm5lY3Rpb25zX3JlY2VpdmVkOjgNCnRvdGFsX2NvbW1hbmRzX3Byb2Nlc3NlZDo5NA0KaW5zdGFudGFuZW91c19vcHNfcGVyX3NlYzo1DQp0b3RhbF9uZXRfaW5wdXRfYnl0ZXM6MzE5ODANCnRvdGFsX25ldF9vdXRwdXRfYnl0ZXM6MTc1MTUNCnRvdGFsX25ldF9yZXBsX2lucHV0X2J5dGVzOjANCnRvdGFsX25ldF9yZXBsX291dHB1dF9ieXRlczowDQppbnN0YW50YW5lb3VzX2lucHV0X2ticHM6MC41Mw0KaW5zdGFudGFuZW91c19vdXRwdXRfa2JwczowLjA3DQppbnN0YW50YW5lb3VzX2lucHV0X3JlcGxfa2JwczowLjAwDQppbnN0YW50YW5lb3VzX291dHB1dF9yZXBsX2ticHM6MC4wMA0KcmVqZWN0ZWRfY29ubmVjdGlvbnM6MA0Kc3luY19mdWxsOjANCnN5bmNfcGFydGlhbF9vazowDQpzeW5jX3BhcnRpYWxfZXJyOjANCmV4cGlyZWRfa2V5czowDQpleHBpcmVkX3N0YWxlX3BlcmM6MC4wMA0KZXhwaXJlZF90aW1lX2NhcF9yZWFjaGVkX2NvdW50OjANCmV4cGlyZV9jeWNsZV9jcHVfbWlsbGlzZWNvbmRzOjANCmV2aWN0ZWRfa2V5czowDQpldmljdGVkX2NsaWVudHM6MA0KdG90YWxfZXZpY3Rpb25fZXhjZWVkZWRfdGltZTowDQpjdXJyZW50X2V2aWN0aW9uX2V4Y2VlZGVkX3RpbWU6MA0Ka2V5c3BhY2VfaGl0czoxNA0Ka2V5c3BhY2VfbWlzc2VzOjE1DQpwdWJzdWJfY2hhbm5lbHM6Mg0KcHVic3ViX3BhdHRlcm5zOjANCnB1YnN1YnNoYXJkX2NoYW5uZWxzOjANCmxhdGVzdF9mb3JrX3VzZWM6MA0KdG90YWxfZm9ya3M6MA0KbWlncmF0ZV9jYWNoZWRfc29ja2V0czowDQpzbGF2ZV9leHBpcmVzX3RyYWNrZWRfa2V5czowDQphY3RpdmVfZGVmcmFnX2hpdHM6MA0KYWN0aXZlX2RlZnJhZ19taXNzZXM6MA0KYWN0aXZlX2RlZnJhZ19rZXlfaGl0czowDQphY3RpdmVfZGVmcmFnX2tleV9taXNzZXM6MA0KdG90YWxfYWN0aXZlX2RlZnJhZ190aW1lOjANCmN1cnJlbnRfYWN0aXZlX2RlZnJhZ190aW1lOjANCnRyYWNraW5nX3RvdGFsX2tleXM6MA0KdHJhY2tpbmdfdG90YWxfaXRlbXM6MA0KdHJhY2tpbmdfdG90YWxfcHJlZml4ZXM6MA0KdW5leHBlY3RlZF9lcnJvcl9yZXBsaWVzOjANCnRvdGFsX2Vycm9yX3JlcGxpZXM6Nw0KZHVtcF9wYXlsb2FkX3Nhbml0aXphdGlvbnM6MA0KdG90YWxfcmVhZHNfcHJvY2Vzc2VkOjQwDQp0b3RhbF93cml0ZXNfcHJvY2Vzc2VkOjQyDQppb190aHJlYWRlZF9yZWFkc19wcm9jZXNzZWQ6MA0KaW9fdGhyZWFkZWRfd3JpdGVzX3Byb2Nlc3NlZDowDQpyZXBseV9idWZmZXJfc2hyaW5rczo3DQpyZXBseV9idWZmZXJfZXhwYW5kczowDQpldmVudGxvb3BfY3ljbGVzOjE5Nw0KZXZlbnRsb29wX2R1cmF0aW9uX3N1bToxOTA2Mw0KZXZlbnRsb29wX2R1cmF0aW9uX2NtZF9zdW06MjAxOA0KaW5zdGFudGFuZW91c19ldmVudGxvb3BfY3ljbGVzX3Blcl9zZWM6MTENCmluc3RhbnRhbmVvdXNfZXZlbnRsb29wX2R1cmF0aW9uX3VzZWM6MTA5DQphY2xfYWNjZXNzX2RlbmllZF9hdXRoOjANCmFjbF9hY2Nlc3NfZGVuaWVkX2NtZDowDQphY2xfYWNjZXNzX2RlbmllZF9rZXk6MA0KYWNsX2FjY2Vzc19kZW5pZWRfY2hhbm5lbDowDQoNCiMgUmVwbGljYXRpb24NCnJvbGU6bWFzdGVyDQpjb25uZWN0ZWRfc2xhdmVzOjANCm1hc3Rlcl9mYWlsb3Zlcl9zdGF0ZTpuby1mYWlsb3Zlcg0KbWFzdGVyX3JlcGxpZDplN2JiNGJhNTVlZTI2YzE4OTgwOGY5ZjhiM2JkNDY5MmVhZTgyM2MyDQptYXN0ZXJfcmVwbGlkMjowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwDQptYXN0ZXJfcmVwbF9vZmZzZXQ6MTI2DQpzZWNvbmRfcmVwbF9vZmZzZXQ6LTENCnJlcGxfYmFja2xvZ19hY3RpdmU6MA0KcmVwbF9iYWNrbG9nX3NpemU6MTA0ODU3Ng0KcmVwbF9iYWNrbG9nX2ZpcnN0X2J5dGVfb2Zmc2V0OjANCnJlcGxfYmFja2xvZ19oaXN0bGVuOjANCg0KIyBDUFUNCnVzZWRfY3B1X3N5czowLjA0MzUxNQ0KdXNlZF9jcHVfdXNlcjowLjAxMzA1NA0KdXNlZF9jcHVfc3lzX2NoaWxkcmVuOjAuMDAwMDAwDQp1c2VkX2NwdV91c2VyX2NoaWxkcmVuOjAuMDAyNjUyDQp1c2VkX2NwdV9zeXNfbWFpbl90aHJlYWQ6MC4wMzkyNzkNCnVzZWRfY3B1X3VzZXJfbWFpbl90aHJlYWQ6MC4wMTMwOTMNCg0KIyBNb2R1bGVzDQoNCiMgRXJyb3JzdGF0cw0KZXJyb3JzdGF0X05PU0NSSVBUOmNvdW50PTcNCg0KIyBDbHVzdGVyDQpjbHVzdGVyX2VuYWJsZWQ6MA0KDQojIEtleXNwYWNlDQpkYjA6a2V5cz0xMSxleHBpcmVzPTIsYXZnX3R0bD0yMDk5OA0KDQokMQ0KMQ0K + reqtimestampmock: 2024-05-14T13:04:03.421743038+05:30 + restimestampmock: 2024-05-14T13:04:03.425873+05:30 +--- +version: api.keploy.io/v1beta1 +kind: Generic +name: mock-77 +spec: + metadata: + type: config + genericrequests: + - origin: client + message: + - type: binary + data: KjEyDQokNw0KZXZhbHNoYQ0KJDQwDQo4YjkxMmNkYzViNGMyMDEwOGVmNzNkOTUyNDY0ZmJhM2E3NDcwZDdiDQokMQ0KNg0KJDI0DQpidWxsOnNjaGVkdWxlSm9iOmRlbGF5ZWQNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjphY3RpdmUNCiQyMQ0KYnVsbDpzY2hlZHVsZUpvYjp3YWl0DQokMjUNCmJ1bGw6c2NoZWR1bGVKb2I6cHJpb3JpdHkNCiQyMw0KYnVsbDpzY2hlZHVsZUpvYjpwYXVzZWQNCiQyOA0KYnVsbDpzY2hlZHVsZUpvYjptZXRhLXBhdXNlZA0KJDE3DQpidWxsOnNjaGVkdWxlSm9iOg0KJDEzDQoxNzE1NjcyMDc2ODQ4DQokMzYNCmY5NjlmZWQ3LWE5ZWUtNDVjNC05MWZiLTAwOTAxNmU1YmRjMg0K + genericresponses: + - origin: server + message: + - type: binary + data: JC0xDQo= + reqtimestampmock: 2024-05-14T13:04:36.849476429+05:30 + restimestampmock: 2024-05-14T13:04:36.849489054+05:30 diff --git a/keploy/test-set-2/tests/aggregate-order-amount-test.yaml b/keploy/test-set-2/tests/aggregate-order-amount-test.yaml new file mode 100755 index 0000000..d18f348 --- /dev/null +++ b/keploy/test-set-2/tests/aggregate-order-amount-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: aggregate-order-amount-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/aggregate/order-amount + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: aggregate-order-amount-test + Postman-Token: 7a11718d-8130-4df2-aab7-f9fa73a8daa2 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:03.507615257+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:03 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.088ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:05.56695173+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672045 +curl: | + curl --request GET \ + --url http://localhost:9000/aggregate/order-amount \ + --header 'Keploy-Test-Name: aggregate-order-amount-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 7a11718d-8130-4df2-aab7-f9fa73a8daa2' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ diff --git a/keploy/test-set-2/tests/assign-role-test.yaml b/keploy/test-set-2/tests/assign-role-test.yaml new file mode 100755 index 0000000..a30e939 --- /dev/null +++ b/keploy/test-set-2/tests/assign-role-test.yaml @@ -0,0 +1,84 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: assign-role-test +spec: + metadata: {} + req: + method: PUT + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/assign-roles + header: + Accept: '*/*' + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "118" + Content-Type: application/json + Host: localhost:9000 + Keploy-Test-Name: assign-role-test + Postman-Token: f3366d2f-8272-418c-ac12-e7d56bfb5f7d + User-Agent: PostmanRuntime/7.37.3 + body: |- + { + "authId": "sunt", + "role": [ + "ea magna voluptate mollit nostrud", + "exercitation anim qui consequat" + ] + } + timestamp: 2024-05-14T13:04:03.487410149+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:03 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 2.504ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:05.566862564+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672045 +curl: |- + curl --request PUT \ + --url http://localhost:9000/assign-roles \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --header 'Postman-Token: f3366d2f-8272-418c-ac12-e7d56bfb5f7d' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Host: localhost:9000' \ + --header 'Connection: keep-alive' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Keploy-Test-Name: assign-role-test' \ + --data '{ + "authId": "sunt", + "role": [ + "ea magna voluptate mollit nostrud", + "exercitation anim qui consequat" + ] + }' diff --git a/keploy/test-set-1/tests/test-8.yaml b/keploy/test-set-2/tests/create-role-test.yaml similarity index 62% rename from keploy/test-set-1/tests/test-8.yaml rename to keploy/test-set-2/tests/create-role-test.yaml index b336cc3..68ec394 100755 --- a/keploy/test-set-1/tests/test-8.yaml +++ b/keploy/test-set-2/tests/create-role-test.yaml @@ -1,44 +1,42 @@ version: api.keploy.io/v1beta1 kind: Http -name: test-8 +name: create-role-test spec: metadata: {} req: method: POST proto_major: 1 proto_minor: 1 - url: http://localhost:9000/users + url: http://localhost:9000/roles header: - Accept: application/json + Accept: '*/*' Accept-Encoding: gzip, deflate, br Connection: keep-alive - Content-Length: "137" + Content-Length: "58" Content-Type: application/json Host: localhost:9000 - Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5 + Keploy-Test-Name: create-role-test + Postman-Token: e7a4697c-5bbe-4e83-9865-bb884bf28673 User-Agent: PostmanRuntime/7.37.3 body: |- { - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" + "name": "adipisicing", + "description": "nostrud ea" } - timestamp: 2024-04-24T16:04:10.035935868+05:30 + timestamp: 2024-05-14T13:04:03.455470022+05:30 resp: status_code: 200 header: Access-Control-Allow-Origin: '*' Connection: keep-alive - Content-Length: "134" + Content-Length: "184" Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' Content-Type: application/json; charset=utf-8 Cross-Origin-Embedder-Policy: require-corp Cross-Origin-Opener-Policy: same-origin Cross-Origin-Resource-Policy: same-origin - Date: Wed, 24 Apr 2024 10:34:15 GMT - Etag: W/"86-IKgNE0sIenPFoqqvpV6B98NS8kI" + Date: Tue, 14 May 2024 07:34:03 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" Expect-Ct: max-age=0 Keep-Alive: timeout=5 Origin-Agent-Cluster: ?1 @@ -49,36 +47,32 @@ spec: X-Download-Options: noopen X-Frame-Options: SAMEORIGIN X-Permitted-Cross-Domain-Policies: none - X-Response-Time: 5482.601ms + X-Response-Time: 1.964ms X-Xss-Protection: "0" - body: '{"data":{"firstName":"himanshu","lastName":"raj","email":"3@gmail.com","role":"SUPER_ADMIN","_id":"6628e027b16d7879ac569043","__v":0}}' + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' status_message: OK proto_major: 0 proto_minor: 0 - timestamp: 2024-04-24T16:04:17.542766152+05:30 + timestamp: 2024-05-14T13:04:05.466285958+05:30 objects: [] assertions: noise: - body.data.email: [] + body.errors.status: [] header.Date: [] header.X-Response-Time: [] - header.Etag: [] - body.data._id: [] - created: 1713954857 + created: 1715672045 curl: |- curl --request POST \ - --url http://localhost:9000/users \ + --url http://localhost:9000/roles \ --header 'Accept-Encoding: gzip, deflate, br' \ - --header 'Connection: keep-alive' \ - --header 'Accept: application/json' \ - --header 'Content-Type: application/json' \ --header 'User-Agent: PostmanRuntime/7.37.3' \ - --header 'Postman-Token: b19b9c61-2681-444d-be6b-cdd028f24fa5' \ + --header 'Content-Type: application/json' \ --header 'Host: localhost:9000' \ + --header 'Connection: keep-alive' \ + --header 'Accept: */*' \ + --header 'Postman-Token: e7a4697c-5bbe-4e83-9865-bb884bf28673' \ + --header 'Keploy-Test-Name: create-role-test' \ --data '{ - "firstName":"himanshu", - "lastName":"raj", - "email":"3@gmail.com", - "password":"Raj@123456789", - "role":"SUPER_ADMIN" + "name": "adipisicing", + "description": "nostrud ea" }' diff --git a/keploy/test-set-2/tests/create-store-product-test.yaml b/keploy/test-set-2/tests/create-store-product-test.yaml new file mode 100755 index 0000000..7de3cbe --- /dev/null +++ b/keploy/test-set-2/tests/create-store-product-test.yaml @@ -0,0 +1,68 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: create-store-product-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/store-products + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: create-store-product-test + Postman-Token: c5b8fa81-7598-4a4b-a5a9-7e14eb0c557a + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.600687265+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.415ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.647431789+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request POST \ + --url http://localhost:9000/store-products \ + --header 'Postman-Token: c5b8fa81-7598-4a4b-a5a9-7e14eb0c557a' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: create-store-product-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ diff --git a/keploy/test-set-2/tests/create-store-test.yaml b/keploy/test-set-2/tests/create-store-test.yaml new file mode 100755 index 0000000..2bc50ec --- /dev/null +++ b/keploy/test-set-2/tests/create-store-test.yaml @@ -0,0 +1,68 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: create-store-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/stores + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: create-store-test + Postman-Token: 6f9679c4-9092-45a7-9735-845d9d0f67b1 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.665727779+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.414ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.748245175+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request POST \ + --url http://localhost:9000/stores \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: create-store-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 6f9679c4-9092-45a7-9735-845d9d0f67b1' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/create-supplier-product-test.yaml b/keploy/test-set-2/tests/create-supplier-product-test.yaml new file mode 100755 index 0000000..ca3e7dc --- /dev/null +++ b/keploy/test-set-2/tests/create-supplier-product-test.yaml @@ -0,0 +1,68 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: create-supplier-product-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/supplier-products + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: create-supplier-product-test + Postman-Token: e0f4e4e2-6c4a-4a3a-93e4-6c4583578972 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.736814948+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.633ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.748263383+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request POST \ + --url http://localhost:9000/supplier-products \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: create-supplier-product-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: e0f4e4e2-6c4a-4a3a-93e4-6c4583578972' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/create-supplier-test.yaml b/keploy/test-set-2/tests/create-supplier-test.yaml new file mode 100755 index 0000000..90df0dd --- /dev/null +++ b/keploy/test-set-2/tests/create-supplier-test.yaml @@ -0,0 +1,68 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: create-supplier-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/suppliers + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: create-supplier-test + Postman-Token: 595c0d72-14fe-4cad-aad2-971d38840e9c + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.797231711+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.925ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.851057585+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request POST \ + --url http://localhost:9000/suppliers \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: create-supplier-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 595c0d72-14fe-4cad-aad2-971d38840e9c' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/create-unsharded-order-test.yaml b/keploy/test-set-2/tests/create-unsharded-order-test.yaml new file mode 100755 index 0000000..1ada816 --- /dev/null +++ b/keploy/test-set-2/tests/create-unsharded-order-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: create-unsharded-order-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-orders + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: create-unsharded-order-test + Postman-Token: 9add7564-f14f-4cae-81ec-ff06e6b9c4c1 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.858611257+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "227" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"e3-xW7OfUpkDz9/WPIA2DIbcSD0P44" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 3.041ms + X-Xss-Protection: "0" + body: '{"error":{"totalPrice":{"name":"ValidatorError","message":"Path `totalPrice` is required.","properties":{"message":"Path `totalPrice` is required.","type":"required","path":"totalPrice"},"kind":"required","path":"totalPrice"}}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.238745818+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request POST \ + --url http://localhost:9000/unsharded-orders \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: create-unsharded-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 9add7564-f14f-4cae-81ec-ff06e6b9c4c1' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ diff --git a/keploy/test-set-2/tests/create-unsharded-referenced-order-test.yaml b/keploy/test-set-2/tests/create-unsharded-referenced-order-test.yaml new file mode 100755 index 0000000..2ebd0c8 --- /dev/null +++ b/keploy/test-set-2/tests/create-unsharded-referenced-order-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: create-unsharded-referenced-order-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-referenced-orders + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: create-unsharded-referenced-order-test + Postman-Token: 217f85b4-cc94-4243-8ddb-961473db71ee + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.923978476+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "227" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"e3-xW7OfUpkDz9/WPIA2DIbcSD0P44" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.338ms + X-Xss-Protection: "0" + body: '{"error":{"totalPrice":{"name":"ValidatorError","message":"Path `totalPrice` is required.","properties":{"message":"Path `totalPrice` is required.","type":"required","path":"totalPrice"},"kind":"required","path":"totalPrice"}}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.238581319+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request POST \ + --url http://localhost:9000/unsharded-referenced-orders \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: create-unsharded-referenced-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 217f85b4-cc94-4243-8ddb-961473db71ee' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/create-user-test.yaml b/keploy/test-set-2/tests/create-user-test.yaml new file mode 100755 index 0000000..9497434 --- /dev/null +++ b/keploy/test-set-2/tests/create-user-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: create-user-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/users + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: create-user-test + Postman-Token: da3a6166-eacd-4ab3-bf38-5fc975b2b1ef + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.980148942+05:30 + resp: + status_code: 400 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "437" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"1b5-p4dFjVxC/ETIQz0huvLAg3O0m2Q" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 4.310ms + X-Xss-Protection: "0" + body: '{"error":[{"msg":"firstName must be present","param":"firstName","location":"body"},{"msg":"lastName must be present","param":"lastName","location":"body"},{"msg":"email must be present","param":"email","location":"body"},{"msg":"Password should be at least 9 chars long","param":"password","location":"body"},{"msg":"Invalid role name.","param":"role","location":"body"},{"msg":"role must be present","param":"role","location":"body"}]}' + status_message: Bad Request + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.338985637+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request POST \ + --url http://localhost:9000/users \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: create-user-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: da3a6166-eacd-4ab3-bf38-5fc975b2b1ef' \ diff --git a/keploy/test-set-2/tests/cron-job-test.yaml b/keploy/test-set-2/tests/cron-job-test.yaml new file mode 100755 index 0000000..25b3c1c --- /dev/null +++ b/keploy/test-set-2/tests/cron-job-test.yaml @@ -0,0 +1,79 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: cron-job-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/cron-job + header: + Accept: '*/*' + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "107" + Content-Type: application/json + Host: localhost:9000 + Keploy-Test-Name: cron-job-test + Postman-Token: 3238710c-4f12-49a5-9c52-949f9883df39 + User-Agent: PostmanRuntime/7.37.3 + body: |- + { + "scheduleIn": -91292343.18633407, + "message": "Excepteur labor", + "queueName": "aliqua in occaecat" + } + timestamp: 2024-05-14T13:04:03.415054765+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "25" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:03 GMT + Etag: W/"19-n5oYK1810PAFL6cw4OdviLpf8w0" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 12.462ms + X-Xss-Protection: "0" + body: '{"data":{"success":true}}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:03.555102242+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672043 +curl: |- + curl --request POST \ + --url http://localhost:9000/cron-job \ + --header 'Accept: */*' \ + --header 'Keploy-Test-Name: cron-job-test' \ + --header 'Connection: keep-alive' \ + --header 'Content-Type: application/json' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Host: localhost:9000' \ + --header 'Postman-Token: 3238710c-4f12-49a5-9c52-949f9883df39' \ + --data '{ + "scheduleIn": -91292343.18633407, + "message": "Excepteur labor", + "queueName": "aliqua in occaecat" + }' diff --git a/keploy/test-set-2/tests/delete-referenced-order-test.yaml b/keploy/test-set-2/tests/delete-referenced-order-test.yaml new file mode 100755 index 0000000..84116e9 --- /dev/null +++ b/keploy/test-set-2/tests/delete-referenced-order-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: delete-referenced-order-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/referenced-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: delete-referenced-order-test + Postman-Token: 109067ea-275f-4a31-8fa9-24c5174a4e29 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.520891756+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "11" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b-EFAlOux7Kcr/ZEgGkn2r+oFAbu4" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 4.082ms + X-Xss-Protection: "0" + body: '{"data":[]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.138005628+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request DELETE \ + --url http://localhost:9000/referenced-orders/nisi%20et \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 109067ea-275f-4a31-8fa9-24c5174a4e29' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: delete-referenced-order-test' \ diff --git a/keploy/test-set-2/tests/delete-store-product-test.yaml b/keploy/test-set-2/tests/delete-store-product-test.yaml new file mode 100755 index 0000000..2d7a7c9 --- /dev/null +++ b/keploy/test-set-2/tests/delete-store-product-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: delete-store-product-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/store-products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: delete-store-product-test + Postman-Token: 3badd13c-989b-49f1-84ed-47ae095423ee + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.587824836+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.143ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.835210837+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request DELETE \ + --url http://localhost:9000/store-products/nisi%20et \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 3badd13c-989b-49f1-84ed-47ae095423ee' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: delete-store-product-test' \ diff --git a/keploy/test-set-2/tests/delete-supplierproduct-test.yaml b/keploy/test-set-2/tests/delete-supplierproduct-test.yaml new file mode 100755 index 0000000..ab54a50 --- /dev/null +++ b/keploy/test-set-2/tests/delete-supplierproduct-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: delete-supplierproduct-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/supplier-products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: delete-supplierproduct-test + Postman-Token: 4caf7fd3-6309-4466-86bd-262d7081a1bd + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.724944885+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.427ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.936381284+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request DELETE \ + --url http://localhost:9000/supplier-products/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: delete-supplierproduct-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 4caf7fd3-6309-4466-86bd-262d7081a1bd' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/delete-unsharded-order-test.yaml b/keploy/test-set-2/tests/delete-unsharded-order-test.yaml new file mode 100755 index 0000000..e68833a --- /dev/null +++ b/keploy/test-set-2/tests/delete-unsharded-order-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: delete-unsharded-order-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: delete-unsharded-order-test + Postman-Token: 6d9a60c1-f232-40fb-85ec-070e3bbf70df + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.846080241+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.244ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.137895629+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request DELETE \ + --url http://localhost:9000/unsharded-orders/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: delete-unsharded-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 6d9a60c1-f232-40fb-85ec-070e3bbf70df' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/delete-unsharded-referenced-order-test.yaml b/keploy/test-set-2/tests/delete-unsharded-referenced-order-test.yaml new file mode 100755 index 0000000..282439b --- /dev/null +++ b/keploy/test-set-2/tests/delete-unsharded-referenced-order-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: delete-unsharded-referenced-order-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-referenced-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: delete-unsharded-referenced-order-test + Postman-Token: ccc6faff-5cef-4427-a390-f10b0e59bde3 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.910760133+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "11" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b-EFAlOux7Kcr/ZEgGkn2r+oFAbu4" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 2.783ms + X-Xss-Protection: "0" + body: '{"data":[]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.137969503+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request DELETE \ + --url http://localhost:9000/unsharded-referenced-orders/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: delete-unsharded-referenced-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: ccc6faff-5cef-4427-a390-f10b0e59bde3' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/fetch-all-referenced-order-test.yaml b/keploy/test-set-2/tests/fetch-all-referenced-order-test.yaml new file mode 100755 index 0000000..0eaa345 --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-referenced-order-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-referenced-order-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/referenced-orders + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-referenced-order-test + Postman-Token: aa546c84-e2aa-4cc8-b7de-9025724a2671 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.549401923+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.055ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.647414498+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/referenced-orders \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-all-referenced-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: aa546c84-e2aa-4cc8-b7de-9025724a2671' \ diff --git a/keploy/test-set-2/tests/fetch-all-shardedreferencedorderTest-test.yaml b/keploy/test-set-2/tests/fetch-all-shardedreferencedorderTest-test.yaml new file mode 100755 index 0000000..6e05532 --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-shardedreferencedorderTest-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-shardedreferencedorderTest-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-referenced-orders + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-shardedreferencedorderTest-test + Postman-Token: ebefaaf9-a7db-4cc7-b0f4-8c1d7eb0fb94 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.936629365+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.702ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.951307101+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/unsharded-referenced-orders \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-all-shardedreferencedorderTest-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: ebefaaf9-a7db-4cc7-b0f4-8c1d7eb0fb94' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/fetch-all-store-products-tests.yaml b/keploy/test-set-2/tests/fetch-all-store-products-tests.yaml new file mode 100755 index 0000000..c8b133a --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-store-products-tests.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-store-products-tests +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/store-products + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-store-products-tests + Postman-Token: 9f318137-cfcc-4e6b-94ff-e8ab10cc0305 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.611232798+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.699ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.647319665+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/store-products \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-all-store-products-tests' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 9f318137-cfcc-4e6b-94ff-e8ab10cc0305' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/fetch-all-store-test.yaml b/keploy/test-set-2/tests/fetch-all-store-test.yaml new file mode 100755 index 0000000..0f5daec --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-store-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-store-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/stores + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-store-test + Postman-Token: 80a3119d-88e6-4d1c-a201-e192281ae393 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.682348384+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.417ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.748186884+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/stores \ + --header 'Keploy-Test-Name: fetch-all-store-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 80a3119d-88e6-4d1c-a201-e192281ae393' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ diff --git a/keploy/test-set-2/tests/fetch-all-supplier-product-test.yaml b/keploy/test-set-2/tests/fetch-all-supplier-product-test.yaml new file mode 100755 index 0000000..da732b7 --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-supplier-product-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-supplier-product-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/supplier-products + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-supplier-product-test + Postman-Token: a2c64f38-807c-49ea-b34d-50303d14979d + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.749837334+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.571ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.850942002+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/supplier-products \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-all-supplier-product-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: a2c64f38-807c-49ea-b34d-50303d14979d' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ diff --git a/keploy/test-set-2/tests/fetch-all-supplier-test.yaml b/keploy/test-set-2/tests/fetch-all-supplier-test.yaml new file mode 100755 index 0000000..784fafd --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-supplier-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-supplier-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/suppliers + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-supplier-test + Postman-Token: 1dc284af-d409-4c01-8adf-0e0cc4a9414f + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.810869008+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.632ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.851080543+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/suppliers \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-all-supplier-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 1dc284af-d409-4c01-8adf-0e0cc4a9414f' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/fetch-all-unsharder-order-test.yaml b/keploy/test-set-2/tests/fetch-all-unsharder-order-test.yaml new file mode 100755 index 0000000..ad50c9c --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-unsharder-order-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-unsharder-order-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-orders + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-unsharder-order-test + Postman-Token: b3fcb292-5dfc-4131-ba53-b4106a719dd7 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.873137963+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.466ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.951242768+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/unsharded-orders \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-all-unsharder-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: b3fcb292-5dfc-4131-ba53-b4106a719dd7' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ diff --git a/keploy/test-set-2/tests/fetch-all-user-test.yaml b/keploy/test-set-2/tests/fetch-all-user-test.yaml new file mode 100755 index 0000000..f32fa16 --- /dev/null +++ b/keploy/test-set-2/tests/fetch-all-user-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-all-user-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/users + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-all-user-test + Postman-Token: 71f1d699-0c01-4f3a-a2c7-ced8ae32e789 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.994241819+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "649" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"289-1M2b4mMmcoFFylpSpZh3fvTvtCY" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 9.280ms + X-Xss-Protection: "0" + body: '{"data":[{"_id":"662819ea07cf91da3df1df07","firstName":"himanshu","lastName":"raj","email":"admin@gmail.com","role":"SUPER_ADMIN","__v":0},{"_id":"6628dac5a7d5b7f1edeaf328","firstName":"himanshu","lastName":"raj","email":"admin1@gmail.com","authId":"auth0|6628dac59949aabe059dbf5c","role":"SUPER_ADMIN","__v":0},{"_id":"6628dbffa7d5b7f1edeaf32a","firstName":"himanshu","lastName":"raj","email":"2@gmail.com","authId":"auth0|6628dbfee51cf81977d25c43","role":"SUPER_ADMIN","__v":0},{"_id":"6628e027b16d7879ac569043","firstName":"himanshu","lastName":"raj","email":"3@gmail.com","authId":"auth0|6628e027e51cf81977d25eec","role":"SUPER_ADMIN","__v":0}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.440144531+05:30 + objects: [] + assertions: + noise: + body.data.email: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request GET \ + --url http://localhost:9000/users \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-all-user-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 71f1d699-0c01-4f3a-a2c7-ced8ae32e789' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/fetch-one-referenced-order-test.yaml b/keploy/test-set-2/tests/fetch-one-referenced-order-test.yaml new file mode 100755 index 0000000..5c20ee4 --- /dev/null +++ b/keploy/test-set-2/tests/fetch-one-referenced-order-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-one-referenced-order-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/referenced-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-one-referenced-order-test + Postman-Token: 69f0157d-6a4e-4229-9031-e806e3f70622 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.508003119+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.843ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.037162648+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request GET \ + --url http://localhost:9000/referenced-orders/nisi%20et \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-one-referenced-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 69f0157d-6a4e-4229-9031-e806e3f70622' \ diff --git a/keploy/test-set-2/tests/fetch-one-store-product-test.yaml b/keploy/test-set-2/tests/fetch-one-store-product-test.yaml new file mode 100755 index 0000000..c3b5cec --- /dev/null +++ b/keploy/test-set-2/tests/fetch-one-store-product-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-one-store-product-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/store-products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-one-store-product-test + Postman-Token: 51251bdf-deb0-4d4d-b61d-9ccb9a161def + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.575797983+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.400ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.734199971+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request GET \ + --url http://localhost:9000/store-products/nisi%20et \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-one-store-product-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 51251bdf-deb0-4d4d-b61d-9ccb9a161def' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/fetch-one-store-test.yaml b/keploy/test-set-2/tests/fetch-one-store-test.yaml new file mode 100755 index 0000000..c1a430b --- /dev/null +++ b/keploy/test-set-2/tests/fetch-one-store-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-one-store-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/stores/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-one-store-test + Postman-Token: 28251455-002b-485e-8b55-6067e5f3b190 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.640477709+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.001ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.835354711+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request GET \ + --url http://localhost:9000/stores/nisi%20et \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-one-store-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 28251455-002b-485e-8b55-6067e5f3b190' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/fetch-one-supplier-test.yaml b/keploy/test-set-2/tests/fetch-one-supplier-test.yaml new file mode 100755 index 0000000..4ef033a --- /dev/null +++ b/keploy/test-set-2/tests/fetch-one-supplier-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-one-supplier-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/suppliers/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-one-supplier-test + Postman-Token: 8eb5d876-99b5-44fe-938e-070c9ee42a12 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.775514193+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.404ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.936396117+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request GET \ + --url http://localhost:9000/suppliers/nisi%20et \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-one-supplier-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 8eb5d876-99b5-44fe-938e-070c9ee42a12' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ diff --git a/keploy/test-set-2/tests/fetch-one-supplierproduct-test.yaml b/keploy/test-set-2/tests/fetch-one-supplierproduct-test.yaml new file mode 100755 index 0000000..0794c54 --- /dev/null +++ b/keploy/test-set-2/tests/fetch-one-supplierproduct-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-one-supplierproduct-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/supplier-products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-one-supplierproduct-test + Postman-Token: fa736d0c-0efa-42cc-b16d-d6b39e0cd60c + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.712195414+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.440ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.835425127+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request GET \ + --url http://localhost:9000/supplier-products/nisi%20et \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: fa736d0c-0efa-42cc-b16d-d6b39e0cd60c' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-one-supplierproduct-test' \ diff --git a/keploy/test-set-2/tests/fetch-one-unsharded-order-test.yaml b/keploy/test-set-2/tests/fetch-one-unsharded-order-test.yaml new file mode 100755 index 0000000..c33a97a --- /dev/null +++ b/keploy/test-set-2/tests/fetch-one-unsharded-order-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-one-unsharded-order-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-one-unsharded-order-test + Postman-Token: 5a720197-069c-4543-b20e-8242ae1916d5 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.836076912+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.018ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.037187773+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request GET \ + --url http://localhost:9000/unsharded-orders/nisi%20et \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-one-unsharded-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 5a720197-069c-4543-b20e-8242ae1916d5' \ diff --git a/keploy/test-set-2/tests/fetch-one-user-test.yaml b/keploy/test-set-2/tests/fetch-one-user-test.yaml new file mode 100755 index 0000000..5e75093 --- /dev/null +++ b/keploy/test-set-2/tests/fetch-one-user-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetch-one-user-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/users/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetch-one-user-test + Postman-Token: d32bc7ab-37f4-469e-8cd3-8939b4a621ff + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.956915104+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.717ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.137989628+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request GET \ + --url http://localhost:9000/users/nisi%20et \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: fetch-one-user-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: d32bc7ab-37f4-469e-8cd3-8939b4a621ff' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/fetchOne-unsharder-Referencedorder-test.yaml b/keploy/test-set-2/tests/fetchOne-unsharder-Referencedorder-test.yaml new file mode 100755 index 0000000..0eb90e5 --- /dev/null +++ b/keploy/test-set-2/tests/fetchOne-unsharder-Referencedorder-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: fetchOne-unsharder-Referencedorder-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-referenced-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: fetchOne-unsharder-Referencedorder-test + Postman-Token: 3387121d-7b5a-45bf-b1d9-2bb7f6a7a9d9 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.898398241+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.832ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.036969899+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request GET \ + --url http://localhost:9000/unsharded-referenced-orders/nisi%20et \ + --header 'Keploy-Test-Name: fetchOne-unsharder-Referencedorder-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 3387121d-7b5a-45bf-b1d9-2bb7f6a7a9d9' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ diff --git a/keploy/test-set-2/tests/login-user-test.yaml b/keploy/test-set-2/tests/login-user-test.yaml new file mode 100755 index 0000000..c856c8e --- /dev/null +++ b/keploy/test-set-2/tests/login-user-test.yaml @@ -0,0 +1,81 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: login-user-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/login + header: + Accept: '*/*' + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "54" + Content-Type: application/json + Host: localhost:9000 + Keploy-Test-Name: login-user-test + Postman-Token: 5e867848-030f-4ad2-bcc7-26a6e1da1abd + User-Agent: PostmanRuntime/7.37.3 + body: |- + { + "username": "commodo enim", + "password": "esse" + } + timestamp: 2024-05-14T13:04:01.015253092+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "216" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:03 GMT + Etag: W/"d8-3dET7FkXk1RiEYRHSgxAM07KtC8" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Ratelimit-Limit: "10" + Ratelimit-Remaining: "9" + Ratelimit-Reset: "21" + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 2381.447ms + X-Xss-Protection: "0" + body: '{"data":{"error":"unauthorized_client","error_description":"Grant type ''http://auth0.com/oauth/grant-type/password-realm'' not allowed for the client.","error_uri":"https://auth0.com/docs/clients/client-grant-types"}}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:03.45471978+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + header.Ratelimit-Reset: [] + created: 1715672043 +curl: |- + curl --request POST \ + --url http://localhost:9000/login \ + --header 'Connection: keep-alive' \ + --header 'Accept: */*' \ + --header 'Content-Type: application/json' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Host: localhost:9000' \ + --header 'Postman-Token: 5e867848-030f-4ad2-bcc7-26a6e1da1abd' \ + --header 'Keploy-Test-Name: login-user-test' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --data '{ + "username": "commodo enim", + "password": "esse" + }' diff --git a/keploy/test-set-2/tests/order-fetch-all-test.yaml b/keploy/test-set-2/tests/order-fetch-all-test.yaml new file mode 100755 index 0000000..910fff5 --- /dev/null +++ b/keploy/test-set-2/tests/order-fetch-all-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: order-fetch-all-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/orders + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: order-fetch-all-test + Postman-Token: c8160eec-18e3-440a-9462-f2b7e8b7f88e + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.382805423+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "184" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b8-Nra9DUYrCDsBvr9MBzavAdVFbEg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 2.506ms + X-Xss-Protection: "0" + body: '{"errors":[{"name":"UnauthorizedError","message":"No authorization token was found","code":"credentials_required","status":401,"inner":{"message":"No authorization token was found"}}]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:02.446522011+05:30 + objects: [] + assertions: + noise: + body.errors.status: [] + header.Date: [] + header.X-Response-Time: [] + created: 1715672042 +curl: | + curl --request GET \ + --url http://localhost:9000/orders \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: order-fetch-all-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: c8160eec-18e3-440a-9462-f2b7e8b7f88e' \ diff --git a/keploy/test-set-2/tests/order-fetch-one-test.yaml b/keploy/test-set-2/tests/order-fetch-one-test.yaml new file mode 100755 index 0000000..c07d08b --- /dev/null +++ b/keploy/test-set-2/tests/order-fetch-one-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: order-fetch-one-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: order-fetch-one-test + Postman-Token: 9af0f7e4-a26d-4e42-b9e4-bfe25b88640f + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.351256325+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.963ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.531900493+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request GET \ + --url http://localhost:9000/orders/nisi%20et \ + --header 'Keploy-Test-Name: order-fetch-one-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 9af0f7e4-a26d-4e42-b9e4-bfe25b88640f' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ diff --git a/keploy/test-set-2/tests/order-remove-order-test.yaml b/keploy/test-set-2/tests/order-remove-order-test.yaml new file mode 100755 index 0000000..5a9282f --- /dev/null +++ b/keploy/test-set-2/tests/order-remove-order-test.yaml @@ -0,0 +1,75 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: order-remove-order-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: order-remove-order-test + Postman-Token: fb8bcef4-aa38-4e95-9d9b-5a80211b335c + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.367091144+05:30 + resp: + status_code: 404 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "158" + Content-Security-Policy: default-src 'none' + Content-Type: text/html; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.364ms + X-Xss-Protection: "0" + body: | + + + + + Error + + +

Cannot DELETE /orders/nisi%20et
+ + + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.633013274+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request DELETE \ + --url http://localhost:9000/orders/nisi%20et \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: order-remove-order-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: fb8bcef4-aa38-4e95-9d9b-5a80211b335c' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ diff --git a/keploy/test-set-2/tests/order-update-test.yaml b/keploy/test-set-2/tests/order-update-test.yaml new file mode 100755 index 0000000..15beb41 --- /dev/null +++ b/keploy/test-set-2/tests/order-update-test.yaml @@ -0,0 +1,76 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: order-update-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: order-update-test + Postman-Token: 18916bbe-a5a9-4b1b-ba2e-596ce0dc879e + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.329969803+05:30 + resp: + status_code: 404 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "157" + Content-Security-Policy: default-src 'none' + Content-Type: text/html; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 3.872ms + X-Xss-Protection: "0" + body: | + + + + + Error + + +
Cannot PATCH /orders/nisi%20et
+ + + status_message: Not Found + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.431102251+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/orders/nisi%20et \ + --header 'Postman-Token: 18916bbe-a5a9-4b1b-ba2e-596ce0dc879e' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: order-update-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ diff --git a/keploy/test-set-2/tests/product-delete-test.yaml b/keploy/test-set-2/tests/product-delete-test.yaml new file mode 100755 index 0000000..facd957 --- /dev/null +++ b/keploy/test-set-2/tests/product-delete-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: product-delete-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: product-delete-test + Postman-Token: 7842b3ad-a278-46e0-86a8-1a90d1c19523 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.432753819+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.567ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.633116398+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request DELETE \ + --url http://localhost:9000/products/nisi%20et \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: product-delete-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 7842b3ad-a278-46e0-86a8-1a90d1c19523' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ diff --git a/keploy/test-set-2/tests/product-fetch-one-test.yaml b/keploy/test-set-2/tests/product-fetch-one-test.yaml new file mode 100755 index 0000000..7eb48d9 --- /dev/null +++ b/keploy/test-set-2/tests/product-fetch-one-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: product-fetch-one-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: product-fetch-one-test + Postman-Token: ab48f99d-6b8e-4ab9-b080-beb756ac274f + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.418633401+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.090ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.531991659+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request GET \ + --url http://localhost:9000/products/nisi%20et \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: ab48f99d-6b8e-4ab9-b080-beb756ac274f' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: product-fetch-one-test' \ diff --git a/keploy/test-set-2/tests/product-update-product-test.yaml b/keploy/test-set-2/tests/product-update-product-test.yaml new file mode 100755 index 0000000..7a8eada --- /dev/null +++ b/keploy/test-set-2/tests/product-update-product-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: product-update-product-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: product-update-product-test + Postman-Token: 3263a2b1-1e70-47b4-97de-03a54ded53a0 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.404922855+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.689ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.431674121+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/products/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: product-update-product-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 3263a2b1-1e70-47b4-97de-03a54ded53a0' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/products-create-test.yaml b/keploy/test-set-2/tests/products-create-test.yaml new file mode 100755 index 0000000..596f76f --- /dev/null +++ b/keploy/test-set-2/tests/products-create-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: products-create-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/products + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: products-create-test + Postman-Token: d6aeb37c-bbce-4d97-be02-07b3bb4957d6 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.447647814+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "594" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"252-ery4eoOT8y8gWDPzHSs0vU26XQA" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 4.792ms + X-Xss-Protection: "0" + body: '{"error":{"category":{"name":"ValidatorError","message":"Path `category` is required.","properties":{"message":"Path `category` is required.","type":"required","path":"category"},"kind":"required","path":"category"},"price":{"name":"ValidatorError","message":"Path `price` is required.","properties":{"message":"Path `price` is required.","type":"required","path":"price"},"kind":"required","path":"price"},"name":{"name":"ValidatorError","message":"Path `name` is required.","properties":{"message":"Path `name` is required.","type":"required","path":"name"},"kind":"required","path":"name"}}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.73417243+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request POST \ + --url http://localhost:9000/products \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: products-create-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: d6aeb37c-bbce-4d97-be02-07b3bb4957d6' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ diff --git a/keploy/test-set-2/tests/products-fetch-all-test.yaml b/keploy/test-set-2/tests/products-fetch-all-test.yaml new file mode 100755 index 0000000..3c39387 --- /dev/null +++ b/keploy/test-set-2/tests/products-fetch-all-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: products-fetch-all-test +spec: + metadata: {} + req: + method: GET + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/products + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: products-fetch-all-test + Postman-Token: a9ed3e16-b0ad-48f9-af69-15f1c5a4f721 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.466374442+05:30 + resp: + status_code: 200 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "11" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"b-EFAlOux7Kcr/ZEgGkn2r+oFAbu4" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 13.738ms + X-Xss-Protection: "0" + body: '{"data":[]}' + status_message: OK + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.835406918+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request GET \ + --url http://localhost:9000/products \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: products-fetch-all-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: a9ed3e16-b0ad-48f9-af69-15f1c5a4f721' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/reference-order-create-test.yaml b/keploy/test-set-2/tests/reference-order-create-test.yaml new file mode 100755 index 0000000..13b8d0d --- /dev/null +++ b/keploy/test-set-2/tests/reference-order-create-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: reference-order-create-test +spec: + metadata: {} + req: + method: POST + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/referenced-orders + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: reference-order-create-test + Postman-Token: c4550fcd-d17d-4831-ae2e-06b697d7acc2 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.537023656+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "227" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"e3-xW7OfUpkDz9/WPIA2DIbcSD0P44" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 2.488ms + X-Xss-Protection: "0" + body: '{"error":{"totalPrice":{"name":"ValidatorError","message":"Path `totalPrice` is required.","properties":{"message":"Path `totalPrice` is required.","type":"required","path":"totalPrice"},"kind":"required","path":"totalPrice"}}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.238723443+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request POST \ + --url http://localhost:9000/referenced-orders \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: reference-order-create-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: c4550fcd-d17d-4831-ae2e-06b697d7acc2' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/remove-store-test.yaml b/keploy/test-set-2/tests/remove-store-test.yaml new file mode 100755 index 0000000..fe13980 --- /dev/null +++ b/keploy/test-set-2/tests/remove-store-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: remove-store-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/stores/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: remove-store-test + Postman-Token: 0b24799c-bc51-4725-b84e-6c843a4b331d + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.65292535+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.898ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.936358284+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request DELETE \ + --url http://localhost:9000/stores/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: remove-store-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 0b24799c-bc51-4725-b84e-6c843a4b331d' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/remove-supplier-test.yaml b/keploy/test-set-2/tests/remove-supplier-test.yaml new file mode 100755 index 0000000..d7eb1ce --- /dev/null +++ b/keploy/test-set-2/tests/remove-supplier-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: remove-supplier-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/suppliers/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: remove-supplier-test + Postman-Token: dd9ec4b9-389e-48c0-b159-0b06a04c3502 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.78801425+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.476ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.037114898+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request DELETE \ + --url http://localhost:9000/suppliers/nisi%20et \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: remove-supplier-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: dd9ec4b9-389e-48c0-b159-0b06a04c3502' \ diff --git a/keploy/test-set-2/tests/remove-user-test.yaml b/keploy/test-set-2/tests/remove-user-test.yaml new file mode 100755 index 0000000..4b7590a --- /dev/null +++ b/keploy/test-set-2/tests/remove-user-test.yaml @@ -0,0 +1,66 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: remove-user-test +spec: + metadata: {} + req: + method: DELETE + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/users/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Host: localhost:9000 + Keploy-Test-Name: remove-user-test + Postman-Token: 3532063f-974f-4d53-8086-80ce0395430d + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.968861374+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.522ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.238700693+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request DELETE \ + --url http://localhost:9000/users/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: remove-user-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 3532063f-974f-4d53-8086-80ce0395430d' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/update-referencedOrder-test.yaml b/keploy/test-set-2/tests/update-referencedOrder-test.yaml new file mode 100755 index 0000000..a5a5ec9 --- /dev/null +++ b/keploy/test-set-2/tests/update-referencedOrder-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-referencedOrder-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/referenced-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-referencedOrder-test + Postman-Token: 3299a9cb-9d47-4b18-8622-637a34a06ac2 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.494941108+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.007ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.936410701+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/referenced-orders/nisi%20et \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: update-referencedOrder-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 3299a9cb-9d47-4b18-8622-637a34a06ac2' \ + --header 'Host: localhost:9000' \ diff --git a/keploy/test-set-2/tests/update-store-product-test.yaml b/keploy/test-set-2/tests/update-store-product-test.yaml new file mode 100755 index 0000000..fadb647 --- /dev/null +++ b/keploy/test-set-2/tests/update-store-product-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-store-product-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/store-products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-store-product-test + Postman-Token: 7899d35e-26ec-41af-8f89-0dbabfd56389 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.563723422+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.803ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.633138023+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/store-products/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: update-store-product-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 7899d35e-26ec-41af-8f89-0dbabfd56389' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/update-store-test.yaml b/keploy/test-set-2/tests/update-store-test.yaml new file mode 100755 index 0000000..3d15e64 --- /dev/null +++ b/keploy/test-set-2/tests/update-store-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-store-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/stores/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-store-test + Postman-Token: bd9bb552-b646-4fd6-a9b7-e5319d875599 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.625425757+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.805ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.734027431+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/stores/nisi%20et \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: bd9bb552-b646-4fd6-a9b7-e5319d875599' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: update-store-test' \ diff --git a/keploy/test-set-2/tests/update-supplier-test.yaml b/keploy/test-set-2/tests/update-supplier-test.yaml new file mode 100755 index 0000000..d69b5a2 --- /dev/null +++ b/keploy/test-set-2/tests/update-supplier-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-supplier-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/suppliers/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-supplier-test + Postman-Token: dd270997-9d0f-4b36-a229-46993180eb35 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.765148325+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.587ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.835440418+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/suppliers/nisi%20et \ + --header 'Keploy-Test-Name: update-supplier-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: dd270997-9d0f-4b36-a229-46993180eb35' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ diff --git a/keploy/test-set-2/tests/update-supplierproduct-test.yaml b/keploy/test-set-2/tests/update-supplierproduct-test.yaml new file mode 100755 index 0000000..70c893e --- /dev/null +++ b/keploy/test-set-2/tests/update-supplierproduct-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-supplierproduct-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/supplier-products/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-supplierproduct-test + Postman-Token: a5a1af09-2415-4f56-89c3-48f8b47e8234 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.699538483+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 1.155ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.734134014+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/supplier-products/nisi%20et \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: update-supplierproduct-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: a5a1af09-2415-4f56-89c3-48f8b47e8234' \ diff --git a/keploy/test-set-2/tests/update-unshardedReferencedOrder-test.yaml b/keploy/test-set-2/tests/update-unshardedReferencedOrder-test.yaml new file mode 100755 index 0000000..7c869a5 --- /dev/null +++ b/keploy/test-set-2/tests/update-unshardedReferencedOrder-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-unshardedReferencedOrder-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-referenced-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-unshardedReferencedOrder-test + Postman-Token: afd9456f-b1bd-4274-8252-3ab782d68f13 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.885843768+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.382ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.936336076+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/unsharded-referenced-orders/nisi%20et \ + --header 'Postman-Token: afd9456f-b1bd-4274-8252-3ab782d68f13' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: update-unshardedReferencedOrder-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ diff --git a/keploy/test-set-2/tests/update-unshardedorder-test.yaml b/keploy/test-set-2/tests/update-unshardedorder-test.yaml new file mode 100755 index 0000000..4cf4536 --- /dev/null +++ b/keploy/test-set-2/tests/update-unshardedorder-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-unshardedorder-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/unsharded-orders/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-unshardedorder-test + Postman-Token: 9f87d5d7-bb62-4934-ab0d-90df998ddb8f + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.823528772+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.661ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:00.936261577+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672040 +curl: | + curl --request PATCH \ + --url http://localhost:9000/unsharded-orders/nisi%20et \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: update-unshardedorder-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ + --header 'Postman-Token: 9f87d5d7-bb62-4934-ab0d-90df998ddb8f' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ diff --git a/keploy/test-set-2/tests/update-user-test.yaml b/keploy/test-set-2/tests/update-user-test.yaml new file mode 100755 index 0000000..f961b75 --- /dev/null +++ b/keploy/test-set-2/tests/update-user-test.yaml @@ -0,0 +1,67 @@ +version: api.keploy.io/v1beta1 +kind: Http +name: update-user-test +spec: + metadata: {} + req: + method: PATCH + proto_major: 1 + proto_minor: 1 + url: http://localhost:9000/users/nisi%20et + header: + Accept: application/json + Accept-Encoding: gzip, deflate, br + Connection: keep-alive + Content-Length: "0" + Host: localhost:9000 + Keploy-Test-Name: update-user-test + Postman-Token: 07ee0715-8c7f-4834-80a5-c6db1f46cad4 + User-Agent: PostmanRuntime/7.37.3 + body: "" + timestamp: 2024-05-14T13:04:00.947570644+05:30 + resp: + status_code: 500 + header: + Access-Control-Allow-Origin: '*' + Connection: keep-alive + Content-Length: "40" + Content-Security-Policy: 'default-src ''self'';base-uri ''self'';block-all-mixed-content;font-src ''self'' https: data:;form-action ''self'';frame-ancestors ''self'';img-src ''self'' data:;object-src ''none'';script-src ''self'';script-src-attr ''none'';style-src ''self'' https: ''unsafe-inline'';upgrade-insecure-requests' + Content-Type: application/json; charset=utf-8 + Cross-Origin-Embedder-Policy: require-corp + Cross-Origin-Opener-Policy: same-origin + Cross-Origin-Resource-Policy: same-origin + Date: Tue, 14 May 2024 07:34:00 GMT + Etag: W/"28-u8SwiB6Bfmf65yEZGm9FPE8VFqg" + Expect-Ct: max-age=0 + Keep-Alive: timeout=5 + Origin-Agent-Cluster: ?1 + Referrer-Policy: no-referrer + Strict-Transport-Security: max-age=15552000; includeSubDomains + X-Content-Type-Options: nosniff + X-Dns-Prefetch-Control: "off" + X-Download-Options: noopen + X-Frame-Options: SAMEORIGIN + X-Permitted-Cross-Domain-Policies: none + X-Response-Time: 0.609ms + X-Xss-Protection: "0" + body: '{"error":{"message":"Invalid ObjectId"}}' + status_message: Internal Server Error + proto_major: 0 + proto_minor: 0 + timestamp: 2024-05-14T13:04:01.037145398+05:30 + objects: [] + assertions: + noise: + header.Date: [] + header.X-Response-Time: [] + created: 1715672041 +curl: | + curl --request PATCH \ + --url http://localhost:9000/users/nisi%20et \ + --header 'Postman-Token: 07ee0715-8c7f-4834-80a5-c6db1f46cad4' \ + --header 'Host: localhost:9000' \ + --header 'Accept-Encoding: gzip, deflate, br' \ + --header 'Connection: keep-alive' \ + --header 'Accept: application/json' \ + --header 'Keploy-Test-Name: update-user-test' \ + --header 'User-Agent: PostmanRuntime/7.37.3' \ diff --git a/package.json b/package.json index b1af565..52b4d09 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "author": "Wednesday Solutions", "license": "MIT", "engines": { - "node": "14.17.x" + "node": "16.20.x" }, "bugs": { "url": "https://github.com/wednesday-solutions/node-mongo-express/issues" diff --git a/postman/Node-Mongo-Collection.postman_collection.json b/postman/Node-Mongo-Collection.postman_collection.json new file mode 100644 index 0000000..9ca5423 --- /dev/null +++ b/postman/Node-Mongo-Collection.postman_collection.json @@ -0,0 +1,4739 @@ +{ + "info": { + "_postman_id": "b30332f1-615b-434a-b8a3-5bd6322f01c7", + "name": "Node Mongo Collection", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", + "_exporter_id": "33215941" + }, + "item": [ + { + "name": "orders", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update order", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "order-update-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to update" + } + ] + } + }, + "response": [ + { + "name": "update order is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -15039628.571746632,\n \"purchasedProducts\": {\n \"name\": \"ipsum\",\n \"price\": -54595385.77387186,\n \"category\": \"consectetur\",\n \"quantityAverage\": -64493056.701585114,\n \"schema\": 1198860.1086406112,\n \"quantity\": -6448351.923522726,\n \"_id\": \"ad\"\n },\n \"createdAt\": \"2007-05-29T18:22:04.639Z\",\n \"_id\": \"pariatur\"\n }\n}" + }, + { + "name": "update order is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update order\"\n}" + } + ] + }, + { + "name": "fetchone order", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "order-fetch-one-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone order is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -15039628.571746632,\n \"purchasedProducts\": {\n \"name\": \"ipsum\",\n \"price\": -54595385.77387186,\n \"category\": \"consectetur\",\n \"quantityAverage\": -64493056.701585114,\n \"schema\": 1198860.1086406112,\n \"quantity\": -6448351.923522726,\n \"_id\": \"ad\"\n },\n \"createdAt\": \"2007-05-29T18:22:04.639Z\",\n \"_id\": \"pariatur\"\n }\n}" + }, + { + "name": "fetchone order is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone order\"\n}" + } + ] + }, + { + "name": "remove order", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "order-remove-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to remove" + } + ] + } + }, + "response": [ + { + "name": "remove order is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove order is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of order to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove order\"\n}" + } + ] + } + ] + }, + { + "name": "fetchall orders", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "order-fetch-all-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/orders", + "host": ["{{baseUrl}}"], + "path": ["orders"] + } + }, + "response": [ + { + "name": "fetchall orders is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders", + "host": ["{{baseUrl}}"], + "path": ["orders"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"totalPrice\": 46099648.79924768,\n \"purchasedProducts\": {\n \"name\": \"aliquip id\",\n \"price\": 22435588.69310829,\n \"category\": \"Excepteur est tempor ut\",\n \"quantityAverage\": -44823056.72563962,\n \"schema\": 82994523.44248596,\n \"quantity\": 85948903.18526205,\n \"_id\": \"fugiat la\"\n },\n \"createdAt\": \"1953-01-11T08:47:59.606Z\",\n \"_id\": \"Excepteur consequat incididunt\"\n },\n {\n \"totalPrice\": 72769465.27888972,\n \"purchasedProducts\": {\n \"name\": \"culpa laboris ex\",\n \"price\": -39981432.14027778,\n \"category\": \"amet\",\n \"quantityAverage\": 92034938.17659268,\n \"schema\": -20579163.20238915,\n \"quantity\": 94748677.23829621,\n \"_id\": \"mollit Duis Excepteur\"\n },\n \"createdAt\": \"1946-02-25T09:53:32.622Z\",\n \"_id\": \"cillum et amet eiusmod est\"\n }\n ]\n}" + }, + { + "name": "fetchall orders is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/orders", + "host": ["{{baseUrl}}"], + "path": ["orders"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall orders\"\n}" + } + ] + } + ] + }, + { + "name": "products", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update product", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "product-update-product-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "query": [ + { + "key": "Keploy-Test-Name", + "value": null, + "disabled": true + } + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to update" + } + ] + } + }, + "response": [ + { + "name": "update product is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"nisi ea\",\n \"price\": 4203545.039711803,\n \"category\": \"in commodo dolor exercitation nulla\",\n \"quantityAverage\": -48720200.8526844,\n \"schema\": -57215251.0357888,\n \"quantity\": -57071993.75631089,\n \"_id\": \"consectetur consequat sed\"\n }\n}" + }, + { + "name": "update product is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update product\"\n}" + } + ] + }, + { + "name": "fetchone product", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "product-fetch-one-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone product is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"nisi ea\",\n \"price\": 4203545.039711803,\n \"category\": \"in commodo dolor exercitation nulla\",\n \"quantityAverage\": -48720200.8526844,\n \"schema\": -57215251.0357888,\n \"quantity\": -57071993.75631089,\n \"_id\": \"consectetur consequat sed\"\n }\n}" + }, + { + "name": "fetchone product is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone product\"\n}" + } + ] + }, + { + "name": "remove product", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "product-delete-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to remove" + } + ] + } + }, + "response": [ + { + "name": "remove product is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove product is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/products/:_id", + "host": ["{{baseUrl}}"], + "path": ["products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of product to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove product\"\n}" + } + ] + } + ] + }, + { + "name": "create product", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "products-create-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/products", + "host": ["{{baseUrl}}"], + "path": ["products"] + } + }, + "response": [ + { + "name": "create product is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/products", + "host": ["{{baseUrl}}"], + "path": ["products"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"nisi ea\",\n \"price\": 4203545.039711803,\n \"category\": \"in commodo dolor exercitation nulla\",\n \"quantityAverage\": -48720200.8526844,\n \"schema\": -57215251.0357888,\n \"quantity\": -57071993.75631089,\n \"_id\": \"consectetur consequat sed\"\n }\n}" + }, + { + "name": "create product is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/products", + "host": ["{{baseUrl}}"], + "path": ["products"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create product\"\n}" + } + ] + }, + { + "name": "fetchall products", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "products-fetch-all-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/products", + "host": ["{{baseUrl}}"], + "path": ["products"] + } + }, + "response": [ + { + "name": "fetchall products is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/products", + "host": ["{{baseUrl}}"], + "path": ["products"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"name\": \"do exercitation quis veniam\",\n \"price\": -59373483.534926355,\n \"category\": \"sed magna\",\n \"quantityAverage\": -51648876.60683375,\n \"schema\": -11696758.820808738,\n \"quantity\": 67437664.36496648,\n \"_id\": \"ad Excepteur in\"\n },\n {\n \"name\": \"aliquip\",\n \"price\": -16116858.794767186,\n \"category\": \"ad nisi\",\n \"quantityAverage\": 56132025.27190015,\n \"schema\": -7876966.033295885,\n \"quantity\": -86056569.93878937,\n \"_id\": \"ad pariatur elit est\"\n }\n ]\n}" + }, + { + "name": "fetchall products is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/products", + "host": ["{{baseUrl}}"], + "path": ["products"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall products\"\n}" + } + ] + } + ] + }, + { + "name": "referenced-orders", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update referencedOrder", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-referencedOrder-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to update" + } + ] + } + }, + "response": [ + { + "name": "update referencedOrder is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "update referencedOrder is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update referencedOrder\"\n}" + } + ] + }, + { + "name": "fetchone referencedOrder", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-one-referenced-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone referencedOrder is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "fetchone referencedOrder is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone referencedOrder\"\n}" + } + ] + }, + { + "name": "remove referencedOrder", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "delete-referenced-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to remove" + } + ] + } + }, + "response": [ + { + "name": "remove referencedOrder is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove referencedOrder is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of referencedOrder to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove referencedOrder\"\n}" + } + ] + } + ] + }, + { + "name": "create referencedOrder", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "reference-order-create-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders"] + } + }, + "response": [ + { + "name": "create referencedOrder is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "create referencedOrder is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create referencedOrder\"\n}" + } + ] + }, + { + "name": "fetchall referencedOrders", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-referenced-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders"] + } + }, + "response": [ + { + "name": "fetchall referencedOrders is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"totalPrice\": 1840227.9546334594,\n \"purchasedProducts\": {\n \"name\": \"veniam\",\n \"price\": 32510568.15623769,\n \"category\": \"aute irure minim\",\n \"quantityAverage\": 59571267.850452244,\n \"schema\": -51812265.364443414,\n \"quantity\": -13843564.952437684,\n \"_id\": \"dolore adipisicing sunt\"\n },\n \"_id\": \"sed amet laborum ut\"\n },\n {\n \"totalPrice\": -63540107.403590664,\n \"purchasedProducts\": {\n \"name\": \"occaecat id\",\n \"price\": 64637794.238682926,\n \"category\": \"sunt id eiusmod anim\",\n \"quantityAverage\": 39105681.11720204,\n \"schema\": -84477254.67578611,\n \"quantity\": -26729521.976365596,\n \"_id\": \"adipisicing ni\"\n },\n \"_id\": \"Lorem pariatur voluptate fugiat\"\n }\n ]\n}" + }, + { + "name": "fetchall referencedOrders is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["referenced-orders"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall referencedOrders\"\n}" + } + ] + } + ] + }, + { + "name": "store-products", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update storeProduct", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-store-product-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to update" + } + ] + } + }, + "response": [ + { + "name": "update storeProduct is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"productId\": \"voluptate\",\n \"storeId\": \"ex Duis minim\",\n \"schema\": 36699968.70687094,\n \"store\": {\n \"name\": \"nulla minim nisi et\",\n \"address\": \"sit nostrud\",\n \"schema\": -87468478.1764914,\n \"_id\": \"quis aliquip\"\n },\n \"product\": {\n \"name\": \"in\",\n \"price\": -61467388.05452201,\n \"category\": \"labore in qui eiusmod\",\n \"quantity\": -18802214.490543053,\n \"quantityAverage\": -74545506.49399044,\n \"schema\": -91383620.35302201,\n \"_id\": \"laboris cupidatat Ut ut dolore\"\n },\n \"_id\": \"eu Ut et anim\"\n }\n}" + }, + { + "name": "update storeProduct is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update storeProduct\"\n}" + } + ] + }, + { + "name": "fetchone storeProduct", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-one-store-product-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone storeProduct is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"productId\": \"voluptate\",\n \"storeId\": \"ex Duis minim\",\n \"schema\": 36699968.70687094,\n \"store\": {\n \"name\": \"nulla minim nisi et\",\n \"address\": \"sit nostrud\",\n \"schema\": -87468478.1764914,\n \"_id\": \"quis aliquip\"\n },\n \"product\": {\n \"name\": \"in\",\n \"price\": -61467388.05452201,\n \"category\": \"labore in qui eiusmod\",\n \"quantity\": -18802214.490543053,\n \"quantityAverage\": -74545506.49399044,\n \"schema\": -91383620.35302201,\n \"_id\": \"laboris cupidatat Ut ut dolore\"\n },\n \"_id\": \"eu Ut et anim\"\n }\n}" + }, + { + "name": "fetchone storeProduct is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone storeProduct\"\n}" + } + ] + }, + { + "name": "remove storeProduct", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "delete-store-product-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to remove" + } + ] + } + }, + "response": [ + { + "name": "remove storeProduct is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove storeProduct is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["store-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of storeProduct to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove storeProduct\"\n}" + } + ] + } + ] + }, + { + "name": "create storeProduct", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "create-store-product-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/store-products", + "host": ["{{baseUrl}}"], + "path": ["store-products"] + } + }, + "response": [ + { + "name": "create storeProduct is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products", + "host": ["{{baseUrl}}"], + "path": ["store-products"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"productId\": \"voluptate\",\n \"storeId\": \"ex Duis minim\",\n \"schema\": 36699968.70687094,\n \"store\": {\n \"name\": \"nulla minim nisi et\",\n \"address\": \"sit nostrud\",\n \"schema\": -87468478.1764914,\n \"_id\": \"quis aliquip\"\n },\n \"product\": {\n \"name\": \"in\",\n \"price\": -61467388.05452201,\n \"category\": \"labore in qui eiusmod\",\n \"quantity\": -18802214.490543053,\n \"quantityAverage\": -74545506.49399044,\n \"schema\": -91383620.35302201,\n \"_id\": \"laboris cupidatat Ut ut dolore\"\n },\n \"_id\": \"eu Ut et anim\"\n }\n}" + }, + { + "name": "create storeProduct is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products", + "host": ["{{baseUrl}}"], + "path": ["store-products"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create storeProduct\"\n}" + } + ] + }, + { + "name": "fetchall storeProducts", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-store-products-tests", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/store-products", + "host": ["{{baseUrl}}"], + "path": ["store-products"] + } + }, + "response": [ + { + "name": "fetchall storeProducts is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products", + "host": ["{{baseUrl}}"], + "path": ["store-products"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"productId\": \"Lorem ullamco aliquip ea\",\n \"storeId\": \"ut tempor amet labore pariatur\",\n \"schema\": 78361793.75950855,\n \"store\": {\n \"name\": \"ut est officia occaecat dolor\",\n \"address\": \"dolor\",\n \"schema\": -18786874.955788597,\n \"_id\": \"ut et esse\"\n },\n \"product\": {\n \"name\": \"est dolor\",\n \"price\": -54967385.779050425,\n \"category\": \"labore esse\",\n \"quantity\": 10918910.669427946,\n \"quantityAverage\": 58595634.37355408,\n \"schema\": -12879886.356189951,\n \"_id\": \"ea ali\"\n },\n \"_id\": \"officia adipisicing cupidatat\"\n },\n {\n \"productId\": \"est in Ut\",\n \"storeId\": \"sunt adipisicing irure\",\n \"schema\": -32699622.051657155,\n \"store\": {\n \"name\": \"aliqua anim Lorem\",\n \"address\": \"dolor\",\n \"schema\": -71405877.88560238,\n \"_id\": \"aliquip irure sed anim\"\n },\n \"product\": {\n \"name\": \"Lorem aliqua dolore\",\n \"price\": -25362988.543883696,\n \"category\": \"sunt\",\n \"quantity\": -51395687.105058886,\n \"quantityAverage\": -53182396.91186104,\n \"schema\": 78299638.01926646,\n \"_id\": \"pariatur in et ullamco consectetur\"\n },\n \"_id\": \"occaecat mollit\"\n }\n ]\n}" + }, + { + "name": "fetchall storeProducts is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/store-products", + "host": ["{{baseUrl}}"], + "path": ["store-products"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall storeProducts\"\n}" + } + ] + } + ] + }, + { + "name": "stores", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update store", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-store-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to update" + } + ] + } + }, + "response": [ + { + "name": "update store is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"non commodo fugiat quis\",\n \"address\": \"eu voluptate mollit\",\n \"schema\": -79224536.11307372,\n \"_id\": \"ve\"\n }\n}" + }, + { + "name": "update store is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update store\"\n}" + } + ] + }, + { + "name": "fetchone store", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-one-store-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone store is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"non commodo fugiat quis\",\n \"address\": \"eu voluptate mollit\",\n \"schema\": -79224536.11307372,\n \"_id\": \"ve\"\n }\n}" + }, + { + "name": "fetchone store is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone store\"\n}" + } + ] + }, + { + "name": "remove store", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "remove-store-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to remove" + } + ] + } + }, + "response": [ + { + "name": "remove store is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove store is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores/:_id", + "host": ["{{baseUrl}}"], + "path": ["stores", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of store to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove store\"\n}" + } + ] + } + ] + }, + { + "name": "create store", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "create-store-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/stores", + "host": ["{{baseUrl}}"], + "path": ["stores"] + } + }, + "response": [ + { + "name": "create store is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores", + "host": ["{{baseUrl}}"], + "path": ["stores"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"non commodo fugiat quis\",\n \"address\": \"eu voluptate mollit\",\n \"schema\": -79224536.11307372,\n \"_id\": \"ve\"\n }\n}" + }, + { + "name": "create store is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores", + "host": ["{{baseUrl}}"], + "path": ["stores"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create store\"\n}" + } + ] + }, + { + "name": "fetchall stores", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-store-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/stores", + "host": ["{{baseUrl}}"], + "path": ["stores"] + } + }, + "response": [ + { + "name": "fetchall stores is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores", + "host": ["{{baseUrl}}"], + "path": ["stores"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"name\": \"tempor esse laborum quis\",\n \"address\": \"aute ea consequat\",\n \"schema\": 4230027.790647656,\n \"_id\": \"eiusmod irure\"\n },\n {\n \"name\": \"officia dolore ex Excepteur\",\n \"address\": \"ex dolor esse aliqua\",\n \"schema\": 35152839.87385994,\n \"_id\": \"p\"\n }\n ]\n}" + }, + { + "name": "fetchall stores is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/stores", + "host": ["{{baseUrl}}"], + "path": ["stores"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall stores\"\n}" + } + ] + } + ] + }, + { + "name": "supplier-products", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update supplierProduct", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-supplierproduct-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["supplier-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to update" + } + ] + } + }, + "response": [ + { + "name": "update supplierProduct is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "supplier-products", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"productId\": \"dolore amet occaecat\",\n \"supplierId\": \"sint ullamco ut \",\n \"schema\": -5143576.344262168,\n \"supplier\": {\n \"name\": \"est irure\",\n \"schema\": -41829458.85035556,\n \"_id\": \"est aute officia\"\n },\n \"product\": {\n \"name\": \"eiusmod minim Duis\",\n \"price\": 53406994.02850601,\n \"category\": \"exercitation ea\",\n \"quantity\": -25073746.570297748,\n \"quantityAverage\": 8731607.996356055,\n \"schema\": -6525187.557205036,\n \"_id\": \"Excepteur Ut dolor\"\n },\n \"_id\": \"eiusmod culpa non exercitation\"\n }\n}" + }, + { + "name": "update supplierProduct is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "supplier-products", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update supplierProduct\"\n}" + } + ] + }, + { + "name": "fetchone supplierProduct", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-one-supplierproduct-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["supplier-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone supplierProduct is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "supplier-products", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"productId\": \"dolore amet occaecat\",\n \"supplierId\": \"sint ullamco ut \",\n \"schema\": -5143576.344262168,\n \"supplier\": {\n \"name\": \"est irure\",\n \"schema\": -41829458.85035556,\n \"_id\": \"est aute officia\"\n },\n \"product\": {\n \"name\": \"eiusmod minim Duis\",\n \"price\": 53406994.02850601,\n \"category\": \"exercitation ea\",\n \"quantity\": -25073746.570297748,\n \"quantityAverage\": 8731607.996356055,\n \"schema\": -6525187.557205036,\n \"_id\": \"Excepteur Ut dolor\"\n },\n \"_id\": \"eiusmod culpa non exercitation\"\n }\n}" + }, + { + "name": "fetchone supplierProduct is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "supplier-products", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone supplierProduct\"\n}" + } + ] + }, + { + "name": "remove supplierProduct", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "delete-supplierproduct-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": ["supplier-products", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to remove" + } + ] + } + }, + "response": [ + { + "name": "remove supplierProduct is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "supplier-products", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove supplierProduct is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "supplier-products", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplierProduct to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove supplierProduct\"\n}" + } + ] + } + ] + }, + { + "name": "create supplierProduct", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "create-supplier-product-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/supplier-products", + "host": ["{{baseUrl}}"], + "path": ["supplier-products"] + } + }, + "response": [ + { + "name": "create supplierProduct is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products", + "host": ["{{baseUrl}}"], + "path": ["supplier-products"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"productId\": \"dolore amet occaecat\",\n \"supplierId\": \"sint ullamco ut \",\n \"schema\": -5143576.344262168,\n \"supplier\": {\n \"name\": \"est irure\",\n \"schema\": -41829458.85035556,\n \"_id\": \"est aute officia\"\n },\n \"product\": {\n \"name\": \"eiusmod minim Duis\",\n \"price\": 53406994.02850601,\n \"category\": \"exercitation ea\",\n \"quantity\": -25073746.570297748,\n \"quantityAverage\": 8731607.996356055,\n \"schema\": -6525187.557205036,\n \"_id\": \"Excepteur Ut dolor\"\n },\n \"_id\": \"eiusmod culpa non exercitation\"\n }\n}" + }, + { + "name": "create supplierProduct is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products", + "host": ["{{baseUrl}}"], + "path": ["supplier-products"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create supplierProduct\"\n}" + } + ] + }, + { + "name": "fetchall supplierProducts", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-supplier-product-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/supplier-products", + "host": ["{{baseUrl}}"], + "path": ["supplier-products"] + } + }, + "response": [ + { + "name": "fetchall supplierProducts is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products", + "host": ["{{baseUrl}}"], + "path": ["supplier-products"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"productId\": \"incididunt ex minim proident\",\n \"supplierId\": \"nulla voluptate\",\n \"schema\": -4958689.990153611,\n \"supplier\": {\n \"name\": \"mollit esse Excepteur eiusmod\",\n \"schema\": 90646343.01822469,\n \"_id\": \"deserunt dolore dolore tempor nulla\"\n },\n \"product\": {\n \"name\": \"cupidatat Ut\",\n \"price\": -5726667.6984484345,\n \"category\": \"Ut est do\",\n \"quantity\": -41700057.436727755,\n \"quantityAverage\": 11860315.84279798,\n \"schema\": -82729448.44701388,\n \"_id\": \"cupidatat quis laborum\"\n },\n \"_id\": \"quis pariatur\"\n },\n {\n \"productId\": \"ipsum culpa occaecat mollit\",\n \"supplierId\": \"aute dolor\",\n \"schema\": 32184607.26052785,\n \"supplier\": {\n \"name\": \"laboris ad non cupidatat\",\n \"schema\": -96063655.76062018,\n \"_id\": \"mollit aliqua id ut enim\"\n },\n \"product\": {\n \"name\": \"ea minim ad\",\n \"price\": 48456726.81682828,\n \"category\": \"exercitati\",\n \"quantity\": -58477714.30397946,\n \"quantityAverage\": 43614832.217778236,\n \"schema\": -48205068.884504065,\n \"_id\": \"elit ut\"\n },\n \"_id\": \"anim officia enim\"\n }\n ]\n}" + }, + { + "name": "fetchall supplierProducts is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/supplier-products", + "host": ["{{baseUrl}}"], + "path": ["supplier-products"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall supplierProducts\"\n}" + } + ] + } + ] + }, + { + "name": "suppliers", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update supplier", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-supplier-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to update" + } + ] + } + }, + "response": [ + { + "name": "update supplier is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"pariatur id\",\n \"schema\": -62663557.394474715,\n \"_id\": \"sint incididunt id\"\n }\n}" + }, + { + "name": "update supplier is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update supplier\"\n}" + } + ] + }, + { + "name": "fetchone supplier", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-one-supplier-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone supplier is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"pariatur id\",\n \"schema\": -62663557.394474715,\n \"_id\": \"sint incididunt id\"\n }\n}" + }, + { + "name": "fetchone supplier is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone supplier\"\n}" + } + ] + }, + { + "name": "remove supplier", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "remove-supplier-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to remove" + } + ] + } + }, + "response": [ + { + "name": "remove supplier is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove supplier is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers/:_id", + "host": ["{{baseUrl}}"], + "path": ["suppliers", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of supplier to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove supplier\"\n}" + } + ] + } + ] + }, + { + "name": "create supplier", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "create-supplier-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/suppliers", + "host": ["{{baseUrl}}"], + "path": ["suppliers"] + } + }, + "response": [ + { + "name": "create supplier is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers", + "host": ["{{baseUrl}}"], + "path": ["suppliers"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"name\": \"pariatur id\",\n \"schema\": -62663557.394474715,\n \"_id\": \"sint incididunt id\"\n }\n}" + }, + { + "name": "create supplier is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers", + "host": ["{{baseUrl}}"], + "path": ["suppliers"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create supplier\"\n}" + } + ] + }, + { + "name": "fetchall suppliers", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-supplier-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/suppliers", + "host": ["{{baseUrl}}"], + "path": ["suppliers"] + } + }, + "response": [ + { + "name": "fetchall suppliers is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers", + "host": ["{{baseUrl}}"], + "path": ["suppliers"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"name\": \"ea fugiat cupidatat\",\n \"schema\": 37231333.44150829,\n \"_id\": \"dolore cillum Ut\"\n },\n {\n \"name\": \"pariatur laborum Duis commodo cillum\",\n \"schema\": 98996285.60198429,\n \"_id\": \"ad\"\n }\n ]\n}" + }, + { + "name": "fetchall suppliers is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/suppliers", + "host": ["{{baseUrl}}"], + "path": ["suppliers"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall suppliers\"\n}" + } + ] + } + ] + }, + { + "name": "unsharded-orders", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update unshardedOrder", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-unshardedorder-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to update" + } + ] + } + }, + "response": [ + { + "name": "update unshardedOrder is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "update unshardedOrder is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update unshardedOrder\"\n}" + } + ] + }, + { + "name": "fetchone unshardedOrder", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-one-unsharded-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone unshardedOrder is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "fetchone unshardedOrder is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone unshardedOrder\"\n}" + } + ] + }, + { + "name": "remove unshardedOrder", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "delete-unsharded-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to remove" + } + ] + } + }, + "response": [ + { + "name": "remove unshardedOrder is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove unshardedOrder is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedOrder to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove unshardedOrder\"\n}" + } + ] + } + ] + }, + { + "name": "create unshardedOrder", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "create-unsharded-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders"] + } + }, + "response": [ + { + "name": "create unshardedOrder is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "create unshardedOrder is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create unshardedOrder\"\n}" + } + ] + }, + { + "name": "fetchall unshardedOrders", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-unsharder-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders"] + } + }, + "response": [ + { + "name": "fetchall unshardedOrders is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"totalPrice\": 1840227.9546334594,\n \"purchasedProducts\": {\n \"name\": \"veniam\",\n \"price\": 32510568.15623769,\n \"category\": \"aute irure minim\",\n \"quantityAverage\": 59571267.850452244,\n \"schema\": -51812265.364443414,\n \"quantity\": -13843564.952437684,\n \"_id\": \"dolore adipisicing sunt\"\n },\n \"_id\": \"sed amet laborum ut\"\n },\n {\n \"totalPrice\": -63540107.403590664,\n \"purchasedProducts\": {\n \"name\": \"occaecat id\",\n \"price\": 64637794.238682926,\n \"category\": \"sunt id eiusmod anim\",\n \"quantityAverage\": 39105681.11720204,\n \"schema\": -84477254.67578611,\n \"quantity\": -26729521.976365596,\n \"_id\": \"adipisicing ni\"\n },\n \"_id\": \"Lorem pariatur voluptate fugiat\"\n }\n ]\n}" + }, + { + "name": "fetchall unshardedOrders is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-orders"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall unshardedOrders\"\n}" + } + ] + } + ] + }, + { + "name": "unsharded-referenced-orders", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update unshardedReferencedOrder", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-unshardedReferencedOrder-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to update" + } + ] + } + }, + "response": [ + { + "name": "update unshardedReferencedOrder is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "update unshardedReferencedOrder is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update unshardedReferencedOrder\"\n}" + } + ] + }, + { + "name": "fetchone unshardedReferencedOrder", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetchOne-unsharder-Referencedorder-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone unshardedReferencedOrder is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "fetchone unshardedReferencedOrder is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone unshardedReferencedOrder\"\n}" + } + ] + }, + { + "name": "remove unshardedReferencedOrder", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "delete-unsharded-referenced-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to remove" + } + ] + } + }, + "response": [ + { + "name": "remove unshardedReferencedOrder is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove unshardedReferencedOrder is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders/:_id", + "host": ["{{baseUrl}}"], + "path": [ + "unsharded-referenced-orders", + ":_id" + ], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of unshardedReferencedOrder to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove unshardedReferencedOrder\"\n}" + } + ] + } + ] + }, + { + "name": "create unshardedReferencedOrder", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "create-unsharded-referenced-order-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-referenced-orders"] + } + }, + "response": [ + { + "name": "create unshardedReferencedOrder is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-referenced-orders"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalPrice\": -56076024.47257914,\n \"purchasedProducts\": {\n \"name\": \"occaecat quis\",\n \"price\": -98593338.4237073,\n \"category\": \"consequat Excepteur\",\n \"quantityAverage\": 48745818.17239481,\n \"schema\": -49465490.4828844,\n \"quantity\": -23248509.39962642,\n \"_id\": \"in\"\n },\n \"_id\": \"qui magna\"\n }\n}" + }, + { + "name": "create unshardedReferencedOrder is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-referenced-orders"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create unshardedReferencedOrder\"\n}" + } + ] + }, + { + "name": "fetchall unshardedReferencedOrders", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-shardedreferencedorderTest-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-referenced-orders"] + } + }, + "response": [ + { + "name": "fetchall unshardedReferencedOrders is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-referenced-orders"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"totalPrice\": 1840227.9546334594,\n \"purchasedProducts\": {\n \"name\": \"veniam\",\n \"price\": 32510568.15623769,\n \"category\": \"aute irure minim\",\n \"quantityAverage\": 59571267.850452244,\n \"schema\": -51812265.364443414,\n \"quantity\": -13843564.952437684,\n \"_id\": \"dolore adipisicing sunt\"\n },\n \"_id\": \"sed amet laborum ut\"\n },\n {\n \"totalPrice\": -63540107.403590664,\n \"purchasedProducts\": {\n \"name\": \"occaecat id\",\n \"price\": 64637794.238682926,\n \"category\": \"sunt id eiusmod anim\",\n \"quantityAverage\": 39105681.11720204,\n \"schema\": -84477254.67578611,\n \"quantity\": -26729521.976365596,\n \"_id\": \"adipisicing ni\"\n },\n \"_id\": \"Lorem pariatur voluptate fugiat\"\n }\n ]\n}" + }, + { + "name": "fetchall unshardedReferencedOrders is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/unsharded-referenced-orders", + "host": ["{{baseUrl}}"], + "path": ["unsharded-referenced-orders"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall unshardedReferencedOrders\"\n}" + } + ] + } + ] + }, + { + "name": "users", + "item": [ + { + "name": "{ id}", + "item": [ + { + "name": "update user", + "request": { + "method": "PATCH", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "update-user-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to update" + } + ] + } + }, + "response": [ + { + "name": "update user is success", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to update" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"firstName\": \"eiusmod deserunt\",\n \"lastName\": \"ea labore\",\n \"email\": \"aliqua\",\n \"authId\": \"dolor minim ut irure ex\",\n \"_id\": \"qui in et\"\n }\n}" + }, + { + "name": "update user is failed", + "originalRequest": { + "method": "PATCH", + "header": [], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to update" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to update user\"\n}" + } + ] + }, + { + "name": "fetchone user", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-one-user-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to fetchone" + } + ] + } + }, + "response": [ + { + "name": "fetchone user is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to fetchone" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"firstName\": \"eiusmod deserunt\",\n \"lastName\": \"ea labore\",\n \"email\": \"aliqua\",\n \"authId\": \"dolor minim ut irure ex\",\n \"_id\": \"qui in et\"\n }\n}" + }, + { + "name": "fetchone user is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to fetchone" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchone user\"\n}" + } + ] + }, + { + "name": "remove user", + "request": { + "method": "DELETE", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "remove-user-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to remove" + } + ] + } + }, + "response": [ + { + "name": "remove user is success", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to remove" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"deletedCount\": 1\n }\n}" + }, + { + "name": "remove user is failed", + "originalRequest": { + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/users/:_id", + "host": ["{{baseUrl}}"], + "path": ["users", ":_id"], + "variable": [ + { + "key": "_id", + "value": "nisi et", + "description": "(Required) ID of user to remove" + } + ] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to remove user\"\n}" + } + ] + } + ] + }, + { + "name": "create user", + "request": { + "method": "POST", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "create-user-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/users", + "host": ["{{baseUrl}}"], + "path": ["users"] + } + }, + "response": [ + { + "name": "create user is success", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/users", + "host": ["{{baseUrl}}"], + "path": ["users"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"firstName\": \"eiusmod deserunt\",\n \"lastName\": \"ea labore\",\n \"email\": \"aliqua\",\n \"authId\": \"dolor minim ut irure ex\",\n \"_id\": \"qui in et\"\n }\n}" + }, + { + "name": "create user is failed", + "originalRequest": { + "method": "POST", + "header": [], + "url": { + "raw": "{{baseUrl}}/users", + "host": ["{{baseUrl}}"], + "path": ["users"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to create user\"\n}" + } + ] + }, + { + "name": "fetchall users", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "fetch-all-user-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/users", + "host": ["{{baseUrl}}"], + "path": ["users"] + } + }, + "response": [ + { + "name": "fetchall users is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/users", + "host": ["{{baseUrl}}"], + "path": ["users"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": [\n {\n \"firstName\": \"eu sunt est\",\n \"lastName\": \"in aliqua quis qui cupidatat\",\n \"email\": \"adipisicing do\",\n \"authId\": \"est adipisicing\",\n \"_id\": \"cupidatat dolor nostrud deserunt\"\n },\n {\n \"firstName\": \"dolor velit nulla deserunt\",\n \"lastName\": \"et pariatur\",\n \"email\": \"reprehenderit\",\n \"authId\": \"nisi in nostrud inc\",\n \"_id\": \"proident\"\n }\n ]\n}" + }, + { + "name": "fetchall users is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/users", + "host": ["{{baseUrl}}"], + "path": ["users"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to fetchall users\"\n}" + } + ] + } + ] + }, + { + "name": "login", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "*/*" + }, + { + "key": "Keploy-Test-Name", + "value": "login-user-test", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"username\": \"commodo enim\",\n \"password\": \"esse\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/login", + "host": ["{{baseUrl}}"], + "path": ["login"] + } + }, + "response": [ + { + "name": "login is success", + "originalRequest": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"username\": \"commodo enim\",\n \"password\": \"esse\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/login", + "host": ["{{baseUrl}}"], + "path": ["login"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + }, + { + "name": "login is failed", + "originalRequest": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"username\": \"commodo enim\",\n \"password\": \"esse\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/login", + "host": ["{{baseUrl}}"], + "path": ["login"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + } + ] + }, + { + "name": "cron job", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "*/*" + }, + { + "key": "Keploy-Test-Name", + "value": "cron-job-test", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"scheduleIn\": -91292343.18633407,\n \"message\": \"Excepteur labor\",\n \"queueName\": \"aliqua in occaecat\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/cron-job", + "host": ["{{baseUrl}}"], + "path": ["cron-job"] + } + }, + "response": [ + { + "name": "cron job is success", + "originalRequest": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"scheduleIn\": -91292343.18633407,\n \"message\": \"Excepteur labor\",\n \"queueName\": \"aliqua in occaecat\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/cron-job", + "host": ["{{baseUrl}}"], + "path": ["cron-job"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + }, + { + "name": "cron job is failed", + "originalRequest": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"scheduleIn\": -91292343.18633407,\n \"message\": \"Excepteur labor\",\n \"queueName\": \"aliqua in occaecat\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/cron-job", + "host": ["{{baseUrl}}"], + "path": ["cron-job"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + } + ] + }, + { + "name": "create role", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "*/*" + }, + { + "key": "Keploy-Test-Name", + "value": "create-role-test", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"adipisicing\",\n \"description\": \"nostrud ea\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/roles", + "host": ["{{baseUrl}}"], + "path": ["roles"] + } + }, + "response": [ + { + "name": "create role is success", + "originalRequest": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"adipisicing\",\n \"description\": \"nostrud ea\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/roles", + "host": ["{{baseUrl}}"], + "path": ["roles"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + }, + { + "name": "create role is failed", + "originalRequest": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"adipisicing\",\n \"description\": \"nostrud ea\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/roles", + "host": ["{{baseUrl}}"], + "path": ["roles"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + } + ] + }, + { + "name": "assign roles", + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "*/*" + }, + { + "key": "Keploy-Test-Name", + "value": "assign-role-test", + "type": "text" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"authId\": \"sunt\",\n \"role\": [\n \"ea magna voluptate mollit nostrud\",\n \"exercitation anim qui consequat\"\n ]\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/assign-roles", + "host": ["{{baseUrl}}"], + "path": ["assign-roles"] + } + }, + "response": [ + { + "name": "assign roles is success", + "originalRequest": { + "method": "PUT", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"authId\": \"sunt consequat non\",\n \"role\": [\n \"sit amet occaecat enim qui\",\n \"et culpa dolor sint\"\n ]\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/assign-roles", + "host": ["{{baseUrl}}"], + "path": ["assign-roles"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + }, + { + "name": "assign roles is failed", + "originalRequest": { + "method": "PUT", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"authId\": \"sunt consequat non\",\n \"role\": [\n \"sit amet occaecat enim qui\",\n \"et culpa dolor sint\"\n ]\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{baseUrl}}/assign-roles", + "host": ["{{baseUrl}}"], + "path": ["assign-roles"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Content-Type", + "value": "*/*" + } + ], + "cookie": [], + "body": "" + } + ] + }, + { + "name": "aggregate orderAmount", + "request": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Keploy-Test-Name", + "value": "aggregate-order-amount-test", + "type": "text" + } + ], + "url": { + "raw": "{{baseUrl}}/aggregate/order-amount", + "host": ["{{baseUrl}}"], + "path": ["aggregate", "order-amount"] + } + }, + "response": [ + { + "name": "aggregate orderAmount is success", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/aggregate/order-amount", + "host": ["{{baseUrl}}"], + "path": ["aggregate", "order-amount"] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"data\": {\n \"totalOrderAmount\": 40235898.17682856\n }\n}" + }, + { + "name": "aggregate orderAmount is failed", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/aggregate/order-amount", + "host": ["{{baseUrl}}"], + "path": ["aggregate", "order-amount"] + } + }, + "status": "Bad Request", + "code": 400, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"error\": \"unable to aggregate orderAmount\"\n}" + } + ] + } + ], + "variable": [ + { + "key": "baseUrl", + "value": "/", + "type": "string" + } + ] +}